diff --git a/community_shaders_guide.txt b/guides-stack/community_shaders_guide.txt similarity index 100% rename from community_shaders_guide.txt rename to guides-stack/community_shaders_guide.txt diff --git a/dynasty-mod.md b/guides-stack/dynasty-mod.md similarity index 100% rename from dynasty-mod.md rename to guides-stack/dynasty-mod.md diff --git a/gameplay_dependencies.txt b/guides-stack/gameplay_dependencies.txt similarity index 100% rename from gameplay_dependencies.txt rename to guides-stack/gameplay_dependencies.txt diff --git a/gameplay_stack.txt b/guides-stack/gameplay_stack.txt similarity index 100% rename from gameplay_stack.txt rename to guides-stack/gameplay_stack.txt diff --git a/inference_architecture_plan.txt b/guides-stack/inference_architecture_plan.txt similarity index 100% rename from inference_architecture_plan.txt rename to guides-stack/inference_architecture_plan.txt diff --git a/modlist_minimal.txt b/guides-stack/modlist_minimal.txt similarity index 100% rename from modlist_minimal.txt rename to guides-stack/modlist_minimal.txt diff --git a/nimmersky_body_anim_stack.txt b/guides-stack/nimmersky_body_anim_stack.txt similarity index 100% rename from nimmersky_body_anim_stack.txt rename to guides-stack/nimmersky_body_anim_stack.txt diff --git a/oghma-proxy/pyproject.toml b/oghma-proxy/pyproject.toml index f7bbdad..0243b09 100644 --- a/oghma-proxy/pyproject.toml +++ b/oghma-proxy/pyproject.toml @@ -41,6 +41,7 @@ ingest = [ [project.scripts] oghma-proxy = "oghma_proxy.main:main" oghma-ingest = "oghma_proxy.ingest:main" +oghma-export-packs = "oghma_proxy.export_packs:main" [tool.ruff] line-length = 100 diff --git a/oghma-proxy/src/oghma_proxy/export_packs.py b/oghma-proxy/src/oghma_proxy/export_packs.py new file mode 100644 index 0000000..d642669 --- /dev/null +++ b/oghma-proxy/src/oghma_proxy/export_packs.py @@ -0,0 +1,263 @@ +"""Oghma Pack Exporter — materializes ChromaDB collections into SkyrimNet .sknpack files. + +One pack per source category. Lore + basic entries merge into the same pack and are +distinguished by the `importance` field (lore=0.75, basic=0.40) so the model naturally +prefers the deeper entry when token budget allows. Visual descriptions export to a +separate single pack. + +Produces packs matching SkyrimNet beta format_version=1. +""" + +from __future__ import annotations + +import argparse +import json +import re +import sys +from collections import defaultdict +from datetime import datetime, timezone +from pathlib import Path + +import chromadb +import structlog +from chromadb.config import Settings + +logger = structlog.get_logger() + +PACK_FORMAT_VERSION = 1 +PACK_VERSION = "1.0.0" +PACK_AUTHOR = "nimmerverse/oghma-proxy" + +# importance grading per collection +IMPORTANCE_LORE = 0.75 +IMPORTANCE_BASIC = 0.40 +IMPORTANCE_VISUAL = 0.50 + +# map ChromaDB category → SkyrimNet entry type +TYPE_BY_CATEGORY = { + "spells": "SKILL", +} + + +def category_to_type(category: str) -> str: + if category in TYPE_BY_CATEGORY: + return TYPE_BY_CATEGORY[category] + if category.startswith("locations_"): + return "LOCATION" + return "KNOWLEDGE" + + +def category_to_location(category: str) -> str: + """For locations_whiterun → 'Whiterun'. Else empty.""" + if not category.startswith("locations_"): + return "" + hold = category[len("locations_"):] + if hold == "other": + return "" + return hold.replace("_", " ").title() + + +def category_to_pack_name(category: str) -> str: + """figures_gods → 'Oghma - Figures & Gods'.""" + pretty = { + "figures_gods": "Figures & Gods", + "armor_weapons": "Armor & Weapons", + "groups_lore": "Groups & Books", + } + if category in pretty: + return f"Oghma - {pretty[category]}" + if category.startswith("locations_"): + hold = category[len("locations_"):] + if hold == "other": + return "Oghma - Locations - Other" + return f"Oghma - Locations - {hold.replace('_', ' ').title()}" + return f"Oghma - {category.replace('_', ' ').title()}" + + +def pack_filename(pack_name: str) -> str: + """Filesystem-safe filename matching SkyrimNet export style.""" + safe = re.sub(r"[^\w\-\s]", "", pack_name) + safe = re.sub(r"\s+", "_", safe.strip()) + return f"{safe}.sknpack" + + +def build_entry( + content: str, + topic: str, + category: str, + importance: float, + tags: list[str], +) -> dict: + return { + "always_inject": False, + "condition_expr": "", + "content": content, + "display_name": topic, + "emotion": "", + "importance": importance, + "location": category_to_location(category), + "tags": tags, + "type": category_to_type(category), + } + + +def build_pack(pack_name: str, description: str, entries: list[dict]) -> dict: + return { + "skyrimnet_knowledge_pack": { + "author": PACK_AUTHOR, + "description": description, + "entries": entries, + "entry_count": len(entries), + "exported_at": datetime.now(timezone.utc).strftime("%Y-%m-%dT%H:%M:%SZ"), + "format_version": PACK_FORMAT_VERSION, + "name": pack_name, + "npc_groups": [], + "version": PACK_VERSION, + } + } + + +def fetch_all(collection) -> tuple[list[str], list[dict]]: + """Return (documents, metadatas) for every entry in the collection.""" + result = collection.get(include=["documents", "metadatas"]) + return result["documents"], result["metadatas"] + + +def export_oghma_packs( + chromadb_host: str, + chromadb_port: int, + output_dir: Path, + dry_run: bool = False, +) -> dict: + output_dir.mkdir(parents=True, exist_ok=True) + + client = chromadb.HttpClient( + host=chromadb_host, + port=chromadb_port, + settings=Settings(anonymized_telemetry=False), + ) + + # category → list[entry] — lore + basic merge by category + by_category: dict[str, list[dict]] = defaultdict(list) + + for coll_name, importance in ( + ("oghma_lore", IMPORTANCE_LORE), + ("oghma_basic", IMPORTANCE_BASIC), + ): + collection = client.get_collection(coll_name) + docs, metas = fetch_all(collection) + logger.info("Fetched collection", collection=coll_name, count=len(docs)) + + for doc, meta in zip(docs, metas): + category = meta.get("category", "uncategorized") + topic = meta.get("topic", "") + raw_tags = (meta.get("tags") or "").strip() + tag_list = [t.strip() for t in raw_tags.split(",") if t.strip()] if raw_tags else [] + + by_category[category].append( + build_entry( + content=doc, + topic=topic, + category=category, + importance=importance, + tags=tag_list, + ) + ) + + stats = {"packs": 0, "entries": 0, "files": []} + + for category, entries in sorted(by_category.items()): + pack_name = category_to_pack_name(category) + description = ( + f"Tamrielic lore from CHIM's Oghma Infinium — {category.replace('_', ' ')}. " + f"Merges educated and common-knowledge entries graded by importance." + ) + pack = build_pack(pack_name, description, entries) + fname = pack_filename(pack_name) + path = output_dir / fname + + if not dry_run: + path.write_text(json.dumps(pack, indent=2, ensure_ascii=False)) + stats["packs"] += 1 + stats["entries"] += len(entries) + stats["files"].append(str(path)) + logger.info("Wrote pack", file=fname, entries=len(entries), category=category) + + # Visual descriptions — separate single pack, different source schema + visual = client.get_collection("oghma_visual") + vdocs, vmetas = fetch_all(visual) + logger.info("Fetched collection", collection="oghma_visual", count=len(vdocs)) + + visual_entries = [] + for doc, meta in zip(vdocs, vmetas): + visual_entries.append( + { + "always_inject": False, + "condition_expr": "", + "content": doc, + "display_name": meta.get("name", ""), + "emotion": "", + "importance": IMPORTANCE_VISUAL, + "location": "", + "tags": [], + "type": "KNOWLEDGE", + } + ) + + visual_pack = build_pack( + "Oghma - Visual Descriptions", + "Visual descriptions for NPC perception (Omnisight) from CHIM's Oghma Infinium.", + visual_entries, + ) + vpath = output_dir / "Oghma_-_Visual_Descriptions.sknpack" + if not dry_run: + vpath.write_text(json.dumps(visual_pack, indent=2, ensure_ascii=False)) + stats["packs"] += 1 + stats["entries"] += len(visual_entries) + stats["files"].append(str(vpath)) + logger.info("Wrote pack", file=vpath.name, entries=len(visual_entries), category="visual") + + return stats + + +def main() -> None: + parser = argparse.ArgumentParser( + description="Export ChromaDB Oghma collections into SkyrimNet .sknpack files" + ) + parser.add_argument("--host", default="iris-dev.eachpath.local") + parser.add_argument("--port", type=int, default=35000) + parser.add_argument( + "--output-dir", + default="/home/dafit/nimmerverse/nimmersky/sknpack", + ) + parser.add_argument("--dry-run", action="store_true") + args = parser.parse_args() + + structlog.configure( + processors=[ + structlog.stdlib.add_log_level, + structlog.processors.TimeStamper(fmt="iso"), + structlog.dev.ConsoleRenderer(), + ], + ) + + try: + stats = export_oghma_packs( + chromadb_host=args.host, + chromadb_port=args.port, + output_dir=Path(args.output_dir), + dry_run=args.dry_run, + ) + logger.info( + "Export complete", + packs=stats["packs"], + entries=stats["entries"], + output_dir=args.output_dir, + ) + except Exception as e: + logger.error("Export failed", error=str(e)) + sys.exit(1) + + +if __name__ == "__main__": + main() diff --git a/oghma-proxy/src/oghma_proxy/injector.py b/oghma-proxy/src/oghma_proxy/injector.py index e0093b0..47cad71 100644 --- a/oghma-proxy/src/oghma_proxy/injector.py +++ b/oghma-proxy/src/oghma_proxy/injector.py @@ -113,7 +113,31 @@ Note: Reference this knowledge naturally when relevant to the conversation. Do n position=self.position, ) else: - logger.warning("Could not find injection point", position=self.position) + seen_headers: list[str] = [] + system_msg_count = 0 + system_content_chars = 0 + for msg in modified_messages: + if msg.get("role") == "system": + system_msg_count += 1 + content = msg.get("content", "") + system_content_chars += len(content) + for line in content.splitlines(): + stripped = line.strip() + if stripped.startswith("## "): + seen_headers.append(stripped) + if len(seen_headers) >= 20: + break + if len(seen_headers) >= 20: + break + + logger.warning( + "Could not find injection point", + position=self.position, + npc_name=npc_profile.name, + system_messages=system_msg_count, + system_content_chars=system_content_chars, + seen_headers=seen_headers, + ) result = InjectionResult( npc_profile=npc_profile, diff --git a/oghma-proxy/src/oghma_proxy/main.py b/oghma-proxy/src/oghma_proxy/main.py index 1c89753..60ee9a4 100644 --- a/oghma-proxy/src/oghma_proxy/main.py +++ b/oghma-proxy/src/oghma_proxy/main.py @@ -246,10 +246,15 @@ async def chat_completions(request: Request): async def stream_upstream(url: str, headers: dict, body: dict): - """Stream response from upstream.""" - async with http_client.stream("POST", url, json=body, headers=headers) as response: - async for chunk in response.aiter_bytes(): - yield chunk + """Stream response from upstream with error handling.""" + try: + async with http_client.stream("POST", url, json=body, headers=headers) as response: + async for chunk in response.aiter_bytes(): + yield chunk + except httpx.ReadError as e: + logger.error("Upstream stream dropped", error=str(e)) + except httpx.HTTPError as e: + logger.error("Upstream stream error", error=str(e)) @app.post("/v1/completions") diff --git a/oghma-proxy/usage.txt b/oghma-proxy/usage.txt index 83ea966..643242f 100644 --- a/oghma-proxy/usage.txt +++ b/oghma-proxy/usage.txt @@ -4,4 +4,4 @@ cd /home/dafit/nimmerverse/nimmersky/oghma-proxy Endpoints: - http://localhost:8100/health - Health check - http://localhost:8100/debug/rag - See recent RAG operations - - http://localhost:8100/v1/chat/completions - The proxy endpoint (point SkyrimNet here) + - http://127.0.0.1:8100/v1/chat/completions - The proxy endpoint (point SkyrimNet here) diff --git a/oghma-sknpack/Oghma_-_Armor_Weapons.sknpack b/oghma-sknpack/Oghma_-_Armor_Weapons.sknpack new file mode 100644 index 0000000..3d306c9 --- /dev/null +++ b/oghma-sknpack/Oghma_-_Armor_Weapons.sknpack @@ -0,0 +1,5228 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Tamrielic lore from CHIM's Oghma Infinium — armor weapons. Merges educated and common-knowledge entries graded by importance.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "Hide Armor is a basic hide chest piece with little protection quality. \nIts visual design is rough and primitive, made of light, tanned animal hides bound together with crude stitching. To craft it: 4 leather and 3 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using leather at a workbench.", + "display_name": "hide_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hide Boots are are a pair of hide boots with little protection quality.\nIts visual design is rough and primitive, made of light, tanned animal hides bound together with crude stitching. To craft it: 2 leather and 2 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using leather at a workbench.", + "display_name": "hide_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hide Bracers are are a pair of hide bracers with little protection quality. \nIts visual design is rough and primitive, made of light, tanned animal hides bound together with crude stitching. To craft it: 1 leather and 2 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using leather at a workbench.", + "display_name": "hide_bracers", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hide Helmet is a basic hide helmet with little protection quality. \nIts visual design is rough and primitive, made of light, tanned animal hides bound together with crude stitching. To craft it: 2 leather and 1 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using leather at a workbench.", + "display_name": "hide_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hide Shield is a basic hide shield with little protection quality. \nIts visual design is rough and primitive, made of light, tanned animal hides bound together with crude stitching. To craft it: 4 leather and 2 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using leather at a workbench.", + "display_name": "hide_shield", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Studded Armor is a basic studded hide chest piece with little protection quality. Its visual design is rough and primitive, made of light, tanned animal hides and iron studs bound together with crude stitching. To craft it: 1 Iron Ingot, 4 leather and 3 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using iron at a workbench.", + "display_name": "studded_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Leather Armor is a basic leather chest piece with basic protection quality. Its visual design is simple and flexible, with dark, weathered leather panels stitched together for mobility and basic protection. To craft it: 4 leather and 3 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using leather at a workbench.", + "display_name": "leather_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Leather Boots are a pair of leather boots with basic protection quality. Its visual design is simple and flexible, with dark, weathered leather panels stitched together for mobility and basic protection. To craft it: 2 leather and 2 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using leather at a workbench.", + "display_name": "leather_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Leather Bracers are a pair of leather bracers with basic protection quality. Its visual design is simple and flexible, with dark, weathered leather panels stitched together for mobility and basic protection. To craft it: 1 leather and 2 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using leather at a workbench.", + "display_name": "leather_bracers", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Leather Helmet is a basic leather helmet with basic protection quality. Its visual design is simple and flexible, with dark, weathered leather panels stitched together for mobility and basic protection. To craft it: 2 leather and 1 leather strip at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using leather at a workbench.", + "display_name": "leather_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chitin Armor is a basic chitin chest piece with good protection quality. Its visual design is organic and jagged, with dark, shell-like plates and a rough, natural texture. To craft it: 2 leather, 1 iron ingot and 5 chitin at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using chitin at a workbench.", + "display_name": "chitin_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chitin Boots are a pair of chitin boots with good protection quality. Its visual design is organic and jagged, with dark, shell-like plates and a rough, natural texture. To craft it: 1 leather, 1 iron ingot and 3 chitin at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using chitin at a workbench.", + "display_name": "chitin_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chitin Bracers are a pair of chitin bracers with good protection quality. Its visual design is organic and jagged, with dark, shell-like plates and a rough, natural texture. To craft it: 1 leather, 1 iron ingot and 2 chitin at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using chitin at a workbench.", + "display_name": "chitin_bracers", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chitin Helmet is a basic chitin helmet with good protection quality. Its visual design is organic and jagged, with dark, shell-like plates and a rough, natural texture. To craft it: 1leather, 1 iron ingot and 3 chitin at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using chitin at a workbench.", + "display_name": "chitin_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chitin Shield is a basic chitin shield with good protection quality. Its visual design is organic and jagged, with dark, shell-like plates and a rough, natural texture. To craft it: 1 leather, 1 iron ingot ingots and 4 chitin at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using chitin at a workbench.", + "display_name": "chitin_shield", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scaled Armor is a basic scaled chest piece with good protection quality. \nIts visual design is sleek and layered, resembling overlapping metallic scales with a polished, reflective surface. To craft it: 2 leather, 3 steel ingots, and 2 corrundum ingots and 3 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using corrundum at a workbench.", + "display_name": "scaled_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scaled Boots are a pair of scaled boots with good protection quality. \nIts visual design is sleek and layered, resembling overlapping metallic scales with a polished, reflective surface. To craft it: 1 leather, 2 steel ingots, and 1 corrundum ingots and 2 leather strips at a blacksmith forge.. An Adept smith can craft it. It can be tempered/improved by using corrundum at a workbench.", + "display_name": "scaled_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scaled Bracers are a pair of scaled bracers with good protection quality. \nIts visual design is sleek and layered, resembling overlapping metallic scales with a polished, reflective surface. To craft it: 1 leather, 1 steel ingots, and 1 corrundum ingots and 2 leather strips at a blacksmith forge.. An Adept smith can craft it. It can be tempered/improved by using corrundum at a workbench.", + "display_name": "scaled_bracers", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scaled Helmet is a basic scaled helmet with good protection quality. To craft it: 1 leather, 2 steel ingots, and 1 corrundum ingots and 1 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using corrundum at a workbench.", + "display_name": "scaled_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Banded Iron Armor is a basic scaled chest piece with basic protection quality. Its visual design is rugged and reinforced, combining dark, weathered metal with additional banded plates for extra protection. To craft it: 5 iron ingot, and 1 corrundum ingots and 3 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using iron at a workbench.", + "display_name": "banded_iron_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hide Shield is a basic hide shield with little protection quality. Its visual design is rugged and reinforced, combining dark, weathered metal with additional banded plates for extra protection. To craft it: 4 iron ingot, and 1 corrundum ingots and 1 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using iron at a workbench.", + "display_name": "banded_iron_shield", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bonemold Armor is a basic bonemold chest piece with basic protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. To craft it: 2 netch leather, 1 iron ingots, 10 bonemold, at a blacksmith forge. An Apprentice smith can craft it. It can be tempered/improved by using bonemeal at a workbench.", + "display_name": "bonemold_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bonemold Armor is a basic bonemold chest piece with basic protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. To craft it: 2 netch leather, 1 iron ingots, 10 bonemold, at a blacksmith forge. An Apprentice smith can craft it. It can be tempered/improved by using bonemeal at a workbench.", + "display_name": "bonemold_guard_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bonemold Armor is a basic bonemold chest piece with basic protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. To craft it: 2 netch leather, 1 iron ingots, 10 bonemold, at a blacksmith forge. An Apprentice smith can craft it. It can be tempered/improved by using bonemeal at a workbench.", + "display_name": "bonemold_pauldron_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bonemold Boots are a pair of bonemold boots with basic protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. To craft it: 1 netch leather, 1 iron ingots, 6 bonemold ingot at a blacksmith forge. An Apprentice smith can craft it. It can be tempered/improved by using bonemeal at a workbench.", + "display_name": "bonemold_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bonemold Gauntlets are a pair of bonemold bracers withbasic protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. To craft it: 1 netch leather, 1 iron ingot, 4 bonemold at a blacksmith forge. An Apprentice smith can craft it. It can be tempered/improved by using bonemeal at a workbench.", + "display_name": "bonemold_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bonemold Helmet is a basic bonemold helmet with basic protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. To craft it: 1 netch leather, 1 iron ingots, 6 bonemold at a blacksmith forge. An Apprentice smith can craft it. It can be tempered/improved by using bonemeal at a workbench.", + "display_name": "bonemold_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bonemold Shield is a basic bonemold helmet with basic protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. To craft it: 1 netch leather, 1 iron ingots, 8 bonemold at a blacksmith forge. An Apprentice smith can craft it. It can be tempered/improved by using bonemeal at a workbench.", + "display_name": "bonemold_shield", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Improved Bonemold Armor is a basic bonemold chest piece with good protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. To craft it: 2 netch leather, 1 iron ingot, 10 bonemold 1 netch jelly and 1 stalhrim and 1 void salts at a blacksmith forge. An Apprentice smith can craft it. It can be tempered/improved by using bonemeal at a workbench.", + "display_name": "improved_bonemold_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Improved Bonemold Boots are a basic bonemold pair of boots with good protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. To craft it: 1 netch leather, 1 iron ingot, 6 bonemold, 1 netch jelly, 1 stalhrim, and 1 void salts at a blacksmith forge. An Apprentice smith can craft it. It can be tempered/improved by using bonemeal at a workbench.", + "display_name": "improved_bonemold_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Improved Bonemold Gauntlets are a basic bonemold pair of gauntlets with good protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. To craft it: 1 netch leather, 1 iron ingot, 4 bonemold, 1 netch jelly, 1 stalhrim, and 1 void salts at a blacksmith forge. An Apprentice smith can craft it. It can be tempered/improved by using bonemeal at a workbench.", + "display_name": "improved_bonemold_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Improved Bonemold Helmet is a basic bonemold helmet with good protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. To craft it: 1 netch leather, 1 iron ingot, 6 bonemold, 1 netch jelly, 1 stalhrim, and 1 void salts at a blacksmith forge. An Apprentice smith can craft it. It can be tempered/improved by using bonemeal at a workbench.", + "display_name": "improved_bonemold_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Improved Bonemold Shield is a basic bonemold shield with good protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. To craft it: 1 netch leather, 1 iron ingot, 8 bonemold, 1 netch jelly, 1 stalhrim, and 1 void salts at a blacksmith forge. An Apprentice smith can craft it. It can be tempered/improved by using bonemeal at a workbench.", + "display_name": "improved_bonemold_shield", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Armor is a basic iron chest piece with basic protection quality. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes. To craft it: 5 iron ingots and 3 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using iron at a workbench.", + "display_name": "iron_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Improved Iron Boots are a basic iron pair of boots with basic protection quality. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes. To craft it: 3 iron ingots and 2 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using iron at a workbench.", + "display_name": "iron_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Gauntlets are a basic iron pair of gauntlets with basic protection quality. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes. To craft it: 2 iron ingots and 2 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using iron at a workbench.", + "display_name": "iron_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Helmet is a basic iron helmet with basic protection quality. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes. To craft it: 3 iron ingots and 2 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using iron at a workbench.", + "display_name": "iron_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Shield is a basic iron shield with basic protection quality. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes. To craft it: 4 iron ingots and 1 leather strip at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using iron at a workbench.", + "display_name": "iron_shield", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Sword is a basic iron weapon which deals low damage. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes. To craft it: 2 iron ingots and 1 leather strip at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using iron at a workbench.", + "display_name": "iron_sword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron War Axe is a sturdy iron weapon which deals low damage. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes. To craft it: 2 iron ingots and 2 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using iron at a workbench.", + "display_name": "iron_war_axe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Dagger is a light iron weapon which deals low damage. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes. To craft it: 1 iron ingot and 1 leather strip at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using iron at a workbench.", + "display_name": "iron_dagger", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Mace is a blunt iron weapon which deals low damage. To craft it: 3 iron ingots and 2 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using iron at a workbench.", + "display_name": "iron_mace", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Greatsword is a two-handed iron weapon which deals low damage. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes. To craft it: 4 iron ingots and 2 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using iron at a workbench.", + "display_name": "iron_greatsword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Battleaxe is a heavy iron weapon which deals low damage. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes. To craft it: 4 iron ingots and 2 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using iron at a workbench.", + "display_name": "iron_battleaxe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Warhammer is a massive iron weapon which deals low damage. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes. To craft it: 4 iron ingots and 3 leather strips at a blacksmith forge. A Novice smith can craft it. It can be tempered/improved by using iron at a workbench.", + "display_name": "iron_warhammer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Armor is a basic steel chest piece with good protection quality. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. To craft it: 4 steel ingots, 1 iron ingot, and 3 leather strips at a blacksmith forge. An Apprentice smith can craft it. It can be tempered/improved by using steel at a workbench.", + "display_name": "steel_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Boots are a pair of steel boots with good protection quality. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. To craft it: 3 steel ingots, 1 iron ingot, and 2 leather strips at a blacksmith forge. An Apprentice smith can craft it. It can be tempered/improved by using steel at a workbench. It can be tempered/improved by using steel at a workbench.", + "display_name": "steel_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Gauntlets are a pair of steel gauntlets with good protection quality. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. To craft it: 2 steel ingots, 1 iron ingot, and 1 leather strip at a blacksmith forge. An Apprentice smith can craft it. It can be tempered/improved by using steel at a workbench.", + "display_name": "steel_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Helmet is a basic steel helmet with good protection quality. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. To craft it: 2 steel ingots, 1 iron ingot, and 1 leather strip at a blacksmith forge. An Apprentice smith can craft it. It can be tempered/improved by using steel at a workbench.", + "display_name": "steel_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Shield is a basic steel shield with good protection quality. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. To craft it: 3 steel ingots, 1 iron ingot, and 1 leather strip at a blacksmith forge. An Apprentice smith can craft it. It can be tempered/improved by using steel at a workbench.", + "display_name": "steel_shield", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Sword is a basic steel weapon which deals average damage. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. To craft it: 2 steel ingots, 1 iron ingot, and 1 leather strip at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using steel at a workbench.", + "display_name": "steel_sword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel War Axe is a sturdy steel weapon which deals average damage.Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. To craft it: 2 steel ingots, 2 iron ingots, and 1 leather strip at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using steel at a workbench.", + "display_name": "steel_war_axe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Dagger is a light steel weapon which deals average damage. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. To craft it: 1 steel ingot, 1 iron ingot, and 1 leather strip at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using steel at a workbench.", + "display_name": "steel_dagger", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Mace is a blunt steel weapon which deals average damage. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. To craft it: 3 steel ingots, 1 iron ingot, and 1 leather strip at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using steel at a workbench.", + "display_name": "steel_mace", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Greatsword is a two-handed steel weapon which deals average damage. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. To craft it: 4 steel ingots, 2 iron ingots, and 3 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using steel at a workbench.", + "display_name": "steel_greatsword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Battleaxe is a heavy steel weapon which deals average damage. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. To craft it: 4 steel ingots, 1 iron ingot, and 2 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using steel at a workbench.", + "display_name": "steel_battleaxe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Warhammer is a massive steel weapon which deals average damage. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. To craft it: 4 steel ingots, 1 iron ingot, and 3 leather strips at a blacksmith forge. An Adept smith can craft it.It can be tempered/improved by using steel at a workbench.", + "display_name": "steel_warhammer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Armor is a basic dwarven chest piece with good protection quality. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. To craft it: 3 dwarven metal ingots, 1 iron ingot, and 3 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using dwarvern ingot at a workbench.", + "display_name": "dwarven_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Boots are a pair of dwarven boots with good protection quality. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. To craft it: 2 dwarven metal ingots, 1 iron ingot, and 2 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using dwarvern ingot at a workbench.", + "display_name": "dwarven_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Gauntlets are a pair of dwarven gauntlets with good protection quality. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. To craft it: 1 dwarven metal ingot, 1 iron ingot, and 2 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using dwarvern ingot at a workbench.", + "display_name": "dwarven_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Helmet is a basic dwarven helmet with good protection quality. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. To craft it: 2 dwarven metal ingots, 1 iron ingot, and 1 leather strip at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using dwarvern ingot at a workbench.", + "display_name": "dwarven_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Shield is a basic dwarven shield with good protection quality. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. To craft it: 2 dwarven metal ingots, 1 iron ingot, and 1 leather strip at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using dwarvern ingot at a workbench.", + "display_name": "dwarven_shield", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Sword is a basic dwarven weapon which deals good damage. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. To craft it: 1 dwarven metal ingot, 1 steel ingot, 1 iron ingot, and 1 leather strip at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using dwarvern ingot at a workbench.", + "display_name": "dwarven_sword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven War Axe is a sturdy dwarven weapon which deals good damage. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. To craft it: 1 dwarven metal ingot, 1 steel ingot, 1 iron ingot, and 3 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using dwarvern ingot at a workbench.", + "display_name": "dwarven_war_axe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Dagger is a light dwarven weapon which deals good damage. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. To craft it: 1 dwarven metal ingot, 1 steel ingot, 1 iron ingot, and 1 leather strip at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using dwarvern ingot at a workbench.", + "display_name": "dwarven_dagger", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Mace is a blunt dwarven weapon which deals good damage. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. To craft it: 2 dwarven metal ingots, 1 steel ingot, 1 iron ingot, and 1 leather strip at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using dwarvern ingot at a workbench.", + "display_name": "dwarven_mace", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Greatsword is a two-handed dwarven weapon which deals good damage. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. To craft it: 2 dwarven metal ingots, 2 steel ingots, 2 iron ingots, and 3 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using dwarvern ingot at a workbench.", + "display_name": "dwarven_greatsword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Battleaxe is a heavy dwarven weapon which deals good damage. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. To craft it: 2 dwarven metal ingots, 2 steel ingots, 1 iron ingot, and 2 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using dwarvern ingot at a workbench.", + "display_name": "dwarven_battleaxe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Warhammer is a massive dwarven weapon which deals good damage. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. To craft it: 2 dwarven metal ingots, 2 steel ingots, 1 iron ingot, and 3 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using dwarvern ingot at a workbench.", + "display_name": "dwarven_warhammer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Bow is a ranged dwarven weapon which deals good damage. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. To craft it: 2 dwarven metal ingots and 1 leather strip at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using dwarvern ingot at a workbench.", + "display_name": "dwarven_bow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Plate Armor is a basic steel plate chest piece with good protection quality. Its visual design is robust and practical, with polished steel surfaces and reinforced plates that emphasize durability and function. To craft it: 3 steel ingots, 1 corundum ingot, and 3 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using steel at a workbench.", + "display_name": "steel_plate_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Plate Boots are a pair of steel plate boots with good protection quality. Its visual design is robust and practical, with polished steel surfaces and reinforced plates that emphasize durability and function. To craft it: 2 steel ingots, 1 corundum ingot, and 2 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using steel at a workbench.", + "display_name": "steel_plate_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Plate Gauntlets are a pair of steel plate gauntlets with good protection quality. Its visual design is robust and practical, with polished steel surfaces and reinforced plates that emphasize durability and function. To craft it: 1 steel ingot, 1 corundum ingot, and 2 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using steel at a workbench.", + "display_name": "steel_plate_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Plate Helmet is a basic steel plate helmet with good protection quality. Its visual design is robust and practical, with polished steel surfaces and reinforced plates that emphasize durability and function. To craft it: 2 steel ingots, 1 corundum ingot, and 1 leather strip at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using steel at a workbench.", + "display_name": "steel_plate_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Plate Shield is a basic steel plate shield with good protection quality. Its visual design is robust and practical, with polished steel surfaces and reinforced plates that emphasize durability and function. To craft it: 3 steel ingots, 1 corundum ingot, and 1 leather strip at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using steel at a workbench.", + "display_name": "steel_plate_shield", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Carved Armor is a basic Nordic carved chest piece with great protection quality. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. To craft it: 1 ebony ingot, 1 quicksilver ingot, 3 leather strips, and 6 steel ingots at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using quicksilver at a workbench.", + "display_name": "nordic_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Carved Boots are a pair of Nordic carved boots with great protection quality. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. To craft it: 1 ebony ingot, 1 quicksilver ingot, 2 leather strips, and 4 steel ingots at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using quicksilver at a workbench.", + "display_name": "nordic_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Carved Gauntlets are a pair of Nordic carved gauntlets with great protection quality. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. To craft it: 1 ebony ingot, 1 quicksilver ingot, 2 leather strips, and 3 steel ingots at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using quicksilver at a workbench.", + "display_name": "nordic_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Carved Helmet is a basic Nordic carved helmet with great protection quality. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. To craft it: 1 ebony ingot, 1 quicksilver ingot, 2 leather strips, and 4 steel ingots at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using quicksilver at a workbench.", + "display_name": "nordic_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Shield is a basic Nordic shield with great protection quality. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. To craft it: 1 quicksilver ingot, 1 leather strip, and 4 steel ingots at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using quicksilver at a workbench. It can be tempered/improved by using quicksilver at a workbench.", + "display_name": "nordic_shield", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Sword is a basic Nordic weapon which deals good damage. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. To craft it: 1 quicksilver ingot, 2 leather strips, and 1 steel ingot at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using quicksilver at a workbench.", + "display_name": "nordic_sword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic War Axe is a sturdy Nordic weapon which deals good damage. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship.To craft it: 2 quicksilver ingots, 2 leather strips, and 1 steel ingot at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using quicksilver at a workbench.", + "display_name": "nordic_war_axe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Dagger is a light Nordic weapon which deals good damage. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. To craft it: 1 quicksilver ingot, 1 leather strip, and 1 steel ingot at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using quicksilver at a workbench.", + "display_name": "nordic_dagger", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Mace is a blunt Nordic weapon which deals good damage. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. To craft it: 1 quicksilver ingot, 1 leather strip, and 1 steel ingot at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using quicksilver at a workbench.", + "display_name": "nordic_mace", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Greatsword is a two-handed Nordic weapon which deals good damage. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. To craft it: 3 quicksilver ingots, 5 leather strips, and 1 steel ingot at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using quicksilver at a workbench.", + "display_name": "nordic_greatsword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Battleaxe is a heavy Nordic weapon which deals good damage.Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. To craft it: 2 quicksilver ingots, 5 leather strips, and 1 steel ingot at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using quicksilver at a workbench.", + "display_name": "nordic_battleaxe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Warhammer is a massive Nordic weapon which deals good damage. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. To craft it: 3 quicksilver ingots, 5 leather strips, and 1 steel ingot at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using quicksilver at a workbench.", + "display_name": "nordic_warhammer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Bow is a ranged Nordic weapon which deals good damage. To craft it: 3 quicksilver ingots and 1 steel ingot at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using quicksilver at a workbench.", + "display_name": "nordic_bow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Armor is a basic Orcish chest piece with great protection quality. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. To craft it: 4 orichalcum ingots, 1 iron ingot, and 3 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using orichalcum at a workbench.", + "display_name": "orchish_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Boots are a pair of Orcish boots with great protection quality. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. To craft it: 3 orichalcum ingots, 1 iron ingot, and 2 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using orichalcum at a workbench.", + "display_name": "orchish_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Gauntlets are a pair of Orcish gauntlets with great protection quality. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. To craft it: 2 orichalcum ingots, 1 iron ingot, and 2 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using orichalcum at a workbench.", + "display_name": "orchish_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Helmet is a basic Orcish helmet with great protection quality. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. To craft it: 2 orichalcum ingots, 1 iron ingot, and 2 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using orichalcum at a workbench.", + "display_name": "orchish_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Shield is a basic Orcish shield with great protection quality. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. To craft it: 3 orichalcum ingots, 1 iron ingot, and 1 leather strip at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using orichalcum at a workbench.", + "display_name": "orchish_shield", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Sword is a basic Orcish weapon which deals good damage. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. To craft it: 2 orichalcum ingots, 1 iron ingot, and 1 leather strip at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using orichalcum at a workbench.", + "display_name": "orchish_sword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish War Axe is a sturdy Orcish weapon which deals good damage. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. To craft it: 2 orichalcum ingots, 1 iron ingot, and 2 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using orichalcum at a workbench.", + "display_name": "orchish_war_axe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Dagger is a light Orcish weapon which deals good damage. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. To craft it: 1 orichalcum ingot, 1 iron ingot, and 1 leather strip at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using orichalcum at a workbench.", + "display_name": "orchish_dagger", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Mace is a blunt Orcish weapon which deals good damage. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. To craft it: 3 orichalcum ingots, 1 iron ingot, and 1 leather strip at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using orichalcum at a workbench.", + "display_name": "orchish_mace", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Greatsword is a two-handed Orcish weapon which deals good damage. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. To craft it: 4 orichalcum ingots, 2 iron ingots, and 3 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using orichalcum at a workbench.", + "display_name": "orchish_greatsword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Battleaxe is a heavy Orcish weapon which deals good damage. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. To craft it: 4 orichalcum ingots, 1 iron ingot, and 2 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using orichalcum at a workbench.", + "display_name": "orchish_battleaxe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Warhammer is a massive Orcish weapon which deals good damage. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. To craft it: 4 orichalcum ingots, 1 iron ingot, and 3 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using orichalcum at a workbench.", + "display_name": "orchish_warhammer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Bow is a ranged Orcish weapon which deals good damage. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. To craft it: 2 orichalcum ingots, 1 iron ingot, and 2 leather strips at a blacksmith forge. An Adept smith can craft it. It can be tempered/improved by using orichalcum at a workbench.", + "display_name": "orchish_bow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Armor is a basic ebony chest piece with fantastic protection quality. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. To craft it: 5 ebony ingots and 3 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "ebony_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Boots are a pair of ebony boots with fantastic protection quality. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. To craft it: 3 ebony ingots and 2 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "ebony_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Gauntlets are a pair of ebony gauntlets with fantastic protection quality. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. To craft it: 2 ebony ingots and 2 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "ebony_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Helmet is a basic ebony helmet with fantastic protection quality. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. To craft it: 3 ebony ingots and 2 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "ebony_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Shield is a basic ebony shield with fantastic protection quality. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. To craft it: 4 ebony ingots and 1 leather strip at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "ebony_shield", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Sword is a basic ebony weapon which deals fantastic damage. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. To craft it: 2 ebony ingots and 1 leather strip at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "ebony_sword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony War Axe is a sturdy ebony weapon which deals fantastic damage. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. To craft it: 2 ebony ingots and 2 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "ebony_war_axe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Dagger is a light ebony weapon which deals fantastic damage. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. To craft it: 1 ebony ingot and 1 leather strip at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "ebony_dagger", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Mace is a blunt ebony weapon which deals fantastic damage. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. To craft it: 3 ebony ingots and 1 leather strip at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "ebony_mace", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Greatsword is a two-handed ebony weapon which deals fantastic damage. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. To craft it: 5 ebony ingots and 3 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "ebony_greatsword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Battleaxe is a heavy ebony weapon which deals fantastic damage. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. To craft it: 5 ebony ingots and 2 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "ebony_battleaxe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Warhammer is a massive ebony weapon which deals fantastic damage. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. To craft it: 5 ebony ingots and 3 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "ebony_warhammer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Warhammer is a massive ebony weapon which deals fantastic damage. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. To craft it: 5 ebony ingots and 3 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "ebony_bow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Armor has fantastic protection quality. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. To craft it: 6 stalhrim, 1 quicksilver ingot, and 3 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using stalhrim at a workbench.", + "display_name": "stalhrim_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Boots have fantastic protection quality. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. To craft it: 4 stalhrim, 1 quicksilver ingot, and 2 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using stalhrim at a workbench.", + "display_name": "stalhrim_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Gauntlets have fantastic protection quality. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. To craft it: 3 stalhrim, 1 quicksilver ingot, and 2 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using stalhrim at a workbench.", + "display_name": "stalhrim_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Helmet has fantastic protection quality. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. To craft it: 4 stalhrim, 1 quicksilver ingot, and 2 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using stalhrim at a workbench.", + "display_name": "stalhrim_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Shield is a basic stalhrim shield with fantastic protection quality. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. To craft it: 4 stalhrim, 1 steel ingot, and 1 leather strip at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using stalhrim at a workbench.", + "display_name": "stalhrim_shield", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Sword is a basic stalhrim weapon which deals fantastic damage. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. To craft it: 2 stalhrim and 1 leather strip at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using stalhrim at a workbench.", + "display_name": "stalhrim_sword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim War Axe is a sturdy stalhrim weapon which deals fantastic damage. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. To craft it: 2 stalhrim and 2 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using stalhrim at a workbench.", + "display_name": "stalhrim_war_axe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Dagger is a light stalhrim weapon which deals fantastic damage. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. To craft it: 1 stalhrim and 1 leather strip at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using stalhrim at a workbench.", + "display_name": "stalhrim_dagger", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Mace is a blunt stalhrim weapon which deals fantastic damage. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. To craft it: 3 stalhrim and 1 leather strip at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using stalhrim at a workbench.", + "display_name": "stalhrim_mace", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Greatsword is a two-handed stalhrim weapon which deals fantastic damage. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. To craft it: 5 stalhrim and 3 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using stalhrim at a workbench.", + "display_name": "stalhrim_greatsword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Battleaxe is a heavy stalhrim weapon which deals fantastic damage. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. To craft it: 5 stalhrim and 2 leather strips at a blacksmith forge. An Expert smith can craft it.\n It can be tempered/improved by using stalhrim at a workbench.", + "display_name": "stalhrim_battleaxe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Warhammer is a massive stalhrim weapon which deals fantastic damage. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. To craft it: 5 stalhrim and 3 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using stalhrim at a workbench.", + "display_name": "stalhrim_warhammer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Bow is a ranged stalhrim weapon which deals fantastic damage. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. To craft it: 3 stalhrim and 1 leather strip at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using stalhrim at a workbench.", + "display_name": "stalhrim_bow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonplate Armor has brilliant protection quality. \nIts visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. To craft it: 3 dragon scales, 2 dragon bones, and 3 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using dragonbone at a workbench.", + "display_name": "dragonplate_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonplate Boots have brilliant protection quality. \nIts visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. To craft it: 3 dragon scales, 1 dragon bone, and 2 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using dragonbone at a workbench.", + "display_name": "dragonplate_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonplate Gauntlets have brilliant protection quality. \nIts visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. To craft it: 2 dragon scales, 1 dragon bone, and 2 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using dragonbone at a workbench.", + "display_name": "dragonplate_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonplate Helmet has brilliant protection quality .Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance.To craft it: 2 dragon scales, 1 dragon bone, and 2 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using dragonbone at a workbench.", + "display_name": "dragonplate_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonplate Shield has brilliant protection quality. \nIts visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. To craft it: 3 dragon scales, 1 dragon bone, and 1 leather strip at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using dragonbone at a workbench.", + "display_name": "dragonplate_shield", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Armor has Godly protection quality. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. To craft it: 1 Daedra heart, 5 ebony ingots, and 3 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "daedric_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Boots have Godly protection quality. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. To craft it: 1 Daedra heart, 3 ebony ingots, and 2 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "daedric_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Gauntlets have Godly protection quality. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. To craft it: 1 Daedra heart, 2 ebony ingots, and 2 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "daedric_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Helmet has Godly protection quality. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. To craft it: 1 Daedra heart, 3 ebony ingots, and 2 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "daedric_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Shield has Godly protection quality. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. To craft it: 1 Daedra heart, 4 ebony ingots, and 1 leather strip at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "daedric_shield", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Sword is a basic Daedric weapon which deals Godly damage. To craft it: 1 Daedra heart, 2 ebony ingots, and 1 leather strip at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "daedric_sword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric War Axe is a sturdy Daedric weapon which deals Godly damage. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. To craft it: 1 Daedra heart, 2 ebony ingots, and 2 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "daedric_war_axe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Dagger is a light Daedric weapon which deals Godly damage. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. To craft it: 1 Daedra heart, 1 ebony ingot, and 1 leather strip at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "daedric_dagger", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Mace is a blunt Daedric weapon which deals Godly damage. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. To craft it: 1 Daedra heart, 3 ebony ingots, and 1 leather strip at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "daedric_mace", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Greatsword is a two-handed Daedric weapon which deals Godly damage. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. To craft it: 1 Daedra heart, 5 ebony ingots, and 3 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "daedric_greatsword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Battleaxe is a heavy Daedric weapon which deals Godly damage. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. To craft it: 1 Daedra heart, 5 ebony ingots, and 2 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "daedric_battleaxe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Warhammer is a massive Daedric weapon which deals Godly damage. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. To craft it: 1 Daedra heart, 5 ebony ingots, and 3 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "daedric_warhammer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Bow is a ranged Daedric weapon which deals Godly damage. To craft it: 1 Daedra heart, 3 ebony ingots, and 3 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using ebony at a workbench.", + "display_name": "daedric_bow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Gilded Armor has good protection quality. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. To craft it: 4 refined moonstone, 1 quicksilver ingot, 1 iron ingot, and 3 leather strips at a blacksmith forge. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "elven_gilded_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Armor has good protection quality. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. To craft it: 4 refined moonstone, 1 iron ingot, 1 leather, and 3 leather strips at a blacksmith forge. An Adept smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "elven_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Boots have good protection quality. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. To craft it: 2 refined moonstone, 1 iron ingot, 1 leather, and 2 leather strips at a blacksmith forge. An Adept smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "elven_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Gauntlets have good protection quality. To craft it: 1 refined moonstone, 1 iron ingot, 1 leather, and 2 leather strips at a blacksmith forge. An Adept smith can craft it.An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "elven_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Helmet has good protection quality. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. To craft it: 2 refined moonstone, 1 iron ingot, 1 leather, and 1 leather strip at a blacksmith forge. An Adept smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "elven_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Shield has good protection quality. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. To craft it: 4 refined moonstone, 1 iron ingot, and 2 leather strips at a blacksmith forge. An Adept smith can craft it.An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "elven_shield", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Sword is a basic Elven weapon which deals good damage. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. To craft it: 1 refined moonstone, 1 quicksilver ingot, 1 iron ingot, and 1 leather strip at a blacksmith forge. An Adept smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "elven_sword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven War Axe is a sturdy Elven weapon which deals good damage. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. To craft it: 1 refined moonstone, 1 quicksilver ingot, 1 iron ingot, and 2 leather strips at a blacksmith forge. An Adept smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "elven_war_axe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Dagger is a light Elven weapon which deals good damage. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. To craft it: 1 refined moonstone, 1 quicksilver ingot, 1 iron ingot, and 1 leather strip at a blacksmith forge. An Adept smith can craft it.An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "elven_dagger", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Mace is a blunt Elven weapon which deals good damage. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanshipTo craft it: 1 refined moonstone, 1 quicksilver ingot, 2 iron ingots, and 1 leather strip at a blacksmith forge. An Adept smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "elven_mace", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Greatsword is a two-handed Elven weapon which deals good damage. \nIts visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship To craft it: 2 refined moonstone, 1 quicksilver ingot, 2 iron ingots, and 3 leather strips at a blacksmith forge. An Adept smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "elven_greatsword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Battleaxe is a heavy Elven weapon which deals good damage. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. To craft it: 2 refined moonstone, 1 quicksilver ingot, 2 iron ingots, and 2 leather strips at a blacksmith forge. An Adept smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "elven_battleaxe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Warhammer is a massive Elven weapon which deals good damage. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. To craft it: 2 refined moonstone, 1 quicksilver ingot, 2 iron ingots, and 3 leather strips at a blacksmith forge. An Adept smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "elven_warhammer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Bow is a ranged Elven weapon which deals good damage. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. To craft it: 2 refined moonstone, 1 quicksilver ingot, and 2 leather strips at a blacksmith forge. An Adept smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "elven_bow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Light Armor is a basic stalhrim chest piece with fantastic protection quality. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. To craft it: 5 stalhrim, 1 steel ingot, and 3 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using stalhrim at a workbench.", + "display_name": "stalhrim_light_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Light Boots are a pair of stalhrim boots with fantastic protection quality. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. To craft it: 3 stalhrim, 1 steel ingot, and 2 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using stalhrim at a workbench.", + "display_name": "stalhrim_light_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Light Bracers are a pair of stalhrim bracers with fantastic protection quality. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. To craft it: 2 stalhrim, 1 steel ingot, and 2 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using stalhrim at a workbench.", + "display_name": "stalhrim_light_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Light Helmet is a basic stalhrim helmet with fantastic protection quality. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. To craft it: 3 stalhrim, 1 steel ingot, and 2 leather strips at a blacksmith forge. An Expert smith can craft it. It can be tempered/improved by using stalhrim at a workbench.", + "display_name": "stalhrim_light_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Armor has fantastic protection quality. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. To craft it: 4 refined malachite, 2 refined moonstone, 1 leather, and 3 leather strips at a blacksmith forge. An Expert smith can craft it. An Adept smith can craft it. It can be tempered/improved by using malachite at a workbench.", + "display_name": "glass_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Boots have fantastic protection quality. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. To craft it: 2 refined malachite, 1 refined moonstone, 1 leather, and 2 leather strips at a blacksmith forge. An Expert smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "glass_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Gauntlets have fantastic protection quality. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. To craft it: 1 refined malachite, 1 refined moonstone, 1 leather, and 2 leather strips at a blacksmith forge. An Expert smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "glass_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Helmet has fantastic protection quality. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. To craft it: 2 refined malachite, 1 refined moonstone, 1 leather, and 1 leather strip at a blacksmith forge. An Expert smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "glass_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Shield has fantastic protection quality. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. To craft it: 4 refined malachite, 1 refined moonstone, and 2 leather strips at a blacksmith forge. An Expert smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "glass_shield", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Sword is a basic glass weapon which deals fantastic damage. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. To craft it: 1 refined malachite, 1 refined moonstone, and 1 leather strip at a blacksmith forge. An Expert smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "glass_sword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass War Axe is a sturdy glass weapon which deals fantastic damage. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. To craft it: 1 refined malachite, 1 refined moonstone, and 2 leather strips at a blacksmith forge. An Expert smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "glass_war_axe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Dagger is a light glass weapon which deals fantastic damage. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. To craft it: 1 refined malachite, 1 refined moonstone, and 1 leather strip at a blacksmith forge. An Expert smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "glass_dagger", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Mace is a blunt glass weapon which deals fantastic damage. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. To craft it: 2 refined malachite, 1 refined moonstone, and 1 leather strip at a blacksmith forge. An Expert smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "glass_mace", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Greatsword is a two-handed glass weapon which deals fantastic damage. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. To craft it: 2 refined malachite, 2 refined moonstone, and 3 leather strips at a blacksmith forge. An Expert smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "glass_greatsword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Battleaxe is a heavy glass weapon which deals fantastic damage. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. To craft it: 2 refined malachite, 2 refined moonstone, and 2 leather strips at a blacksmith forge. An Expert smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "glass_battleaxe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Warhammer is a massive glass weapon which deals fantastic damage. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. To craft it: 3 refined malachite, 2 refined moonstone, and 3 leather strips at a blacksmith forge. An Expert smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "glass_warhammer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Bow is a ranged glass weapon which deals fantastic damage. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite.To craft it: 2 refined malachite, 1 refined moonstone, and 2 leather strips at a blacksmith forge. An Expert smith can craft it. An Adept smith can craft it.It can be tempered/improved by using moonstone at a workbench.", + "display_name": "glass_bow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonscale Armor has brilliant protection quality. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. To craft it: 4 dragon scales, 2 iron ingots, 1 leather, and 3 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using dragonbone at a workbench.", + "display_name": "dragonscale_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonscale Boots have brilliant protection quality. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. To craft it: 2 dragon scales, 1 iron ingot, 1 leather, and 2 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using dragonbone at a workbench.", + "display_name": "dragonscale_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonscale Gauntlets have brilliant protection quality. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. To craft it: 2 dragon scales, 1 iron ingot, 1 leather, and 2 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using dragonbone at a workbench.", + "display_name": "dragonscale_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonscale Helmet has brilliant protection quality. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. To craft it: 2 dragon scales, 1 iron ingot, 1 leather, and 1 leather strip at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using dragonbone at a workbench.", + "display_name": "dragonscale_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonscale Shield has brilliant protection quality. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. To craft it: 4 dragon scales, 2 iron ingots, and 2 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using dragonbone at a workbench.", + "display_name": "dragonscale_shield", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonbone Sword is a basic Dragonbone weapon which deals brilliant damage. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. To craft it: 1 dragon bone, 1 ebony ingot, and 1 leather strip at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using dragonbone at a workbench.", + "display_name": "dragonbone_sword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonbone War Axe is a sturdy Dragonbone weapon which deals brilliant damage. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. To craft it: 1 dragon bone, 1 ebony ingot, and 2 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using dragonbone at a workbench.", + "display_name": "dragonbone_war_axe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonbone Dagger is a light Dragonbone weapon which deals brilliant damage. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. To craft it: 1 dragon bone, 1 ebony ingot, and 1 leather strip at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using dragonbone at a workbench.", + "display_name": "dragonbone_dagger", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonbone Mace is a blunt Dragonbone weapon which deals brilliant damage. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. To craft it: 2 dragon bones, 1 ebony ingot, and 1 leather strip at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using dragonbone at a workbench.", + "display_name": "dragonbone_mace", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonbone Greatsword is a two-handed Dragonbone weapon which deals brilliant damage. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. To craft it: 4 dragon bones, 1 ebony ingot, and 3 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using dragonbone at a workbench.", + "display_name": "dragonbone_greatsword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonbone Battleaxe is a heavy Dragonbone weapon which deals brilliant damage. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. To craft it: 3 dragon bones, 2 ebony ingots, and 2 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using dragonbone at a workbench.", + "display_name": "dragonbone_battleaxe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonbone Warhammer is a massive Dragonbone weapon which deals brilliant damage. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. To craft it: 3 dragon bones, 2 ebony ingots, and 3 leather strips at a blacksmith forge. A Master smith can craft it.", + "display_name": "dragonbone_warhammer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonbone Bow is a ranged Dragonbone weapon which deals brilliant damage. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. To craft it: 2 dragon bones, 1 ebony ingot, and 2 leather strips at a blacksmith forge. A Master smith can craft it. It can be tempered/improved by using dragonbone at a workbench.", + "display_name": "dragonbone_bow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancient Nord Arrow is an arrow that deals low damage. Its visual design is weathered and primitive, with a rough wooden shaft, dark fletching, and a chipped, stone-like arrowhead. It can not be crafted, most likely can be found on draugr.", + "display_name": "ancient_nord_arrow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Arrow is an arrow that deals Godly damage. Its visual design is dark and menacing, with a black shaft, jagged red-tipped arrowhead, and crimson fletching that exudes a sinister aura. It can be crafted by a master smith at a forge. 1 Daedra heart 1 ebony ingot, 1 firewood = 24 arrows.", + "display_name": "daedric_arrow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonbone Arrow is an arrow that deals Godly damage. Its visual design is pale and jagged, with a sturdy wooden shaft, sharp dragon bone tip, and dark feather fletching.. It can be crafted by a master smith at a forge. 1 Dragonbone, 1 firewood = 24 arrows.", + "display_name": "dragonbone_arrow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Arrow is an arrow that deals good damage. Its visual design is angular and ornate, with a golden shaft, intricate Dwemer patterns, and sharp, mechanical-looking fletching.. It can be crafted by an adept smith at a forge. 1 dwarven ingot, 1 firewood = 24 arrows.", + "display_name": "dwarven_arrow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Arrow is an arrow that deals fantastic damage. \nIts visual design is sleek and dark, featuring a black shaft, silver-tipped arrowhead, and subtle feathered fletching.. It can be crafted by an expert smith at a forge. 1 ebony ingot, 1 firewood = 24 arrows.", + "display_name": "ebony_arrow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Arrow is an arrow that deals good damage. \nIts visual design is elegant and golden, with a slender shaft, a curved, leaf-like arrowhead, and light feathered fletching. It can be crafted by an adept smith at a forge. 1 moonstone, 1 firewood = 24 arrows.", + "display_name": "elven_arrow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Falmer Arrow is an arrow that deals good damage. \nIts visual design is crude and jagged, with a rough, bone-like shaft, a sharp, splintered tip, and primitive fletching.. It can not be crafted, but found on Falmer.", + "display_name": "falmer_arrow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Forsworn Arrow is an arrow that deals good damage. \nIts visual design is rough and tribal, with a wooden shaft, a chipped stone tip, and uneven feather fletching bound with sinew. It can not be crafted, but found on the Forsworn in the reach.", + "display_name": "forsworn_arrow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Arrow is an arrow that deals great damage. \nIts visual design is sleek and translucent, featuring a greenish shaft, a sharp, crystalline tip, and fine feathered fletching It can be crafted by an expert smith at a forge. 1 malachite, 1 firewood = 24 arrows.\"", + "display_name": "glass_arrow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nord Hero Arrow is an arrow that deals great damage. \nIts visual design is clean and refined, with a pale wooden shaft, a sharp, steel-like arrowhead, and smooth, symmetrical fletching. It can not be crafted but found on powerful Draugr.", + "display_name": "nord_hero_arrow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Arrow is an arrow that deals great damage. \nIts visual design is sturdy and intricate, with a silver-gray shaft, a sharp, engraved arrowhead, and dark, well-crafted fletching. It can be crafted by an expert smith at a forge. 1 quicksilver ingot, 1 steel ingot, 1 firewood = 24 arrows.", + "display_name": "nordic_arrow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orchish Arrow is an arrow that deals great damage. \nIts visual design is heavy and brutal, with a dark greenish shaft, a jagged, reinforced arrowhead, and rough, thick fletching. It can be crafted by an adept smith at a forge. 1 orichalcum ingot, 1 firewood = 24 arrows.", + "display_name": "orcish_arrow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Arrow is an arrow that deals standard damage. \nIts visual design is simple and practical, with a polished metal shaft, a sharp steel arrowhead, and plain feathered fletching.It can be crafted by an adept smith at a forge. 1 steel ingot, 1 firewood = 24 arrows.", + "display_name": "steel_arrow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Arrow is an arrow that deals low damage. \nIts visual design is crude and functional, with a rough wooden shaft, a simple iron tip, and basic feathered fletching. .It can be crafted by an noice smith at a forge. 1 iron ingot, 1 firewood = 24 arrows.", + "display_name": "iron_arrow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim arrow is an arrow that deals great damage. \nIts visual design is icy and crystalline, with a frosty blue shaft, a sharp stalhrim tip, and light, snow-colored fletching. .It can be crafted by an expert smith at a forge. 1 stalhrim, 1 firewood = 24 arrows.", + "display_name": "stalhrim_arrow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Bolt is an bolt that deals great damage. \nIts visual design is angular and mechanical, with a golden shaft, a sharp, intricately crafted tip, and Dwemer-inspired engravings. It can be crafted by an adept smith at a forge. 1 dwarven ingot, 1 firewood = 10 bolts.", + "display_name": "dwarven_bolt", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Bolt is an bolt that deals good damage. \nIts visual design is straightforward and functional, with a polished steel shaft, a sharp metal tip, and minimal ornamentation. It can be crafted by an adept smith at a forge. 1 steel ingot, 1 firewood = 10 bolts.", + "display_name": "steel_bolt", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Forsworn Armor has basic protection quality. Its visual design is rough and tribal, made of fur, leather, and bone, with a primitive and rugged appearance. It can not be crafted.", + "display_name": "forsworn_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Forsworn Boots have basic protection quality. Their visual design is crude and simplistic, crafted from rough leather and fur for basic coverage. They can not be crafted.", + "display_name": "forsworn_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Forsworn Gauntlets have basic protection quality. Their visual design is primitive, made of leather straps and bone for a rough, utilitarian look. They can not be crafted.", + "display_name": "forsworn_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Forsworn Helmet has basic protection quality. Its visual design is tribal, featuring a bone structure with antler-like protrusions and fur accents. It can not be crafted.", + "display_name": "forsworn_headdress", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fur Armor has basic protection quality. Its visual design is rough and weathered, made of stitched animal pelts and leather. An Adept smith can craft it.It can be tempered/improved by using leather at a workbench.", + "display_name": "fur_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fur Shoes have basic protection quality. Their visual design is simple and functional, made of tanned leather and fur for warmth. An Adept smith can craft it.It can be tempered/improved by using leather at a workbench.", + "display_name": "fur_shoes", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fur Gauntlets have basic protection quality. Their visual design is rugged and stitched, made from scraps of fur and leather. They can not be crafted. An Adept smith can craft it.It can be tempered/improved by using leather at a workbench.", + "display_name": "fur_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fur Helmet has basic protection quality. Its visual design is crude and practical, crafted from animal pelts with fur-lined edges. It can be tempered/improved by using leather at a workbench.", + "display_name": "fur_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fur Bracers have basic protection quality. Their visual design is minimal, with strips of fur and leather bound for light coverage. They can not be crafted. It can be tempered/improved by using leather at a workbench.", + "display_name": "fur_bracers", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampire Armor has basic protection quality. Its visual design is dark and gothic, featuring sleek leather with subtle, blood-red accents. It can not be crafted. An Adept smith can craft it.It can be tempered/improved by using leather at a workbench.", + "display_name": "vampire_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampire Gauntlets have basic protection quality. Their visual design is sleek and refined, crafted from dark leather with minimal ornamentation. They can not be crafted. An Adept smith can craft it.It can be tempered/improved by using leather at a workbench.", + "display_name": "vampire_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampire Boots have basic protection quality. Their visual design is simple and elegant, made of dark leather with a slim, fitted appearance. They can not be crafted. An Adept smith can craft it.It can be tempered/improved by using leather at a workbench.", + "display_name": "vampire_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampire Gloves have basic protection quality. Their visual design is thin and fitted, made of smooth leather for a subtle, understated look. They can not be crafted. An Adept smith can craft it.It can be tempered/improved by using leather at a workbench.", + "display_name": "vampire_gloves", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampire Hood has basic protection quality. Its visual design is shadowy and mysterious, crafted from dark fabric to conceal the wearer’s face. It can not be crafted. An Adept smith can craft it.It can be tempered/improved by using leather at a workbench.", + "display_name": "vampire_hood", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampire Robes have basic protection quality. Their visual design is short and black robes, featuring dark, tattered fabric with blood-red accents. They can not be crafted. An Adept smith can craft it.It can be tempered/improved by using leather at a workbench.", + "display_name": "vampire_robes", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Thalmor Robes have basic protection quality. Their visual design is formal and authoritative, featuring black fabric with gold trim and a high collar. They can not be crafted. An Adept smith can craft it.It can be tempered/improved by using refined moonstone at a workbench.", + "display_name": "thalmor_robes", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Thalmor Boots have basic protection quality. Their visual design is sleek and polished, made of black leather with a refined appearance. They can not be crafted. It can be tempered/improved by using refined moonstone at a workbench.", + "display_name": "thalmor_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Thalmor Gloves have basic protection quality. Their visual design is elegant and fitted, crafted from smooth black leather for a sophisticated look. They can not be crafted. It can be tempered/improved by using refined moonstone at a workbench.", + "display_name": "thalmor_gloves", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnguard Armor has good protection quality. Its visual design is rugged and utilitarian, featuring reinforced leather and metal plates with a worn, battle-ready look. It can not be crafted. It can be tempered/improved by using steel at a workbench.", + "display_name": "dawnguard_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnguard Boots have good protection quality. Their visual design is sturdy and practical, made of thick leather with metal reinforcements. They can not be crafted. It can be tempered/improved by using steel at a workbench.", + "display_name": "dawnguard_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnguard Gauntlets have good protection quality. Their visual design is robust and functional, crafted from reinforced leather and riveted metal for durability. They can not be crafted. It can be tempered/improved by using steel at a workbench.", + "display_name": "dawnguard_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnguard Helmet has good protection quality. Its visual design is protective and angular, made of leather and metal with a distinctive, practical shape. It can not be crafted. It can be tempered/improved by using steel at a workbench.", + "display_name": "dawnguard_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnguard Heavy Armor has good protection quality. Its visual design is rugged and fortified, featuring thick metal plating over leather with an imposing, battle-hardened appearance. It can not be crafted. It can be tempered/improved by using steel at a workbench.", + "display_name": "dawnguard_heavy_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnguard Heavy Boots have good protection quality. Their visual design is durable and reinforced, made of sturdy leather with heavy metal guards for added protection. They can not be crafted. It can be tempered/improved by using steel at a workbench.", + "display_name": "dawnguard_heavy_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnguard Heavy Gauntlets have good protection quality. Their visual design is robust and defensive, with reinforced metal plates over leather for maximum durability. They can not be crafted. It can be tempered/improved by using steel at a workbench.", + "display_name": "dawnguard_heavy_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnguard Full Helmet has good protection quality. Its visual design is heavy and protective, covering the entire head with a solid metal structure and a distinct, angular visor. It can not be crafted. It can be tempered/improved by using steel at a workbench.", + "display_name": "dawnguard_full_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnguard Shield has good protection quality. Its visual design is solid and reliable, featuring a round metal surface with leather bindings for a defensive look. It can not be crafted. It can be tempered/improved by using steel at a workbench.", + "display_name": "dawnguard_shield", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancient Nord Armor has good protection quality. Its visual design is heavy and battle-worn, with darkened metal plates adorned with Nordic carvings and reinforced with leather bindings. It can not be crafted. Can only be crafted at the Skyforge, 5 steel ingots, 2 iron ingots, 2 leather, 4 leather strips. It can be tempered/improved by using iron at a workbench.", + "display_name": "ancient_nord_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancient Nord Boots have good protection quality. Their visual design is sturdy and weathered, featuring thick leather and reinforced metal plates built to endure harsh conditions. Can only be crafted at the Skyforge, 4 steel ingots, 2 iron ingots, 2 leather, 3 leather strips. It can be tempered/improved by using iron at a workbench.", + "display_name": "ancient_nord_boots", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancient Nord Gauntlets have good protection quality. Their visual design is robust and practical, made of aged metal with etched patterns and leather straps for a firm fit. Can only be crafted at the Skyforge, 3 steel ingots, 2 iron ingots, 2 leather, 3 leather strips. It can be tempered/improved by using iron at a workbench.", + "display_name": "ancient_nord_gauntlets", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancient Nord Helmet has good protection quality. Its visual design is iconic and imposing, with a horned metal design etched with Nordic symbols and a worn, battle-hardened finish. Can only be crafted at the Skyforge, 3 steel ingots, 2 iron ingots, 2 leather, 3 leather strips. It can be tempered/improved by using iron at a workbench.", + "display_name": "ancient_nord_helmet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hide Armor is a basic hide chest piece with little protection quality. \nIts visual design is rough and primitive, made of light, tanned animal hides bound together with crude stitching. You do not know how to craft it, but a blacksmith would.", + "display_name": "hide_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hide Boots are are a pair of hide boots with little protection quality.\nIts visual design is rough and primitive, made of light, tanned animal hides bound together with crude stitching. You do not know how to craft it, but a blacksmith would.", + "display_name": "hide_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hide Bracers are are a pair of hide bracers with little protection quality. \nIts visual design is rough and primitive, made of light, tanned animal hides bound together with crude stitching.You do not know how to craft it, but a blacksmith would.", + "display_name": "hide_bracers", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hide Helmet is a basic hide helmet with little protection quality. \nIts visual design is rough and primitive, made of light, tanned animal hides bound together with crude stitching.You do not know how to craft it, but a blacksmith would.", + "display_name": "hide_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hide Shield is a basic hide shield with little protection quality. You do not know how to craft it, but a blacksmith would.", + "display_name": "hide_shield", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Studded Armor is a basic studded hide chest piece with little protection quality. Its visual design is rough and primitive, made of light, tanned animal hides and iron studs bound together with crude stitching. You do not know how to craft it, but a blacksmith would.", + "display_name": "studded_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Leather Armor is a basic leather chest piece with basic protection quality. Its visual design is simple and flexible, with dark, weathered leather panels stitched together for mobility and basic protection. You do not know how to craft it, but a blacksmith would.", + "display_name": "leather_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Leather Boots are a pair of leather boots with basic protection quality. Its visual design is simple and flexible, with dark, weathered leather panels stitched together for mobility and basic protection. You do not know how to craft it, but a blacksmith would.", + "display_name": "leather_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Leather Bracers are a pair of leather bracers with basic protection quality. Its visual design is simple and flexible, with dark, weathered leather panels stitched together for mobility and basic protection. You do not know how to craft it, but a blacksmith would.", + "display_name": "leather_bracers", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Leather Helmet is a basic leather helmet with basic protection quality. Its visual design is simple and flexible, with dark, weathered leather panels stitched together for mobility and basic protection. You do not know how to craft it, but a blacksmith would.", + "display_name": "leather_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chitin Armor is a basic chitin chest piece with good protection quality. Its visual design is organic and jagged, with dark, shell-like plates and a rough, natural texture. You do not know how to craft it, but a blacksmith would.", + "display_name": "chitin_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chitin Boots are a pair of chitin boots with good protection quality. Its visual design is organic and jagged, with dark, shell-like plates and a rough, natural texture. You do not know how to craft it, but a blacksmith would.", + "display_name": "chitin_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chitin Bracers are a pair of chitin bracers with good protection quality. Its visual design is organic and jagged, with dark, shell-like plates and a rough, natural texture. You do not know how to craft it, but a blacksmith would.", + "display_name": "chitin_bracers", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chitin Helmet is a basic chitin helmet with good protection quality. Its visual design is organic and jagged, with dark, shell-like plates and a rough, natural texture. You do not know how to craft it, but a blacksmith would.", + "display_name": "chitin_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chitin Shield is a basic chitin shield with good protection quality. Its visual design is organic and jagged, with dark, shell-like plates and a rough, natural texture. You do not know how to craft it, but a blacksmith would.", + "display_name": "chitin_shield", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scaled Armor is a basic scaled chest piece with good protection quality. \nIts visual design is sleek and layered, resembling overlapping metallic scales with a polished, reflective surface. You do not know how to craft it, but a blacksmith would.", + "display_name": "scaled_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scaled Boots are a pair of scaled boots with good protection quality. \nIts visual design is sleek and layered, resembling overlapping metallic scales with a polished, reflective surface. You do not know how to craft it, but a blacksmith would.", + "display_name": "scaled_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scaled Bracers are a pair of scaled bracers with good protection quality. \nIts visual design is sleek and layered, resembling overlapping metallic scales with a polished, reflective surface. You do not know how to craft it, but a blacksmith would.", + "display_name": "scaled_bracers", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scaled Helmet is a basic scaled helmet with good protection quality.You do not know how to craft it, but a blacksmith would.", + "display_name": "scaled_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Banded Iron Armor is a basic scaled chest piece with basic protection quality. Its visual design is rugged and reinforced, combining dark, weathered metal with additional banded plates for extra protection. You do not know how to craft it, but a blacksmith would.", + "display_name": "banded_iron_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hide Shield is a basic hide shield with little protection quality. Its visual design is rugged and reinforced, combining dark, weathered metal with additional banded plates for extra protection. You do not know how to craft it, but a blacksmith would.", + "display_name": "banded_iron_shield", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bonemold Armor is a basic bonemold chest piece with basic protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. You do not know how to craft it, but a blacksmith would.", + "display_name": "bonemold_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bonemold Armor is a basic bonemold chest piece with basic protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. You do not know how to craft it, but a blacksmith would.", + "display_name": "bonemold_guard_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bonemold Armor is a basic bonemold chest piece with basic protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. You do not know how to craft it, but a blacksmith would.", + "display_name": "bonemold_pauldron_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bonemold Boots are a pair of bonemold boots with basic protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. You do not know how to craft it, but a blacksmith would.", + "display_name": "bonemold_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bonemold Gauntlets are a pair of bonemold bracers withbasic protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. You do not know how to craft it, but a blacksmith would.", + "display_name": "bonemold_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bonemold Helmet is a basic bonemold helmet with basic protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. You do not know how to craft it, but a blacksmith would.", + "display_name": "bonemold_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bonemold Shield is a basic bonemold helmet with basic protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. You do not know how to craft it, but a blacksmith would.", + "display_name": "bonemold_shield", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Improved Bonemold Armor is a basic bonemold chest piece with good protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. You do not know how to craft it, but a blacksmith would.", + "display_name": "improved_bonemold_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Improved Bonemold Boots are a basic bonemold pair of boots with good protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. You do not know how to craft it, but a blacksmith would.", + "display_name": "improved_bonemold_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Improved Bonemold Gauntlets are a basic bonemold pair of gauntlets with good protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape.You do not know how to craft it, but a blacksmith would.", + "display_name": "improved_bonemold_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Improved Bonemold Helmet is a basic bonemold helmet with good protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. You do not know how to craft it, but a blacksmith would.", + "display_name": "improved_bonemold_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Improved Bonemold Shield is a basic bonemold shield with good protection quality. \nIts visual design is rough and organic, with a tan, bone-like texture reinforced by dark bindings and a utilitarian shape. You do not know how to craft it, but a blacksmith would.", + "display_name": "improved_bonemold_shield", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Armor is a basic iron chest piece with basic protection quality. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes. You do not know how to craft it, but a blacksmith would.", + "display_name": "iron_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Improved Iron Boots are a basic iron pair of boots with basic protection quality. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes.You do not know how to craft it, but a blacksmith would.", + "display_name": "iron_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Gauntlets are a basic iron pair of gauntlets with basic protection quality. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes. You do not know how to craft it, but a blacksmith would.", + "display_name": "iron_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Helmet is a basic iron helmet with basic protection quality. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes. You do not know how to craft it, but a blacksmith would.", + "display_name": "iron_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Shield is a basic iron shield with basic protection quality. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes. You do not know how to craft it, but a blacksmith would.", + "display_name": "iron_shield", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Sword is a basic iron weapon which deals low damage. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes. You do not know how to craft it, but a blacksmith would.", + "display_name": "iron_sword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron War Axe is a sturdy iron weapon which deals low damage. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes. You do not know how to craft it, but a blacksmith would.", + "display_name": "iron_war_axe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Dagger is a light iron weapon which deals low damage. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes.You do not know how to craft it, but a blacksmith would.", + "display_name": "iron_dagger", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Mace is a blunt iron weapon which deals low damage. You do not know how to craft it, but a blacksmith would.", + "display_name": "iron_mace", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Greatsword is a two-handed iron weapon which deals low damage. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes. You do not know how to craft it, but a blacksmith would.", + "display_name": "iron_greatsword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Battleaxe is a heavy iron weapon which deals low damage. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes. You do not know how to craft it, but a blacksmith would.", + "display_name": "iron_battleaxe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Warhammer is a massive iron weapon which deals low damage. Its visual design is crude and basic, with a dark, weathered appearance and simple, utilitarian shapes.You do not know how to craft it, but a blacksmith would.", + "display_name": "iron_warhammer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Armor is a basic steel chest piece with good protection quality. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality.You do not know how to craft it, but a blacksmith would.", + "display_name": "steel_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Boots are a pair of steel boots with good protection quality. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. You do not know how to craft it, but a blacksmith would.", + "display_name": "steel_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Gauntlets are a pair of steel gauntlets with good protection quality. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. You do not know how to craft it, but a blacksmith would.", + "display_name": "steel_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Helmet is a basic steel helmet with good protection quality. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. You do not know how to craft it, but a blacksmith would.", + "display_name": "steel_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Shield is a basic steel shield with good protection quality. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. You do not know how to craft it, but a blacksmith would.", + "display_name": "steel_shield", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Sword is a basic steel weapon which deals average damage. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. You do not know how to craft it, but a blacksmith would.", + "display_name": "steel_sword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel War Axe is a sturdy steel weapon which deals average damage.Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. You do not know how to craft it, but a blacksmith would.", + "display_name": "steel_war_axe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Dagger is a light steel weapon which deals average damage. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. You do not know how to craft it, but a blacksmith would.", + "display_name": "steel_dagger", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Mace is a blunt steel weapon which deals average damage. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. You do not know how to craft it, but a blacksmith would.", + "display_name": "steel_mace", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Greatsword is a two-handed steel weapon which deals average damage. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. You do not know how to craft it, but a blacksmith would.", + "display_name": "steel_greatsword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Battleaxe is a heavy steel weapon which deals average damage. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. You do not know how to craft it, but a blacksmith would.", + "display_name": "steel_battleaxe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Warhammer is a massive steel weapon which deals average damage. Its visual design is straightforward and functional, with a polished silver-gray finish and minimal ornamentation focused on practicality. You do not know how to craft it, but a blacksmith would.", + "display_name": "steel_warhammer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Armor is a basic dwarven chest piece with good protection quality. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns.You do not know how to craft it, but a blacksmith would.", + "display_name": "dwarven_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Boots are a pair of dwarven boots with good protection quality. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. You do not know how to craft it, but a blacksmith would.", + "display_name": "dwarven_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Gauntlets are a pair of dwarven gauntlets with good protection quality. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. You do not know how to craft it, but a blacksmith would.", + "display_name": "dwarven_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Helmet is a basic dwarven helmet with good protection quality. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns.You do not know how to craft it, but a blacksmith would.", + "display_name": "dwarven_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Shield is a basic dwarven shield with good protection quality. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. You do not know how to craft it, but a blacksmith would.", + "display_name": "dwarven_shield", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Sword is a basic dwarven weapon which deals good damage. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. You do not know how to craft it, but a blacksmith would.", + "display_name": "dwarven_sword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven War Axe is a sturdy dwarven weapon which deals good damage. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. You do not know how to craft it, but a blacksmith would.", + "display_name": "dwarven_war_axe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Dagger is a light dwarven weapon which deals good damage. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. You do not know how to craft it, but a blacksmith would.", + "display_name": "dwarven_dagger", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Mace is a blunt dwarven weapon which deals good damage. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns.You do not know how to craft it, but a blacksmith would.", + "display_name": "dwarven_mace", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Greatsword is a two-handed dwarven weapon which deals good damage. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. You do not know how to craft it, but a blacksmith would.", + "display_name": "dwarven_greatsword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Battleaxe is a heavy dwarven weapon which deals good damage. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. You do not know how to craft it, but a blacksmith would.", + "display_name": "dwarven_battleaxe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Warhammer is a massive dwarven weapon which deals good damage. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. You do not know how to craft it, but a blacksmith would.", + "display_name": "dwarven_warhammer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Bow is a ranged dwarven weapon which deals good damage. Its visual design is angular and ornate, with a golden-bronze finish and intricate mechanical patterns. You do not know how to craft it, but a blacksmith would.", + "display_name": "dwarven_bow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Plate Armor is a basic steel plate chest piece with good protection quality. Its visual design is robust and practical, with polished steel surfaces and reinforced plates that emphasize durability and function. You do not know how to craft it, but a blacksmith would.", + "display_name": "steel_plate_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Plate Boots are a pair of steel plate boots with good protection quality. Its visual design is robust and practical, with polished steel surfaces and reinforced plates that emphasize durability and function. You do not know how to craft it, but a blacksmith would.", + "display_name": "steel_plate_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Plate Gauntlets are a pair of steel plate gauntlets with good protection quality. Its visual design is robust and practical, with polished steel surfaces and reinforced plates that emphasize durability and function. You do not know how to craft it, but a blacksmith would.", + "display_name": "steel_plate_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Plate Helmet is a basic steel plate helmet with good protection quality. Its visual design is robust and practical, with polished steel surfaces and reinforced plates that emphasize durability and function.You do not know how to craft it, but a blacksmith would.", + "display_name": "steel_plate_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Plate Shield is a basic steel plate shield with good protection quality. Its visual design is robust and practical, with polished steel surfaces and reinforced plates that emphasize durability and function. You do not know how to craft it, but a blacksmith would.", + "display_name": "steel_plate_shield", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Carved Armor is a basic Nordic carved chest piece with great protection quality. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "nordic_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Carved Boots are a pair of Nordic carved boots with great protection quality. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "nordic_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Carved Gauntlets are a pair of Nordic carved gauntlets with great protection quality. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "nordic_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Carved Helmet is a basic Nordic carved helmet with great protection quality. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "nordic_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Shield is a basic Nordic shield with great protection quality. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "nordic_shield", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Sword is a basic Nordic weapon which deals good damage. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "nordic_sword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic War Axe is a sturdy Nordic weapon which deals good damage. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship.You do not know how to craft it, but a blacksmith would.", + "display_name": "nordic_war_axe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Dagger is a light Nordic weapon which deals good damage. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "nordic_dagger", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Mace is a blunt Nordic weapon which deals good damage. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "nordic_mace", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Greatsword is a two-handed Nordic weapon which deals good damage. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "nordic_greatsword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Battleaxe is a heavy Nordic weapon which deals good damage.Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "nordic_battleaxe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Warhammer is a massive Nordic weapon which deals good damage. Its visual design is sturdy and weathered, with a silver-gray finish and intricate Nordic engravings that evoke ancient craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "nordic_warhammer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Bow is a ranged Nordic weapon which deals good damage.You do not know how to craft it, but a blacksmith would.", + "display_name": "nordic_bow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Armor is a basic Orcish chest piece with great protection quality. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength.You do not know how to craft it, but a blacksmith would.", + "display_name": "orchish_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Boots are a pair of Orcish boots with great protection quality. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. You do not know how to craft it, but a blacksmith would.", + "display_name": "orchish_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Gauntlets are a pair of Orcish gauntlets with great protection quality. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. You do not know how to craft it, but a blacksmith would.", + "display_name": "orchish_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Helmet is a basic Orcish helmet with great protection quality. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. You do not know how to craft it, but a blacksmith would.", + "display_name": "orchish_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Shield is a basic Orcish shield with great protection quality. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. You do not know how to craft it, but a blacksmith would.", + "display_name": "orchish_shield", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Sword is a basic Orcish weapon which deals good damage. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. You do not know how to craft it, but a blacksmith would.", + "display_name": "orchish_sword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish War Axe is a sturdy Orcish weapon which deals good damage. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. You do not know how to craft it, but a blacksmith would.", + "display_name": "orchish_war_axe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Dagger is a light Orcish weapon which deals good damage. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. You do not know how to craft it, but a blacksmith would.", + "display_name": "orchish_dagger", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Mace is a blunt Orcish weapon which deals good damage. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. You do not know how to craft it, but a blacksmith would.", + "display_name": "orchish_mace", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Greatsword is a two-handed Orcish weapon which deals good damage. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. You do not know how to craft it, but a blacksmith would.", + "display_name": "orchish_greatsword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Battleaxe is a heavy Orcish weapon which deals good damage. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength.You do not know how to craft it, but a blacksmith would.", + "display_name": "orchish_battleaxe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Warhammer is a massive Orcish weapon which deals good damage. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. You do not know how to craft it, but a blacksmith would.", + "display_name": "orchish_warhammer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcish Bow is a ranged Orcish weapon which deals good damage. Its visual design is heavy and brutal, with a rough, greenish hue and primitive, rugged details that emphasize raw strength. You do not know how to craft it, but a blacksmith would.", + "display_name": "orchish_bow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Armor is a basic ebony chest piece with fantastic protection quality. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "ebony_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Boots are a pair of ebony boots with fantastic protection quality. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "ebony_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Gauntlets are a pair of ebony gauntlets with fantastic protection quality. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "ebony_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Helmet is a basic ebony helmet with fantastic protection quality. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "ebony_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Shield is a basic ebony shield with fantastic protection quality. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance.You do not know how to craft it, but a blacksmith would.", + "display_name": "ebony_shield", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Sword is a basic ebony weapon which deals fantastic damage. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "ebony_sword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony War Axe is a sturdy ebony weapon which deals fantastic damage. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "ebony_war_axe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Dagger is a light ebony weapon which deals fantastic damage. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "ebony_dagger", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Mace is a blunt ebony weapon which deals fantastic damage. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "ebony_mace", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Greatsword is a two-handed ebony weapon which deals fantastic damage. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "ebony_greatsword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Battleaxe is a heavy ebony weapon which deals fantastic damage. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "ebony_battleaxe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Warhammer is a massive ebony weapon which deals fantastic damage. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "ebony_warhammer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Warhammer is a massive ebony weapon which deals fantastic damage. \nIts visual design is sleek and black, with smooth, angular lines and silver accents that give it a refined yet intimidating appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "ebony_bow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Armor has fantastic protection quality. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. You do not know how to craft it, but a blacksmith would.", + "display_name": "stalhrim_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Boots have fantastic protection quality. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding.You do not know how to craft it, but a blacksmith would.", + "display_name": "stalhrim_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Gauntlets have fantastic protection quality. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. You do not know how to craft it, but a blacksmith would.", + "display_name": "stalhrim_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Helmet has fantastic protection quality. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. You do not know how to craft it, but a blacksmith would.", + "display_name": "stalhrim_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Shield is a basic stalhrim shield with fantastic protection quality. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. You do not know how to craft it, but a blacksmith would.", + "display_name": "stalhrim_shield", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Sword is a basic stalhrim weapon which deals fantastic damage. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. You do not know how to craft it, but a blacksmith would.", + "display_name": "stalhrim_sword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim War Axe is a sturdy stalhrim weapon which deals fantastic damage. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. You do not know how to craft it, but a blacksmith would.", + "display_name": "stalhrim_war_axe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Dagger is a light stalhrim weapon which deals fantastic damage. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding.You do not know how to craft it, but a blacksmith would.", + "display_name": "stalhrim_dagger", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Mace is a blunt stalhrim weapon which deals fantastic damage. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. You do not know how to craft it, but a blacksmith would.", + "display_name": "stalhrim_mace", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Greatsword is a two-handed stalhrim weapon which deals fantastic damage. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. You do not know how to craft it, but a blacksmith would.", + "display_name": "stalhrim_greatsword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Battleaxe is a heavy stalhrim weapon which deals fantastic damage. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding.You do not know how to craft it, but a blacksmith would.", + "display_name": "stalhrim_battleaxe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Warhammer is a massive stalhrim weapon which deals fantastic damage. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. You do not know how to craft it, but a blacksmith would.", + "display_name": "stalhrim_warhammer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Bow is a ranged stalhrim weapon which deals fantastic damage. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. You do not know how to craft it, but a blacksmith would.", + "display_name": "stalhrim_bow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonplate Armor has brilliant protection quality. \nIts visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "dragonplate_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonplate Boots have brilliant protection quality. \nIts visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance.You do not know how to craft it, but a blacksmith would.", + "display_name": "dragonplate_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonplate Gauntlets have brilliant protection quality. \nIts visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance.You do not know how to craft it, but a blacksmith would.", + "display_name": "dragonplate_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonplate Helmet has brilliant protection quality. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "dragonplate_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonplate Shield has brilliant protection quality. \nIts visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. You do not know how to craft it, but a blacksmith would..", + "display_name": "dragonplate_shield", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Armor has Godly protection quality. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura.You do not know how to craft it, but a blacksmith would.", + "display_name": "daedric_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Boots have Godly protection quality. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. You do not know how to craft it, but a blacksmith would.", + "display_name": "daedric_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Gauntlets have Godly protection quality. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. You do not know how to craft it, but a blacksmith would.", + "display_name": "daedric_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Helmet has Godly protection quality. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. You do not know how to craft it, but a blacksmith would.", + "display_name": "daedric_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Shield has Godly protection quality. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. You do not know how to craft it, but a blacksmith would.", + "display_name": "daedric_shield", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Sword is a basic Daedric weapon which deals Godly damage. You do not know how to craft it, but a blacksmith would.", + "display_name": "daedric_sword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric War Axe is a sturdy Daedric weapon which deals Godly damage. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. You do not know how to craft it, but a blacksmith would.", + "display_name": "daedric_war_axe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Dagger is a light Daedric weapon which deals Godly damage. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. You do not know how to craft it, but a blacksmith would.", + "display_name": "daedric_dagger", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Mace is a blunt Daedric weapon which deals Godly damage. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. You do not know how to craft it, but a blacksmith would.", + "display_name": "daedric_mace", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Greatsword is a two-handed Daedric weapon which deals Godly damage. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. You do not know how to craft it, but a blacksmith would.", + "display_name": "daedric_greatsword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Battleaxe is a heavy Daedric weapon which deals Godly damage. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. You do not know how to craft it, but a blacksmith would.", + "display_name": "daedric_battleaxe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Warhammer is a massive Daedric weapon which deals Godly damage. Its visual design is dark and menacing, with sharp, jagged edges and a glowing red accent that exudes a sinister aura. You do not know how to craft it, but a blacksmith would.", + "display_name": "daedric_warhammer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Bow is a ranged Daedric weapon which deals Godly damage. It can be tempered/improved by using ebony at a workbench.You do not know how to craft it, but a blacksmith would.", + "display_name": "daedric_bow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Gilded Armor has good protection quality. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "elven_gilded_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Armor has good protection quality. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship.You do not know how to craft it, but a blacksmith would.", + "display_name": "elven_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Boots have good protection quality. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "elven_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Gauntlets have good protection quality.You do not know how to craft it, but a blacksmith would.", + "display_name": "elven_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Helmet has good protection quality. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "elven_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Shield has good protection quality. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "elven_shield", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Sword is a basic Elven weapon which deals good damage. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "elven_sword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven War Axe is a sturdy Elven weapon which deals good damage. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "elven_war_axe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Dagger is a light Elven weapon which deals good damage. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship.You do not know how to craft it, but a blacksmith would.", + "display_name": "elven_dagger", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Mace is a blunt Elven weapon which deals good damage. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship You do not know how to craft it, but a blacksmith would.", + "display_name": "elven_mace", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Greatsword is a two-handed Elven weapon which deals good damage. \nIts visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship You do not know how to craft it, but a blacksmith would.", + "display_name": "elven_greatsword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Battleaxe is a heavy Elven weapon which deals good damage. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "elven_battleaxe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Warhammer is a massive Elven weapon which deals good damage. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "elven_warhammer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Bow is a ranged Elven weapon which deals good damage. Its visual design is elegant and golden, with smooth curves and intricate patterns that reflect refined craftsmanship. You do not know how to craft it, but a blacksmith would.", + "display_name": "elven_bow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Light Armor is a basic stalhrim chest piece with fantastic protection quality. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding.You do not know how to craft it, but a blacksmith would.", + "display_name": "stalhrim_light_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Light Boots are a pair of stalhrim boots with fantastic protection quality. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. You do not know how to craft it, but a blacksmith would.", + "display_name": "stalhrim_light_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Light Bracers are a pair of stalhrim bracers with fantastic protection quality. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. You do not know how to craft it, but a blacksmith would.", + "display_name": "stalhrim_light_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Light Helmet is a basic stalhrim helmet with fantastic protection quality. Its visual design is icy and crystalline, with a frosty blue sheen that appears cold and unyielding. You do not know how to craft it, but a blacksmith would.", + "display_name": "stalhrim_light_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Armor has fantastic protection quality. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. You do not know how to craft it, but a blacksmith would.", + "display_name": "glass_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Boots have fantastic protection quality. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. You do not know how to craft it, but a blacksmith would.", + "display_name": "glass_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Gauntlets have fantastic protection quality. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite.You do not know how to craft it, but a blacksmith would.", + "display_name": "glass_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Helmet has fantastic protection quality. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. You do not know how to craft it, but a blacksmith would.", + "display_name": "glass_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Shield has fantastic protection quality. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. You do not know how to craft it, but a blacksmith would.", + "display_name": "glass_shield", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Sword is a basic glass weapon which deals fantastic damage. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. You do not know how to craft it, but a blacksmith would.", + "display_name": "glass_sword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass War Axe is a sturdy glass weapon which deals fantastic damage. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. You do not know how to craft it, but a blacksmith would.", + "display_name": "glass_war_axe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Dagger is a light glass weapon which deals fantastic damage. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. You do not know how to craft it, but a blacksmith would.", + "display_name": "glass_dagger", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Mace is a blunt glass weapon which deals fantastic damage. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite.You do not know how to craft it, but a blacksmith would.", + "display_name": "glass_mace", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Greatsword is a two-handed glass weapon which deals fantastic damage. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. You do not know how to craft it, but a blacksmith would.", + "display_name": "glass_greatsword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Battleaxe is a heavy glass weapon which deals fantastic damage. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. You do not know how to craft it, but a blacksmith would.", + "display_name": "glass_battleaxe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Warhammer is a massive glass weapon which deals fantastic damage. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. You do not know how to craft it, but a blacksmith would.", + "display_name": "glass_warhammer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Bow is a ranged glass weapon which deals fantastic damage. Its visual design is sleek and translucent, with sharp edges and a greenish hue resembling polished malachite. You do not know how to craft it, but a blacksmith would.", + "display_name": "glass_bow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonscale Armor has brilliant protection quality. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "dragonscale_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonscale Boots have brilliant protection quality. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "dragonscale_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonscale Gauntlets have brilliant protection quality. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "dragonscale_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonscale Helmet has brilliant protection quality. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "dragonscale_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonscale Shield has brilliant protection quality. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "dragonscale_shield", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonbone Sword is a basic Dragonbone weapon which deals brilliant damage. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "dragonbone_sword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonbone War Axe is a sturdy Dragonbone weapon which deals brilliant damage. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "dragonbone_war_axe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonbone Dagger is a light Dragonbone weapon which deals brilliant damage. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "dragonbone_dagger", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonbone Mace is a blunt Dragonbone weapon which deals brilliant damage. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "dragonbone_mace", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonbone Greatsword is a two-handed Dragonbone weapon which deals brilliant damage. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "dragonbone_greatsword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonbone Battleaxe is a heavy Dragonbone weapon which deals brilliant damage. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "dragonbone_battleaxe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonbone Warhammer is a massive Dragonbone weapon which deals brilliant damage. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "dragonbone_warhammer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonbone Bow is a ranged Dragonbone weapon which deals brilliant damage. Its visual design is pale and jagged, crafted from dragon bones with a rough, organic appearance. You do not know how to craft it, but a blacksmith would.", + "display_name": "dragonbone_bow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancient Nord Arrow is an arrow that deals low damage. Its visual design is weathered and primitive, with a rough wooden shaft, dark fletching, and a chipped, stone-like arrowhead. It can not be crafted, most likely can be found on draugr.", + "display_name": "ancient_nord_arrow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedric Arrow is an arrow that deals Godly damage. Its visual design is dark and menacing, with a black shaft, jagged red-tipped arrowhead, and crimson fletching that exudes a sinister aura. You do not know how to craft it, but a blacksmith would.", + "display_name": "daedric_arrow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonbone Arrow is an arrow that deals Godly damage. Its visual design is pale and jagged, with a sturdy wooden shaft, sharp dragon bone tip, and dark feather fletching. You do not know how to craft it, but a blacksmith would.", + "display_name": "dragonbone_arrow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Arrow is an arrow that deals good damage. Its visual design is angular and ornate, with a golden shaft, intricate Dwemer patterns, and sharp, mechanical-looking fletching. You do not know how to craft it, but a blacksmith would.", + "display_name": "dwarven_arrow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony Arrow is an arrow that deals fantastic damage. \nIts visual design is sleek and dark, featuring a black shaft, silver-tipped arrowhead, and subtle feathered fletching You do not know how to craft it, but a blacksmith would.", + "display_name": "ebony_arrow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elven Arrow is an arrow that deals good damage. \nIts visual design is elegant and golden, with a slender shaft, a curved, leaf-like arrowhead, and light feathered fletching. You do not know how to craft it, but a blacksmith would.", + "display_name": "elven_arrow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Falmer Arrow is an arrow that deals good damage. \nIts visual design is crude and jagged, with a rough, bone-like shaft, a sharp, splintered tip, and primitive fletching.. You do not know how to craft it, but a blacksmith would.", + "display_name": "falmer_arrow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Forsworn Arrow is an arrow that deals good damage. \nIts visual design is rough and tribal, with a wooden shaft, a chipped stone tip, and uneven feather fletching bound with sinew. You do not know how to craft it, but a blacksmith would.", + "display_name": "forsworn_arrow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Arrow is an arrow that deals great damage. \nIts visual design is sleek and translucent, featuring a greenish shaft, a sharp, crystalline tip, and fine feathered fletching You do not know how to craft it, but a blacksmith would.", + "display_name": "glass_arrow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nord Hero Arrow is an arrow that deals great damage. \nIts visual design is clean and refined, with a pale wooden shaft, a sharp, steel-like arrowhead, and smooth, symmetrical fletching. It can not be crafted but found on powerful Draugr.", + "display_name": "nord_hero_arrow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Arrow is an arrow that deals great damage. \nIts visual design is sturdy and intricate, with a silver-gray shaft, a sharp, engraved arrowhead, and dark, well-crafted fletching. You do not know how to craft it, but a blacksmith would.", + "display_name": "nordic_arrow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orchish Arrow is an arrow that deals great damage. \nIts visual design is heavy and brutal, with a dark greenish shaft, a jagged, reinforced arrowhead, and rough, thick fletching. You do not know how to craft it, but a blacksmith would.", + "display_name": "orcish_arrow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Arrow is an arrow that deals standard damage. \nIts visual design is simple and practical, with a polished metal shaft, a sharp steel arrowhead, and plain feathered fletching.You do not know how to craft it, but a blacksmith would.", + "display_name": "steel_arrow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron Arrow is an arrow that deals low damage. \nIts visual design is crude and functional, with a rough wooden shaft, a simple iron tip, and basic feathered fletching. .You do not know how to craft it, but a blacksmith would.", + "display_name": "iron_arrow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim arrow is an arrow that deals great damage. \nIts visual design is icy and crystalline, with a frosty blue shaft, a sharp stalhrim tip, and light, snow-colored fletching. .You do not know how to craft it, but a blacksmith would.", + "display_name": "stalhrim_arrow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim Bolt is an bolt that deals great damage. \nIts visual design is angular and mechanical, with a golden shaft, a sharp, intricately crafted tip, and Dwemer-inspired engravings. You do not know how to craft it, but a blacksmith would.", + "display_name": "dwarven_bolt", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel Bolt is an bolt that deals good damage. \nIts visual design is straightforward and functional, with a polished steel shaft, a sharp metal tip, and minimal ornamentation. You do not know how to craft it, but a blacksmith would.", + "display_name": "steel_bolt", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Forsworn Armor has basic protection quality. Its visual design is rough and tribal, made of fur, leather, and bone, with a primitive and rugged appearance. It can not be crafted.", + "display_name": "forsworn_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Forsworn Boots have basic protection quality. Their visual design is crude and simplistic, crafted from rough leather and fur for basic coverage. They can not be crafted.", + "display_name": "forsworn_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Forsworn Gauntlets have basic protection quality. Their visual design is primitive, made of leather straps and bone for a rough, utilitarian look. They can not be crafted.", + "display_name": "forsworn_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Forsworn Helmet has basic protection quality. Its visual design is tribal, featuring a bone structure with antler-like protrusions and fur accents. It can not be crafted.", + "display_name": "forsworn_headdress", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fur Armor has basic protection quality. Its visual design is rough and weathered, made of stitched animal pelts and leather. An Adept smith can craft it.It can be tempered/improved by using leather at a workbench.", + "display_name": "fur_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fur Shoes have basic protection quality. Their visual design is simple and functional, made of tanned leather and fur for warmth. An Adept smith can craft it.It can be tempered/improved by using leather at a workbench.", + "display_name": "fur_shoes", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fur Gauntlets have basic protection quality. Their visual design is rugged and stitched, made from scraps of fur and leather. They can not be crafted. An Adept smith can craft it.It can be tempered/improved by using leather at a workbench.", + "display_name": "fur_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fur Helmet has basic protection quality. Its visual design is crude and practical, crafted from animal pelts with fur-lined edges. It can be tempered/improved by using leather at a workbench.", + "display_name": "fur_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fur Bracers have basic protection quality. Their visual design is minimal, with strips of fur and leather bound for light coverage. They can not be crafted. It can be tempered/improved by using leather at a workbench.", + "display_name": "fur_bracers", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampire Armor has basic protection quality. Its visual design is dark and gothic, featuring sleek leather with subtle, blood-red accents. It can not be crafted. An Adept smith can craft it.It can be tempered/improved by using leather at a workbench.", + "display_name": "vampire_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampire Gauntlets have basic protection quality. Their visual design is sleek and refined, crafted from dark leather with minimal ornamentation. They can not be crafted. An Adept smith can craft it.It can be tempered/improved by using leather at a workbench.", + "display_name": "vampire_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampire Boots have basic protection quality. Their visual design is simple and elegant, made of dark leather with a slim, fitted appearance. They can not be crafted. An Adept smith can craft it.It can be tempered/improved by using leather at a workbench.", + "display_name": "vampire_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampire Gloves have basic protection quality. Their visual design is thin and fitted, made of smooth leather for a subtle, understated look. They can not be crafted. An Adept smith can craft it.It can be tempered/improved by using leather at a workbench.", + "display_name": "vampire_gloves", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampire Hood has basic protection quality. Its visual design is shadowy and mysterious, crafted from dark fabric to conceal the wearer’s face. It can not be crafted. An Adept smith can craft it.It can be tempered/improved by using leather at a workbench.", + "display_name": "vampire_hood", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampire Robes have basic protection quality. Their visual design is short and black robes, featuring dark, tattered fabric with blood-red accents. They can not be crafted. An Adept smith can craft it.It can be tempered/improved by using leather at a workbench.", + "display_name": "vampire_robes", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Thalmor Robes have basic protection quality. Their visual design is formal and authoritative, featuring black fabric with gold trim and a high collar. They can not be crafted. An Adept smith can craft it.It can be tempered/improved by using refined moonstone at a workbench.", + "display_name": "thalmor_robes", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Thalmor Boots have basic protection quality. Their visual design is sleek and polished, made of black leather with a refined appearance. They can not be crafted. It can be tempered/improved by using refined moonstone at a workbench.", + "display_name": "thalmor_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Thalmor Gloves have basic protection quality. Their visual design is elegant and fitted, crafted from smooth black leather for a sophisticated look. They can not be crafted. It can be tempered/improved by using refined moonstone at a workbench.", + "display_name": "thalmor_gloves", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnguard Armor has good protection quality. Its visual design is rugged and utilitarian, featuring reinforced leather and metal plates with a worn, battle-ready look. It can not be crafted. It can be tempered/improved by using steel at a workbench.", + "display_name": "dawnguard_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnguard Boots have good protection quality. Their visual design is sturdy and practical, made of thick leather with metal reinforcements. They can not be crafted. It can be tempered/improved by using steel at a workbench.", + "display_name": "dawnguard_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnguard Gauntlets have good protection quality. Their visual design is robust and functional, crafted from reinforced leather and riveted metal for durability. They can not be crafted. It can be tempered/improved by using steel at a workbench.", + "display_name": "dawnguard_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnguard Helmet has good protection quality. Its visual design is protective and angular, made of leather and metal with a distinctive, practical shape. It can not be crafted. It can be tempered/improved by using steel at a workbench.", + "display_name": "dawnguard_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnguard Heavy Armor has good protection quality. Its visual design is rugged and fortified, featuring thick metal plating over leather with an imposing, battle-hardened appearance. It can not be crafted. It can be tempered/improved by using steel at a workbench.", + "display_name": "dawnguard_heavy_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnguard Heavy Boots have good protection quality. Their visual design is durable and reinforced, made of sturdy leather with heavy metal guards for added protection. They can not be crafted. It can be tempered/improved by using steel at a workbench.", + "display_name": "dawnguard_heavy_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnguard Heavy Gauntlets have good protection quality. Their visual design is robust and defensive, with reinforced metal plates over leather for maximum durability. They can not be crafted. It can be tempered/improved by using steel at a workbench.", + "display_name": "dawnguard_heavy_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnguard Full Helmet has good protection quality. Its visual design is heavy and protective, covering the entire head with a solid metal structure and a distinct, angular visor. It can not be crafted. It can be tempered/improved by using steel at a workbench.", + "display_name": "dawnguard_full_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnguard Shield has good protection quality. Its visual design is solid and reliable, featuring a round metal surface with leather bindings for a defensive look. It can not be crafted. It can be tempered/improved by using steel at a workbench.", + "display_name": "dawnguard_shield", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancient Nord Armor has good protection quality. Its visual design is heavy and battle-worn, with darkened metal plates adorned with Nordic carvings and reinforced with leather bindings. It can not be crafted. Can only be crafted at the Skyforge, 5 steel ingots, 2 iron ingots, 2 leather, 4 leather strips. It can be tempered/improved by using iron at a workbench.", + "display_name": "ancient_nord_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancient Nord Boots have good protection quality. Their visual design is sturdy and weathered, featuring thick leather and reinforced metal plates built to endure harsh conditions. Can only be crafted at the Skyforge, 4 steel ingots, 2 iron ingots, 2 leather, 3 leather strips. It can be tempered/improved by using iron at a workbench.", + "display_name": "ancient_nord_boots", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancient Nord Gauntlets have good protection quality. Their visual design is robust and practical, made of aged metal with etched patterns and leather straps for a firm fit. Can only be crafted at the Skyforge, 3 steel ingots, 2 iron ingots, 2 leather, 3 leather strips. It can be tempered/improved by using iron at a workbench.", + "display_name": "ancient_nord_gauntlets", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancient Nord Helmet has good protection quality. Its visual design is iconic and imposing, with a horned metal design etched with Nordic symbols and a worn, battle-hardened finish. Can only be crafted at the Skyforge, 3 steel ingots, 2 iron ingots, 2 leather, 3 leather strips. It can be tempered/improved by using iron at a workbench.", + "display_name": "ancient_nord_helmet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + } + ], + "entry_count": 474, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Armor & Weapons", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/Oghma_-_Artifacts.sknpack b/oghma-sknpack/Oghma_-_Artifacts.sknpack new file mode 100644 index 0000000..b78ba7f --- /dev/null +++ b/oghma-sknpack/Oghma_-_Artifacts.sknpack @@ -0,0 +1,1356 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Tamrielic lore from CHIM's Oghma Infinium — artifacts. Merges educated and common-knowledge entries graded by importance.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "Azura's Star is a legendary Daedric artifact linked to the Daedric Prince Azura. It functions as a reusable grand soul gem, capable of storing souls without being consumed like ordinary soul gems. This makes it an invaluable tool for enchanters and adventurers alike, as it can be used repeatedly to recharge weapons or enchant items.", + "display_name": "azura_star", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ebony Mail is a legendary Daedric artifact created by Boethiah, the Daedric Prince of deceit, treachery, and conspiracy. This enchanted ebony armor, typically a cuirass, grants its wearer resistance to fire, magical attacks, and physical blows while enabling stealthy movements and the ability to poison enemies upon close contact. Forged from the blood of Lorkhan after his heart was cast into the sea, the Ebony Mail embodies Boethiah’s cunning and deadly nature. Only individuals chosen by Boethiah can wield the artifact, as the Prince determines both its owner and duration of ownership.", + "display_name": "ebony_mail", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Rueful Axe is a Daedric artifact forged by Clavicus Vile, the Prince of bargains and twisted desires, as the result of a grim pact. This massive iron-like battleaxe, adorned with engravings of werewolves but crafted from ebony, carries a powerful enchantment that saps the strength of those it strikes and is particularly effective against beasts. The axe is a testament to Clavicus Vile's propensity for granting wishes in ways that bring misery, as its creation embodies the consequences of dark bargains.", + "display_name": "rueful_axe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Masque of Clavicus Vile is a Daedric artifact associated with Clavicus Vile, the Daedric Prince of wishes and bargains. This helm enhances the wearer's charm and popularity, making them seem more trustworthy and likable to those around them. However, like many Daedric artifacts, the Masque remains under Clavicus Vile's control and can be recalled by him at any time.\n\nOne of the most famous stories surrounding the Masque involves a noblewoman named Avalea. After being disfigured by a servant, Avalea made a pact with Clavicus Vile, receiving the Masque in exchange. Though her appearance remained unchanged, the Masque granted her admiration and respect. She eventually married a powerful baron, but a year and a day later, Clavicus Vile reclaimed the Masque. Pregnant with the baron's child, Avalea was banished, and years later, her daughter exacted vengeance by killing the baron. This tale highlights the unpredictable and often cruel nature of bargains with Clavicus Vile.", + "display_name": "masque_of_clavicus_vile", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Oghma Infinium is an ancient and powerful artifact, also known as the Tome of Power or the Book that Knows. Written by Xarxes, the scribe of the god Auri-El, the knowledge within was granted to him by the Daedric Prince Hermaeus Mora. The tome’s name derives from Oghma, a figure Xarxes created from his most cherished moments in history. This artifact contains vast, arcane knowledge that can bestow near-demi-god powers upon its reader.", + "display_name": "oghma_infinium", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Savior's Hide, also known as Hircine's Hide or the Scourge of the Oathbreaker, is a Daedric artifact associated primarily with the Daedric Prince Hircine. It was originally part of a full set of armor, but over time, the term has come to refer only to the cuirass, as the rest of the set has not been seen since the Third Era. The cuirass is known for granting the wearer resistance to magic, making it a prized item for those facing powerful sorcerers or hostile enchantments.\n\nThere are multiple origins for the Hide. One popular version claims Hircine himself gifted the Hide to the first mortal to escape his Hunting Grounds, who then fashioned it into armor. Another tale suggests that Hircine sewed the armor from the hide of a werewolf. A lesser-known tradition credits Malacath, though this version mistakenly claims the Hide made its wearer vulnerable to magic. Despite these differences, all stories agree that the Hide offers protection against the blows of oathbreakers and the Spear of Bitter Mercy.", + "display_name": "saviors_hide", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ring of Hircine is a powerful Daedric artifact created by Hircine, the Daedric Prince of the Hunt. Typically depicted as an engraved ring adorned with the image of a wolf's head, the ring grants control over the wearer's lycanthropy, allowing them to transform into a werewolf at will, bypassing the usual restrictions of the moon and bloodlust. For non-lycanthropes, the ring's effects are usually dormant, though it has been known to extend life or induce werewolf transformations. However, Hircine can curse the ring, causing unpredictable transformations for those who have not earned it.", + "display_name": "ring_of_hircine", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Volendrung, also known as the Hammer of Might, is a legendary artifact originally crafted by the Rourken clan of the Dwemer. This massive warhammer, made of Dwarven metal, was not only a formidable weapon but also a symbol of the clan's honor. When the Rourken refused to join the First Council with other Dwemer clans, their chieftain hurled Volendrung across Tamriel, declaring that the clan would settle wherever the hammer landed. It came to rest in what is now known as Hammerfell, a name derived from the Rourken’s journey and the hammer itself.\n\nDespite its Dwemer origins, Volendrung eventually became associated with the Daedric Prince Malacath, one of the Dwemer's greatest enemies. How it transitioned into a Daedric artifact is unclear, though some speculate that Malacath claimed it as a way to mock Dwemer craftsmanship or to wield one of their prized creations against them. Volendrung is known for its immense destructive power, able to demolish walls with ease and sap the strength of those it strikes, transferring that power to its wielder. Over time, the hammer has disappeared and resurfaced at various points in history, much like the Dwemer themselves.", + "display_name": "volendrung", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mehrunes' Razor, also known as the Dagger of the Final Wounds, the Bane of the Righteous, and the Kingslayer, is a deadly Daedric artifact created by Mehrunes Dagon, the Daedric Prince of Destruction. The Razor is famed for its ability to slay enemies instantly, as there is a small chance that Dagon will claim the soul of anyone struck by it. Forged from ebony and inscribed with Daedric script, the dagger has an ominous appearance and seems to absorb the very light that touches it.", + "display_name": "merhrunes_razor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ebony Blade, also known as the Vampire or the Leech, is a malevolent Daedric artifact created by the Daedric Prince Mephala. This ebony katana is infamous for its ability to absorb the life force of those it strikes, transferring their health and stamina to the wielder. It is a weapon associated with deceit, corruption, and betrayal, and has the power to silence its victims, preventing them from casting spells. In Khajiiti legends, it is referred to as \"the killing word of the Spider\" and \"the black edge of shadow,\" underscoring its sinister reputation.\n\nThroughout history, the Ebony Blade has driven its wielders to madness, corrupting their souls and leading them to commit acts of great evil. Those who use it are said to consign their souls to Oblivion, cursed by the blade's dark influence. In an attempt to prevent further destruction, a charm was cast on the blade in the Second Era, ensuring it could not remain with any one person for too long. Despite this, the Ebony Blade's bloody legacy continues, known for perverting the ambitions of those who fall under its spell.", + "display_name": "ebony_blade", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnbreaker is a sacred Daedric artifact created by the Daedric Prince Meridia, known for its radiant power and effectiveness against the undead and other corrupt beings. This longsword features a unique crystal, the Dawnstar Gem, embedded in its cross-guard, emitting holy light. Forged to \"burn away corruption and false life,\" Dawnbreaker is especially potent against Meridia's enemies, such as undead, Daedra, and werewolves. When wielded, it deals magical or fire damage and has a chance to create a fiery explosion upon killing an undead enemy, which can harm other nearby undead and cause them to flee.", + "display_name": "dawnbreaker", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Mace of Molag Bal, also known as the Vampire's Mace, is a Daedric artifact associated with Molag Bal, the Daedric Prince of Domination and Enslavement. This powerful weapon is enchanted to drain the stamina and magicka of its victims, transferring their energy to its wielder. It is also capable of sapping an enemy's strength and even trapping their soul, making it a fearsome weapon against wizards and other formidable foes. The mace is often described as a symbol of Molag Bal's power and cruelty, embodying his desire to dominate and enslave.\n\nThe origins of the Mace can be traced back to when Molag Bal tricked an Orcish blacksmith into forging it while enslaving him in Coldharbour, the Daedric Prince's plane of Oblivion. The mace is frequently granted to mortals deemed worthy by Molag Bal, who relishes the trail of death and destruction it leaves in its wake. Worshippers of Molag Bal refer to the weapon as the Master's Mace and often invoke it in their prayers and oaths.", + "display_name": "mace_of_molag_bal", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ring of Namira is a Daedric artifact associated with Namira, the Daedric Prince of darkness, decay, and repulsion. It is granted to those who perform tasks in her name and embodies her macabre themes. The ring is known for its versatile powers, including reflecting damage onto attackers or enhancing the wearer’s stamina and health when they engage in cannibalism.\n\nThroughout history, the ring has been bestowed upon notable figures who pleased Namira.", + "display_name": "ring_of_namira", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Skeleton Key is a powerful Daedric artifact linked to Nocturnal, the Daedric Prince of Night and Shadows. Though typically appearing as a key or lockpick, its form can vary. The Skeleton Key is renowned for its ability to unlock any lock, making it a coveted tool for thieves and adventurers alike. When it manifests as a lockpick, it is nearly indestructible, bypassing even the toughest barriers. However, some wizards, seeking to limit its power, placed restrictions on the Key, such as limiting its use to once per day and ensuring it never stays in the possession of one thief for long, eventually disappearing.", + "display_name": "skeleton_key", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Spellbreaker, also known as Spell Breaker, is a powerful and ancient Dwarven artifact that takes the form of a tower shield. Originally created for King Rourken of the Dwemer, the shield has been claimed by the Daedric Prince Peryite, who is associated with pestilence and order. While its exact origins are debated, some believe it was forged by a Daedric Prince. Regardless, Spellbreaker has a well-earned reputation as one of the oldest and most potent relics in Tamriel.", + "display_name": "spellbreaker", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Sanguine Rose is a Daedric artifact created by Sanguine, the Daedric Prince of Debauchery. This artifact often takes the form of a rose, though it may also appear as a wooden stave shaped like one. Despite its enchanting appearance, the Rose holds a powerful, chaotic ability: it can summon a lesser Daedra to the mortal plane. Unlike other summoned creatures controlled through Conjuration, the Daedra summoned by the Sanguine Rose acts independently, attacking anyone except the wielder.", + "display_name": "sanguine_rose", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Wabbajack is a Daedric artifact created by Sheogorath, the Daedric Prince of Madness. This distinctive staff, often adorned with engravings of angry, gaping faces, embodies the unpredictable and chaotic nature of its creator. The Wabbajack possesses the power to transform its target into a completely random creature, making it a double-edged sword in combat. While it can convert a formidable foe into a harmless animal, it may just as easily turn a weak opponent into a fearsome monster. The staff can also cause various effects, such as damage, healing, petrification, or even instant death.", + "display_name": "wabbajack", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Skull of Corruption is a powerful artifact associated with Vaermina, the Daedric Prince of Dreams and Nightmares. This staff is renowned for its ability to create a duplicate, or \"clone,\" of any target upon which it is cast. The resulting clone is compelled to attack the original, serving the caster's bidding. Legends suggest that the Skull possesses its own consciousness and can feed on the memories of those nearby, enhancing its dark powers.", + "display_name": "skull_of_corruption", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Keening is a unique dagger forged by the Dwemer Lord Kagrenac as part of a trio of legendary tools, alongside Sunder and Wraithguard, designed to control the Heart of Lorkhan.", + "display_name": "keening", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sunder is a powerful Hammer Dwemer artifact crafted by Kagrenac, designed as one of the three legendary tools used to siphon the energy from the Heart of Lorkhan.", + "display_name": "sunder", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Staff of Magnus is an ancient and powerful artifact in Tamriel, originally created by Arch-Mage Magnus, the God of Magic. It is often referred to as the Golden Staff and is believed to have served as a metaphysical battery during its creator's time in Mundus. After Magnus fled, the staff remained behind and has since been associated with various legends; some consider it a gift, others a theft, and some even view it as a test for mortals.", + "display_name": "staff_of_magnus", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wuuthrad, known as \"Storm's Tears\" in the Atmoran language, is a legendary battleaxe forged from the ebony tears of Ysgramor, the founder of the First Empire of the Nords. The axe was created during a pivotal moment in Nord history, specifically during the Night of Tears, when Ysgramor and his son, Yngol, fled to Atmora after witnessing the destruction of Saarthal, the first human city in Skyrim. Overcome with grief, Ysgramor's tears transformed into pure ebony, which Yngol, renowned as the greatest blacksmith of the Atmorans, collected and used to forge the axe aboard their ship.", + "display_name": "wuuthrad", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Auriel's Bow, also known as Auri-El's Bow, is a revered artifact associated with the elven god Auriel. It manifests as a modest elven moonstone bow but is recognized as one of the most formidable weapons in all of Tamriel. The bow draws its immense power from Aetherius, channeling energy through the sun, allowing it to transform ordinary arrows into devastating projectiles.", + "display_name": "auriels_bow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chrysamere, also known as the Chrysamere Blade or the Sword of Heroes, is an ancient adamantium claymore renowned for its extraordinary combination of offensive power and defensive capabilities. Forged in the late Merethic Era by the Breton swordsmith Asterie Bedel, Chrysamere embodies a unique blend of techniques from both human and elven craftsmanship. Its design features a distinctive \"mage's knot,\" symbolizing its deep connection to the early cultural roots of Breton society and the influence of their Elven ancestors.", + "display_name": "chrysamere", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Umbra, also known as the Umbra Sword, is a Daedric artifact created for the purpose of trapping souls. Crafted sometime before 2E 582 by the ancient witch Naenra Waerr at the behest of the Daedric Prince Clavicus Vile, the sword was intended to be a mischievous tool that would capture the souls of mortals. However, the sword's initial design was unstable, necessitating Clavicus Vile to lend a fragment of his power to stabilize it. This act, however, backfired as the piece of power became sentient and took on the name Umbra.", + "display_name": "umbra", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stendarr's Hammer is a legendary artifact believed to have been wielded by Stendarr, the God of Justice and Righteous Might. This formidable weapon is constructed from ebony and adorned with sapphire, which can enhance its tempering. It is noted for its significant weight, making it difficult for most individuals to wield effectively; it reportedly required the strength of four men to lift it onto its display podium in a museum.", + "display_name": "stendarrs_hammer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lord's Mail, also referred to as the Armor of Morihaus or the Gift of Kynareth, is a revered artifact bestowed upon mortals by Kynareth, one of the Eight Divines. This ancient cuirass, crafted from either adamantium or mithril, is regarded as some of the finest heavy armor available, offering exceptional quality and protection.", + "display_name": "lords_mail", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wraithguard is a legendary gauntlet crafted by the Dwemer Tonal Architect Lord Kagrenac. It was specifically designed to safely wield two other powerful artifacts, Keening and Sunder, which together serve as the necessary tools for interacting with the Heart of Lorkhan.", + "display_name": "wraithguard", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Necromancer's Amulet is a legendary artifact created by Mannimarco, known as the King of Worms. This exquisite amulet is often adorned with a jade skull, sometimes intricately carved to resemble a tiny skull with glowing eyes. The amulet provides its wearer with magical protection akin to plate armor and grants enhanced regenerative abilities, resistance to mundane weapons, and the power to absorb both magicka and life force. Additionally, it significantly boosts the wearer's wisdom and proficiency in the School of Conjuration.", + "display_name": "necromancer_amulet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ring of Khajiiti is a Daedric artifact associated with the Daedric Princes Meridia and Mephala, both of whom have been known to offer the Ring in exchange for service. This legendary ring bestows its wearer with the powers of invisibility, silence, and enhanced agility.", + "display_name": "ring_of_khajiit", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Amulet of Kings, often referred to as the Amulet of the Kings of Glory, is a prestigious pendant traditionally worn by the ruling emperor of Cyrodiil. At its center lies the Chim-el Adabal, known as the Red Diamond, a significant soul gem of Ayleid origin, which is surrounded by eight smaller gems representing the Eight Divines of the original Cyrodilic pantheon established by Queen Alessia. The amulet symbolizes the divine right of Cyrodilic emperors and plays a crucial role in the coronation ceremony, serving as a powerful artifact for divination.\n\nThe soul of each reigning emperor is believed to be enshrined within the central stone during the coronation ritual involving the Dragonfires, forming a collective 'oversoul' that provides counsel to their successors. Only those with the 'Dragon Blood' in their veins can wear the amulet, though the precise criteria for this have been debated. While the Amulet of Kings is a sacred symbol of the Empire, many regard the Red Dragon Crown as the primary emblem of imperial power, and the Red Diamond has become closely associated with the Imperials.", + "display_name": "amulet_of_kings", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Black Books are Daedric artifacts created by Hermaeus Mora, the Daedric Prince of Fate and Knowledge. These ancient tomes, bound in black covers and emitting an eerie mist, contain forbidden secrets from the past, present, or future. Each book serves as a gateway to Apocrypha, Mora's realm in Oblivion, and holds dangerous yet tantalizing knowledge for those the Prince favors. Crafted with extraordinary materials, such as Seeker ink and Lurker leather, the books are perilous to read, often driving mortals insane. However, those who can navigate Apocrypha’s trials are rewarded with powerful insights or abilities. The true number of Black Books is known only to Hermaeus Mora, and they are often found hidden in ancient, treacherous dungeons across Tamriel.\n\nIn 4E 201, several Black Books were discovered on Solstheim, drawing mortals into Mora's realm to test their resolve. When read, tentacles from the book envelop the reader, transporting their consciousness to Apocrypha while leaving a tethered apparition behind in Mundus. Within the realm, readers must face Mora’s gauntlets to claim the book’s secrets. While death in Apocrypha typically results in banishment back to Tamriel, the knowledge gained can be revisited by rereading the book. Revered for their otherworldly power, Black Books stand as a testament to the vast, unfathomable reach of Hermaeus Mora's influence over time, space, and mortal curiosity.", + "display_name": "black_books", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Crown of Barenziah is a legendary coronation artifact crafted for Queen Barenziah during her ascension to the throne of Mournhold in the early Third Era, under the reign of Emperor Tiber Septim. This golden crown features a striking winged motif adorned with twenty-four ornate jewels, known as the Stones of Barenziah, set across its wings and a central gem on its temple. However, the crown’s grandeur was short-lived as it was stolen shortly after the coronation. The thief pried the stones from the crown, scattering them across Skyrim. The crown itself remained in Morrowind for much of its history, while the Thieves Guild of Skyrim sought to recover its scattered stones for centuries.", + "display_name": "crown_of_barenziah", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Mace of the Crusader, also known as the Mace of Zenithar, is a holy artifact crafted by Zenithar, imbued with the power to burn foes with holy flames and turn the undead. According to legend, after Pelinal Whitestrake's death, the mace was brought to Leyawiin, where it inspired the creation of the Great Chapel of Zenithar by Saint Kaladas.", + "display_name": "mace_of_the_crusader", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bloodthirst is a legendary Akaviri longsword, crafted in the style of Dawnfang and Duskfang, with a design that evokes unease through its beast-like blade and blood-infused jewel. Renowned for its unquenchable thirst for blood, the sword enhances its wielder's strength and speed. After a convoluted history involving betrayal, necromancy, and failed plots.", + "display_name": "bloodthirst", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chillrend is a unique glass shortsword of unknown origin, distinguished by its blue hue instead of the typical green of malachite. Crafted with rare metals and moonstone, it is enchanted to inflict frost damage and may also weaken opponents to frost or cause temporary paralysis. Notably, Chillrend can repair itself when its wielder takes frost damage, making it a formidable and enduring weapon.", + "display_name": "chillrend", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnfang and Duskfang are a sentient Tsaesci longsword with four transformative forms: Dawnfang, Duskfang, and their superior variants. Known for their serpent-like design, pronged blade resembling a beast's maw, and jeweled embellishments, the sword changes form at dawn and dusk, shifting between fiery and icy enchantments. The superior forms, Dawnfang Superior and Duskfang Superior, are achieved by satisfying the sword's craving for lifeforce, with each transformation enhancing its powers to absorb health or magicka. The weapon repairs and recharges itself with each transformation, symbolizing its sinister purpose of dependency and corruption.", + "display_name": "dawnfang", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnfang and Duskfang are a sentient Tsaesci longsword with four transformative forms: Dawnfang, Duskfang, and their superior variants. Known for their serpent-like design, pronged blade resembling a beast's maw, and jeweled embellishments, the sword changes form at dawn and dusk, shifting between fiery and icy enchantments. The superior forms, Dawnfang Superior and Duskfang Superior, are achieved by satisfying the sword's craving for lifeforce, with each transformation enhancing its powers to absorb health or magicka. The weapon repairs and recharges itself with each transformation, symbolizing its sinister purpose of dependency and corruption.", + "display_name": "duskfang", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Sword of the Crusader, created by Arkay, burns foes with holy flames and drains their magicka. Cursed in undeath by its original wielder, Sir Berich Vlindrel, the sword stunted the magicka of the righteous. A pilgrim recovered the weapon from Vlindrel's wraith in Underpall Cave and reconsecrated it at the Great Chapel of Arkay in Cheydinhal, lifting the curse.", + "display_name": "sword_of_the_crusader", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ruin's Edge is a unique dark bow featuring an animated eyeball above the grip. Its enchantment triggers a random effect upon use.", + "display_name": "ruins_edge", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nerveshatter is a warhammer made from madness ore and amber, enchanted to deal shock damage. Associated with Lady Syl, Duchess of Dementia, it was wielded by her in Xirethard until her death during the Greymarch, after which it was claimed by the Hero of Kvatch.", + "display_name": "nerveshatter", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shadowrend is a Daedric artifact taking the form of a shadowy two-handed weapon, appearing as either a claymore or battleaxe. Found in the Grove of Reflection in the Shivering Isles, it can be claimed by defeating a shadowy doppelganger summoned by the grove's ancient magic.", + "display_name": "shadowrend", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Cuirass of the Crusader, crafted by either Mara or Akatosh, grants magical protection, enhances the wearer's health, and damages nearby undead or Daedra. First recovered by the original Knights after defeating the Wyrm of Elynglenn, it remained the only relic safeguarded by the order after its dissolution following Sir Amiel's death. Protected by the spirits of the Knights in the priory's undercroft, the cuirass could not be claimed until over 300 years later, when a pilgrim proved their worth in single combat and was granted the relic.", + "display_name": "cuirass_of_the_crusader", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Boots of the Crusader, also known as the Boots of Kynareth, are a sacred artifact created by Kynareth, granting the wearer harmony with nature, preventing attacks from forest creatures. After Sir Juncan's death while seeking the boots, a pilgrim visited the Shrine of Kynareth and was guided to the Grove of Trials, where they faced the Forest Guardian. By showing reverence for nature and refusing to fight, the pilgrim earned access to the grotto where the boots were hidden.", + "display_name": "boots_of_the_crusader", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Gauntlets of the Crusader, created by Stendarr, grant resistance to disease but were cursed after Sir Casimir struck down a beggar in anger, causing them to become immovable and cursing his bloodline with fatigue. Centuries later, a pilgrim redeemed the gauntlets by taking on the curse to free Casimir's descendant, Kellen, with the curse ultimately lifted by the Blessing of Talos.", + "display_name": "gauntlets_of_the_crusader", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Helm of the Crusader, created by Dibella, grants the wearer serene beauty, enhances bartering abilities, and improves skills in Illusion magic. After Pelinal Whitestrake's death, his followers enshrined the helm in the halls of Vanua, which later became submerged under Lake Rumare. In 3E 153, Sir Amiel perished in the haunted ruins while seeking the helm to restore his order’s honor. Centuries later, a pilgrim, guided by a vision of Whitestrake, discovered Sir Amiel’s remains and reclaimed the helm.", + "display_name": "helm_of_the_crusader", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Shield of the Crusader, crafted by Julianos, reflects or deflects spells and is shaped like the Chim-el Adabal, symbolizing the Imperial pantheon. Originally retrieved by Sir Henrik, the shield was hidden in Fort Bulwark, where he died before completing its defenses. Centuries later, a pilgrim, guided by Sir Henrik’s ghost, braved the fort’s traps and puzzles, freeing Sir Thedret from captivity and recovering the shield from the ruins' depths.", + "display_name": "shield_of_the_crusader", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Gray Cowl of Nocturnal, also known as the Shadow Queen's Cowl, is a Daedric artifact tied to Nocturnal, revered by thieves across Tamriel as the Mistress of Shadows. This dark leather cowl obscures the wearer's identity, originally cursed to erase the owner's name from history and memory. Legends suggest it was stolen by Emer Dareloth, a Thieves Guild guildmaster, but the curse was later broken using an Elder Scroll. Inscribed with the phrase \"Shadow hide you\" in Daedric, the cowl symbolizes the connection between thieves and Nocturnal, with the Nightingales believing it represents their journey to the Evergloam after death. It has inspired curiosity among scholars, such as the Cult of the Ancestor Moth, who sought to study the curse.", + "display_name": "gray_cowl", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Shield of Ysgramor is a legendary artifact buried with the famed Nord hero Ysgramor in his tomb during the Late Merethic Era. While it is unclear if Ysgramor used the shield in battle, it grants its wielder enhanced durability and resistance to magic, making it a prized relic of Nordic heritage.", + "display_name": "shield_of_ysgramor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Goldbrand is a legendary golden katana created by the dragons of the North and imbued with the power of the Daedric Prince Boethiah, capable of burning those it strikes. First bestowed upon the Nordic warrior Sivdur, an ancestor of the Battle-Born clan, the blade has been revered through history, with its significance documented by Yagrum Bagarn in Tamrielic Lore, spreading its legend across Tamriel.", + "display_name": "goldbrand", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Eltonbrand is an upgraded version of the legendary sword Goldbrand, offering higher damage, additional enchantments, and increased uses. To obtain Eltonbrand, the wielder must meet specific conditions, including possessing Goldbrand, Shashev's Key, exactly 11,171 gold, and being a vampire. You have a hunch that the creator of this powerful sword likes to watch people play a sports game involving bouncing a ball.", + "display_name": "eltonbrand", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ayleid Crown of Nenalata is an ancient artifact associated with the Ayleid city-state of Nenalata, known for its Daedraphile culture and allegiance to the Alessian Empire. Distinguished by its royal glyph, the crown enhances spell reflection and boosts skills in Alteration and Conjuration magic. Traditionally worn by Nenalata's king, its last known bearer was Laloriaran Dynar, the Last King of the Ayleids, who inherited it before 1E 331. The crown's immense value and mysterious potential make it a significant piece of Ayleid history.", + "display_name": "ayleid_crown_of_nenalata", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Bloodworm Helm is a necromantic artifact crafted by the lich Mannimarco from trollbone, known for its unsettling beauty and dark powers. The helm enhances Conjuration skills, allows the wearer to turn undead, drain enemy essence, and summon a skeletal minion. For undead wearers, it also strengthens their attacks. Mannimarco left the helm behind upon ascending to godhood during the Warp in the West.", + "display_name": "bloodworm_helm", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Staff of Hasedoki is a legendary artifact created by the powerful wizard Hasedoki, who bonded his soul to the staff to combat his isolation. This engraved metallic staff, adorned with a horned blue head, offers its wielder resistance to magicka, the ability to knock back enemies with forceful projectiles, and a soul trap effect. Revered by magic users across Tamriel, it is highly sought after for its potent defensive and offensive capabilities.", + "display_name": "staff_of_hasedoki", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Bow of Shadows is a Daedric artifact attributed to Nocturnal, granting its wielder invisibility and increased speed. Originally given to the ranger Raerlas Ghile for a failed mission, the bow was lost, though legends say Raerlas used it to vanquish many foes before his demise.", + "display_name": "bow_of_shadows", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Daedric Crescent Blade is a rare artifact created by Mehrunes Dagon, capable of paralyzing foes, damaging their armor, and emitting an enigmatic green energy. Once used by Dagon's forces during the Imperial Simulacrum to seize the Battlespire, most Crescents were destroyed when the Empire reclaimed the academy, though one is rumored to still exist in Tamriel. The crescent shape also appears symbolically in Daedric architecture dedicated to Dagon in Morrowind.", + "display_name": "daedric_crescent", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Fork of Horripilation is a cursed artifact of Sheogorath, appearing as a simple iron fork with enchantments that excite magicka and curse its wielder with magicka-draining effects. Fondly called \"Forky\" by Sheogorath, it is often used by the Mad God to torment mortals by forcing them to wield it as a weapon. The Fork has a strange history, including being \"lost\" during Sheogorath's visit to the Dragon Priest Korthor in the Merethic Era and later recovered by the Vestige in various Sheogorath-related trials. Notably, it smells faintly of roast beef, adding to its bizarre nature.", + "display_name": "fork_of_horripilation", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Spear of Bitter Mercy is a mysterious artifact believed to be of Daedric origin, originally forged by Mehrunes Dagon and later associated with Hircine, earning him the Reachfolk title \"Spear with Five Points.\" Imbued with powerful energies capable of instantly killing all but High Daedra Lords, the Spear is central to Hircine's Great Hunt and can only be wielded by those sanctified to its rules. Though once in Sheogorath's possession, its history remains enigmatic, and it is known to reject unworthy wielders outside its intended purpose.", + "display_name": "spear_of_bitter_mercy", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Blade of Woe, also known as the Night Mother's Kiss, is a ritualistic dagger tied to Sithis and the Dark Brotherhood. This deadly weapon is said to send the soul of anyone slain by it directly to the Void. The dagger, typically made of Ebony or Daedric material, is capable of instantly killing an unaware target, shrouding the wielder from view, and increasing movement speed for a quick escape. In addition to its lethal capabilities, the Blade of Woe can drain health, magicka, and willpower, and it demoralizes those struck by it. The blood spilled by the blade is also said to become tainted.", + "display_name": "blade_of_woe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dragonstone is a key artifact found in the ancient Nordic ruin of Bleak Falls Barrow. It is a large, intricately carved stone tablet that shows an ancient map that contains detailed markings of dragon burial sites across Skyrim, marking the locations where dragons are likely to appear or have appeared in the past. Given its importance it is likely to be found in the deepest sanctom of bleak falls barrow and to be protected by powerful forces.", + "display_name": "dragonstone", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Denstagmer’s Ring is a legendary enchanted ring attributed to the ancient battlemage Denstagmer, famed for his defensive research during the early Reman and late First Era periods. The ring is best known from arcane catalogues for its exceptional protective enchantments, granting resistance to three forms of magical assault: fire, frost, and shock. Various Imperial records—including compilations used by the Mages Guild—list it among the most dependable defensive artifacts ever crafted.\r\n\r\nThe ring has appeared sporadically across Tamriel’s history. During the Third Era, it surfaced in both High Rock and Vvardenfell. In the Vvardenfell Crisis of 3E 427, the ring was discovered once more and noted for its potent resistance enchantments, still intact despite its age.", + "display_name": "denstagmers_ring", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Azura's Star is a powerful Daedric artifact that is thought to act like a soul gem.", + "display_name": "azura_star", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ebony Mail is a powerful Daedric artifact created by Boethiah thought to grant its wearer extra powers.", + "display_name": "ebony_mail", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Rueful Axe is a Daedric artifact created by Clavicus Vile,thought ot be enchanted .", + "display_name": "rueful_axe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Masque of Clavicus Vile is a Daedric artifact that is thought to make the wearer irresistable.", + "display_name": "masque_of_clavicus_vile", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Oghma Infinium, also called the Tome of Power, is an ancient artifact . It is thought to bestow near-demi-god powers on its reader.", + "display_name": "oghma_infinium", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Savior's Hide, is a Daedric artifact linked to Hircine. It is a cuirass that is thought to protect against powerful sorcerers and enchantments.", + "display_name": "saviors_hide", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ring of Hircine is a Daedric artifact created by Hircine, the Daedric Prince of the Hunt. Itis rumoured to allow the wearer to transform into a werewolf.", + "display_name": "ring_of_hircine", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Volendrung, known as the Hammer of Might, is a powerful warhammer originally crafted by the Dwemer's Rourken clan. The hammer symbolizes their honor and was thrown across Tamriel by their chieftain when they refused to join the First Council, coming to rest in Hammerfell.", + "display_name": "volendrung", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mehrunes' Razor, known as the Dagger of the Final Wounds, the Bane of the Righteous, and the Kingslayer, is a Daedric artifact created by Mehrunes Dagon. It is infamous for its ability to instantly slay enemies.", + "display_name": "merhrunes_razor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ebony Blade is a malevolent Daedric artifact created by Mephala, known for absorbing life force and silencing victims. Associated with deceit and corruption, it corrupts its wielders, driving them to madness and evil.", + "display_name": "ebony_blade", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnbreaker is a sacred Daedric artifact created by the Daedric Prince Meridia, known for its radiant power and effectiveness against the undead and other corrupt beings.", + "display_name": "dawnbreaker", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Mace of Molag Bal is a Daedric artifact that drains stamina and magicka, traps souls, and embodies Molag Bal's power and cruelty. Forged through deceit, it is a symbol of domination and destruction.", + "display_name": "mace_of_molag_bal", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ring of Namira is a Daedric artifact associated with Namira, the Daedric Prince of darkness, decay, and repulsion. It is believed to be given to those who perform tasks for her", + "display_name": "ring_of_namira", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Skeleton Key is a Daedric artifact of Nocturnal, known for its ability to unlock any lock.", + "display_name": "skeleton_key", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Spellbreaker is an ancient Dwarven shield, now associated with the Daedric Prince Peryite, renowned for its power and status as one of Tamriel's oldest artifacts. It is famed for its ability to protect against magical attacks.", + "display_name": "spellbreaker", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Sanguine Rose is a Daedric artifact of Sanguine that summons a lesser Daedra to fight independently. It often appears as a rose or a staff shaped like one.", + "display_name": "sanguine_rose", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Wabbajack is a chaotic Daedric artifact of Sheogorath, it is thought to be capable of transforming targets into random creatures but may be unpredicatble due the madness of its creator.", + "display_name": "wabbajack", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Skull of Corruption is a Daedric artifact of Vaermina that embodies the Prince's dominion over dreams and nightmares.", + "display_name": "skull_of_corruption", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Keening is a legendary Dwemer dagger created by Kagrenac, designed to work with Sunder and Wraithguard to harness the power of the Heart of Lorkhan.", + "display_name": "keening", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sunder is a legendary Dwemer hammer created by Kagrenac, designed to work with Keening and Wraithguard to harness the power of the Heart of Lorkhan.", + "display_name": "sunder", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Staff of Magnus is an ancient artifact created by the God of Magic, Magnus, known for its immense power and connection to Tamriel's magical energy. It is surrounded by legends, seen as a gift, a theft, or a test for mortals.", + "display_name": "staff_of_magnus", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wuuthrad is a legendary battleaxe forged from Ysgramor's ebony tears, created during the Nord's Night of Tears as a symbol of grief and vengeance after the fall of Saarthal.", + "display_name": "wuuthrad", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Auriel's Bow is a powerful artifact of the elven god Auriel, drawing energy from Aetherius to transform ordinary arrows into devastating projectiles. It is revered as one of Tamriel's most formidable weapons.", + "display_name": "auriels_bow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chrysamere is an ancient adamantium claymore, blending human and elven craftsmanship, celebrated for its immense offensive power and defensive capabilities. Known as the Sword of Heroes, it symbolizes Breton cultural heritage.", + "display_name": "chrysamere", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Umbra is a Daedric artifact created by Naenra Waerr for Clavicus Vile, designed to trap souls. The sword became sentient after absorbing a fragment of Vile's power, gaining its own identity as Umbra.", + "display_name": "umbra", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stendarr's Hammer is a legendary ebony weapon adorned with sapphire, associated with Stendarr, the God of Justice. Known for its immense weight, it requires extraordinary strength to wield effectively.", + "display_name": "stendarrs_hammer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lord's Mail is a legendary cuirass gifted by Kynareth, known for its exceptional protection and craftsmanship, made from adamantium or mithril. It is revered as one of the finest pieces of heavy armor.", + "display_name": "lords_mail", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wraithguard is a legendary Dwemer gauntlet created by Lord Kagrenac, designed to safely wield the powerful artifacts Keening and Sunder in conjunction with the Heart of Lorkhan.", + "display_name": "wraithguard", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Necromancer's Amulet is a powerful artifact created by Mannimarco, enhancing conjuration, granting magical protection, and providing resistance, regeneration, and the ability to absorb magicka and life force.", + "display_name": "necromancer_amulet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ring of Khajiiti is a Daedric artifact linked to Meridia and Mephala, granting its wearer invisibility, silence, and enhanced agility.", + "display_name": "ring_of_khajiit", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Amulet of Kings is a sacred pendant symbolizing the divine right of Cyrodilic emperors, featuring the Ayleid Red Diamond and gems representing the Eight Divines. It is tied to the Dragon Blood lineage and plays a key role in coronation rituals and the Empire's legacy.", + "display_name": "amulet_of_kings", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Black Books are Daedric artifacts created by Hermaeus Mora, the Daedric Prince of Fate and Knowledge. These ancient tomes, bound in black and emitting mist, contain forbidden secrets and serve as gateways to Apocrypha, Mora's realm. They are dangerous to read, often driving mortals insane, but those who survive the trials of Apocrypha gain powerful knowledge or abilities.", + "display_name": "black_books", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Crown of Barenziah is a legendary artifact created for Queen Barenziah's coronation in the early Third Era. The golden crown, adorned with twenty-four jewels known as the Stones of Barenziah, was stolen after the coronation, and its jewels were scattered across Skyrim.", + "display_name": "crown_of_barenziah", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Mace of the Crusader, or Mace of Zenithar, is a holy artifact crafted by Zenithar that burns foes with holy flames and turns the undead. It inspired the creation of Leyawiin's Great Chapel of Zenithar after being brought there following Pelinal Whitestrake's death.", + "display_name": "mace_of_the_crusader", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bloodthirst is a legendary Akaviri longsword with a beast-like design and blood-infused jewel, known for enhancing the wielder's strength and speed. Its history is marked by betrayal, necromancy, and failed schemes.", + "display_name": "bloodthirst", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chillrend is a unique blue glass shortsword crafted with rare materials, enchanted to inflict frost damage, weaken enemies, and cause paralysis. It can repair itself when its wielder takes frost damage, making it both powerful and enduring.", + "display_name": "chillrend", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnfang and Duskfang are sentient Tsaesci longswords that transform at dawn and dusk, shifting between fiery and icy enchantments. Their superior forms are achieved by feeding on lifeforce, enhancing their ability to absorb health or magicka, and they repair themselves with each transformation.", + "display_name": "dawnfang", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnfang and Duskfang are sentient Tsaesci longswords that transform between fiery and icy enchantments at dawn and dusk. Their superior forms enhance their ability to absorb health or magicka, with each transformation recharging the weapon and deepening its sinister nature.", + "display_name": "duskfang", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnfang and Duskfang are sentient Tsaesci longswords that transform between fiery and icy enchantments at dawn and dusk. Their superior forms enhance their ability to absorb health or magicka, with each transformation recharging the weapon and deepening its sinister nature.", + "display_name": "sword_of_the_crusader", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ruin's Edge is a dark bow with an animated eyeball, known for its enchantment that triggers random effects with each use.", + "display_name": "ruins_edge", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nerveshatter is a warhammer crafted from madness ore and amber, enchanted to deal shock damage. Once wielded by Lady Syl, Duchess of Dementia, it was claimed by the Hero of Kvatch after her death during the Greymarch.", + "display_name": "nerveshatter", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shadowrend is a Daedric artifact, appearing as a shadowy claymore or battleaxe, obtained by defeating a doppelganger in the Grove of Reflection in the Shivering Isles.", + "display_name": "shadowrend", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Cuirass of the Crusader, crafted by Mara or Akatosh, provides magical protection, enhances health, and harms undead or Daedra. Guarded by knightly spirits, it was reclaimed by a worthy pilgrim over 300 years after the order's dissolution.", + "display_name": "cuirass_of_the_crusader", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Boots of the Crusader, created by Kynareth, grant harmony with nature and prevent attacks from forest creatures. They were recovered by a pilgrim who earned them by showing reverence for nature in the Grove of Trials.", + "display_name": "boots_of_the_crusader", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Gauntlets of the Crusader, created by Stendarr, grant resistance to disease but were cursed due to a past misdeed. They were redeemed centuries later by a pilgrim who lifted the curse with the Blessing of Talos.", + "display_name": "gauntlets_of_the_crusader", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Helm of the Crusader, created by Dibella, enhances beauty, bartering, and Illusion skills. It was enshrined in Vanua after Pelinal Whitestrake's death and reclaimed centuries later by a pilgrim guided by a vision.", + "display_name": "helm_of_the_crusader", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Shield of the Crusader, crafted by Julianos, reflects spells and symbolizes the Imperial pantheon. Hidden in Fort Bulwark, it was reclaimed centuries later by a pilgrim who overcame its traps and freed Sir Thedret.", + "display_name": "shield_of_the_crusader", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Gray Cowl of Nocturnal, a Daedric artifact tied to Nocturnal, obscures the wearer's identity and was once cursed to erase their name from history. Revered by thieves, it symbolizes their connection to Nocturnal and the Evergloam.", + "display_name": "gray_cowl", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Shield of Ysgramor is a legendary artifact from the Late Merethic Era, granting enhanced durability and resistance to magic. Buried with the Nord hero Ysgramor, it is a treasured relic of Nordic heritage.", + "display_name": "shield_of_ysgramor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Goldbrand is a legendary golden katana created by Northern dragons and imbued with Boethiah's power, capable of burning enemies. First given to the Nordic warrior Sivdur, its legacy is documented in Tamrielic Lore and revered across Tamriel.", + "display_name": "goldbrand", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Eltonbrand is an upgraded version of Goldbrand with greater damage and enchantments, obtainable under specific conditions involving Goldbrand, Shashev's Key, 11,171 gold, and vampirism. Its creation is linked to a sports enthusiast. You have a hunch this weapon was created as a joke.", + "display_name": "eltonbrand", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ayleid Crown of Nenalata is an ancient artifact linked to the Ayleid city-state of Nenalata, enhancing spell reflection and magic skills. Last worn by Laloriaran Dynar, the Last King of the Ayleids, it is a valuable and significant relic of Ayleid history.", + "display_name": "ayleid_crown_of_nenalata", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Bloodworm Helm is a necromantic artifact created by Mannimarco, enhancing Conjuration, turning undead, and summoning minions. Left behind during Mannimarco's ascent to godhood, it also boosts attacks for undead wearers.", + "display_name": "bloodworm_helm", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Staff of Hasedoki is a legendary artifact created by the wizard Hasedoki, offering resistance to magicka, the ability to knock back enemies, and a soul trap effect. Highly sought after by magic users, it is revered for its powerful defensive and offensive capabilities.", + "display_name": "staff_of_hasedoki", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Bow of Shadows is a Daedric artifact from Nocturnal, granting invisibility and increased speed.", + "display_name": "bow_of_shadows", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Daedric Crescent Blade is a rare artifact created by Mehrunes Dagon, capable of paralyzing foes and damaging armor. Used by Dagon's forces during the Imperial Simulacrum, most were destroyed, but one is rumored to remain in Tamriel.", + "display_name": "daedric_crescent", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Fork of Horripilation is a cursed artifact of Sheogorath, appearing as a simple iron fork that drains magicka and torments its wielder. Known as \"Forky,\" it has a bizarre history and is often used by Sheogorath to torment mortals, smelling faintly of roast beef.", + "display_name": "fork_of_horripilation", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Spear of Bitter Mercy is a powerful artifact originally forged by Mehrunes Dagon and later associated with Hircine. Imbued with deadly energies, it can only be wielded by those sanctioned to participate in Hircine's Great Hunt and rejects unworthy wielders.", + "display_name": "spear_of_bitter_mercy", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Blade of Woe, also known as the Night Mother's Kiss, is a ritualistic dagger tied to Sithis and the Dark Brotherhood. It is rumored to be able to kill anyone unaware in a single strike.", + "display_name": "blade_of_woe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dragonstone is a key artifact runored to be somewhere near whiterun. It is somehow related to the Dragons.", + "display_name": "dragonstone", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Denstagmer’s Ring is a famous enchanted ring known for protecting its wearer from fire, frost, and shock. It is said to have belonged to an ancient battlemage named Denstagmer, and it has been found in different parts of Tamriel throughout history.", + "display_name": "denstagmers_ring", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + } + ], + "entry_count": 122, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Artifacts", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/Oghma_-_Creatures.sknpack b/oghma-sknpack/Oghma_-_Creatures.sknpack new file mode 100644 index 0000000..743faf0 --- /dev/null +++ b/oghma-sknpack/Oghma_-_Creatures.sknpack @@ -0,0 +1,1543 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Tamrielic lore from CHIM's Oghma Infinium — creatures. Merges educated and common-knowledge entries graded by importance.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "Vampires are preternatural beings in Tamriel, often regarded as undead creatures that feed on the blood of the living. This condition arises from the curse of vampirism, which can make individuals into feared and misunderstood abominations. While some vampires view their state as a curse, others might perceive it as a blessing, struggling with their primal instincts or seeking to overcome the disease that has transformed them. Despite their potential for power and agility, they are widely hunted and despised by society, especially in Imperial culture, which labels them as destructive monsters.", + "display_name": "vampire", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Werewolves are fearsome, wolf-like creatures that inhabit the wilds of Skyrim. They are larger and more powerful than ordinary humans and elves, capable of moving bipedally or sprinting on all fours. While they possess significant strength and speed, they are vulnerable to silver weapons, which can injure them significantly. Unlike ordinary mortals, werewolves are immune to diseases and paralysis effects, which makes them formidable adversaries.", + "display_name": "werewolf", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Slaughterfish are aggressive predatory fish found in diverse aquatic environments across Nirn. Known for their sharp teeth and swift, lethal attacks, they form dense schools and grow exceptionally large when well-fed. Variants such as the Rumare Slaughterfish, Blind Slaughterfish, and the legendary Crab-Slaughter-Crane highlight their adaptability. While their bites can cause severe injuries and transmit diseases like Greenspore, slaughterfish are valuable for their alchemical properties, crafting materials, and culinary uses. Regions like Vvardenfell consume their dried scales as treats, while Nords favor stone-cooked slaughterfish as a delicacy. Their prevalence has spurred preventative measures, such as enchanted bobbers and repellents, reflecting their dual role as both a threat and a resource in Tamrielic life.", + "display_name": "slaughterfish", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mudcrabs are a common species of crab found throughout Tamriel, recognizable by their ability to camouflage as small rocks along shores and waterways. Generally non-aggressive, mudcrabs will only attack when provoked or cornered. However, once they acquire a taste for meat, they may become predatory, posing a threat to livestock. They rely on their pincers and burrowing abilities for defense and can strip a corpse to its bones within days, a feat that lesser crabs take weeks to accomplish. Some mudcrabs can reach enormous sizes, and rare albino variants are known to exist. They can be harvested for their meat and chitin.", + "display_name": "mudcrab", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ash Spawn are eerie, undead-like creatures that inhabit the Ashlands of southern Solstheim. These beings are formed from the remains of the deceased, specifically bones buried beneath the ashen terrain, which are animated by Heart Stones and infused with the ash of Red Mountain. Notably, Ash Spawn exhibit immunity to poison and possess a strong resistance to fire, though they do not have any specific weaknesses.", + "display_name": "ash_spawn", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ash Spawn are eerie, undead-like creatures that inhabit the Ashlands of southern Solstheim. These beings are formed from the remains of the deceased, specifically bones buried beneath the ashen terrain, which are animated by Heart Stones and infused with the ash of Red Mountain. Notably, Ash Spawn exhibit immunity to poison and possess a strong resistance to fire, though they do not have any specific weaknesses.", + "display_name": "ash_creatures", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Flame Atronachs are elemental Daedra originating from the realm of Infernace, a fiery domain composed of lava and flames. These beings appear to be made entirely of fire and can be found either unbound in the wild or summoned by skilled mages to serve various roles, such as guards or laborers. The process of summoning Flame Atronachs typically involves the spell known as Koron's Peremptory Summons, which allows conjurers to customize the specifics of the summon, including the Daedric form and the plane from which they are called.", + "display_name": "flame_atronach", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frost Atronachs, also known as Ice Atronachs or Water Atronachs, are elemental Daedra that hail from the realm of Oblivion. Composed entirely of ice, these beings can be encountered unbound in the wild or summoned by skilled mages to fulfill various roles, including guards or laborers.", + "display_name": "frost_atronach", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Storm Atronachs, sometimes referred to as Thundernachs, are elemental Daedra originating from the realm of Levinace. These formidable beings are composed of lightning and rocky debris, giving them a striking and chaotic appearance. Storm Atronachs can be found both unbound in the wild and summoned by skilled mages to serve various functions, such as guards or laborers.", + "display_name": "storm_atronach", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Spiders, also known as Dwemer Spiders or Centurion Spiders, are small mechanical constructs commonly found in the ruins of the Dwemer civilization. Resembling actual spiders, these versatile automatons serve multiple purposes, including guarding locations and performing repairs. They often scuttle around the ruins, and in certain areas, they can swarm out of hidden compartments to ambush intruders.", + "display_name": "dwarven_spider", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Spiders, also known as Dwemer Spiders or Centurion Spiders, are small mechanical constructs commonly found in the ruins of the Dwemer civilization. Resembling actual spiders, these versatile automatons serve multiple purposes, including guarding locations and performing repairs. They often scuttle around the ruins, and in certain areas, they can swarm out of hidden compartments to ambush intruders.", + "display_name": "dwemer_spider", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Spheres, also referred to as Centurion Spheres or Dwarven Centurions, are formidable automatons crafted by the Dwemer, known for their agility and combat strength. These constructs typically patrol ancient ruins in a spherical form, remaining dormant until they detect intruders. Upon encountering an opponent, they emerge from their protective shells to engage in combat.", + "display_name": "dwarven_sphere", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Spheres, also referred to as Centurion Spheres or Dwarven Centurions, are formidable automatons crafted by the Dwemer, known for their agility and combat strength. These constructs typically patrol ancient ruins in a spherical form, remaining dormant until they detect intruders. Upon encountering an opponent, they emerge from their protective shells to engage in combat.", + "display_name": "dwemer_sphere", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Centurions, often referred to as Steam Centurions, are imposing and heavily armored constructs that serve as formidable guardians in Dwemer ruins. Equipped with either an extendable mace or hammer on one arm and a spring-loaded blade on the other, they can deliver devastating melee attacks. Some variants are capable of emitting a scalding blast of steam, enhancing their offensive capabilities. While not as common as smaller Dwarven constructs, their presence signifies heightened security within ancient ruins.", + "display_name": "dwarven_centurion", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Centurions, often referred to as Steam Centurions, are imposing and heavily armored constructs that serve as formidable guardians in Dwemer ruins. Equipped with either an extendable mace or hammer on one arm and a spring-loaded blade on the other, they can deliver devastating melee attacks. Some variants are capable of emitting a scalding blast of steam, enhancing their offensive capabilities. While not as common as smaller Dwarven constructs, their presence signifies heightened security within ancient ruins.", + "display_name": "dwemer_centurion", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chaurus are medium-to-large, hostile creatures resembling earwigs, commonly found in swamps, marshlands, and deep underground caverns throughout Tamriel. Known for their aggressive nature, Chaurus possess a potent acidic poison that they can project with remarkable accuracy, capable of quickly eroding most forms of armor. Their ability to cling to walls adds to their menace, as they can ambush unsuspecting prey from above.", + "display_name": "chaurus", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragons are formidable, flying reptilian creatures native to Skyrim, revered and feared for their immense power and intelligence. Historically worshipped by the ancient Nordic people, dragons possess an affinity for magic and can harness the power of the Thu'um, or Dragon Shouts, to unleash devastating attacks. While thought to be extinct, dragons have begun to re-emerge, playing a central role in the events unfolding across the province.", + "display_name": "dragon", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frostbite Spiders are dangerous arachnids native to Skyrim, commonly found in dark, underground lairs or roaming the wilderness. These spiders are often identifiable by their web-covered nests, which can create obstacles for travelers. Equipped with the ability to spit poisonous venom at their prey from a distance, they also engage in close combat using their pincers.\n\nFrostbite spiders typically exhibit a brown and gray coloration, although blue variants have also been observed. Their venom, known as Frostbite Venom, is frequently harvested for use in various poisons, while spider eggs can be collected from sacs within their webs for alchemical purposes. These creatures pose a significant threat to those who venture too close, using both ranged and melee attacks to defend their territory.", + "display_name": "frostbite_spider", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Giants are enormous humanoid beings known for their immense strength and towering stature, found primarily in the wilderness of Skyrim and other regions such as High Rock, Hammerfell, Cyrodiil, and Valenwood. These colossal figures, often referred to as the \"big folk,\" typically stand between 11 and 12 feet tall, with some individuals reaching even greater heights. They have thick gray skin, long limbs, large hands and feet, and distinctive thick grayish-brown hair, often adorned with braids, beads, and decorative scars carved into their chests. Giants usually wear fur pelts, sometimes embellished with animal bones, although many opt for a simpler loincloth.", + "display_name": "giants", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Goblins are primitive humanoid creatures commonly found in various regions of Tamriel and Akavir, typically inhabiting sewers, caves, and ancient ruins. They are known for their small, clan-based societies, with heights ranging from three to over eight feet. Goblins usually exhibit green or yellow skin, pronounced canine teeth, yellow eyes with slitted pupils, and pointed ears, and may also possess horns or hunchbacks. Despite their often violent nature towards more civilized races, Goblins display a surprising degree of intelligence and adaptability, capable of coexistence with others when circumstances allow.", + "display_name": "goblin", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hagravens are sinister creatures, grotesque hybrids of old women and birds, resulting from a dark ritual that witches undergo to gain powerful magic at the cost of their humanity. This transformation infuses them with a corrupted essence, leading to a horrific appearance and depraved behavior. Hagravens are notorious for their malevolent appetite, often consuming living victims, particularly savoring fresh eyeballs. Their cunning nature allows them to employ both savage tactics and magical prowess, making them formidable adversaries in combat.", + "display_name": "hagraven", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ice Wraiths are ethereal, serpentine spirits composed entirely of ice, commonly found in the frigid landscapes and mountain ranges of Skyrim, as well as in regions of High Rock and Cyrodiil. These magical beings possess the ability to blend seamlessly with their snowy surroundings, rendering them nearly invisible to unsuspecting prey. Ice Wraiths are known for their swift and lethal attacks, lunging at victims to inflict fatal bites, and they can transmit Witbane, a disease that impairs mental acuity. Notably, they are immune to paralysis, making them challenging opponents in combat.", + "display_name": "ice_wraith", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Spriggans, often referred to as Nature's Guardians, are mystical nature spirits typically taking the form of tree-like humanoids, although they can also assume animal-like shapes. Known for their moderate intelligence, Spriggans are generally hostile toward travelers, protecting secluded groves and glades across Tamriel. They blend seamlessly with the surrounding plant life, ambushing unsuspecting intruders with sharp fingers and teeth, as well as a toxic poison. Their regenerative abilities are formidable, making them difficult to defeat; they can call upon nearby woodland creatures for assistance during combat, and some can even summon powerful black bears.", + "display_name": "spriggan", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Trolls are large, ape-like creatures found throughout Tamriel, often characterized by their three eyes and formidable stature. Known for their exceptional regenerative abilities, trolls are difficult to kill, often recovering from injuries that would be fatal to other beings. However, they have a significant vulnerability to fire, which can disrupt their healing process. Typically found in caves and forested regions, trolls tend to be reclusive and prefer to dwell away from well-traveled paths.", + "display_name": "trolls", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wispmothers, sometimes referred to as wispfathers, are mystical entities believed to be ghosts, wraiths, or nature spirits, commonly found in the wilds of Tamriel. These beings can communicate and often refer to the wisps that accompany them as their children. Legends from Black Marsh suggest that while a wispmother can be killed, its essence must be sealed to prevent it from resurrecting. In Valenwood, a rarer variant is known as the Amronal.", + "display_name": "wispmother", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wisps, also known as Witchlights, are mysterious floating entities often encountered near Wispmothers, although they can also exist independently. The nature of wisps is a topic of debate among scholars; some believe they are scavengers that attract prey to the Wispmother, sharing in the psychoetherial energy released from her kills. Others theorize that wisps are mere manifestations or conjurations of the Wispmother, lacking independent existence. This latter view is supported by the observation that killing a Wispmother also results in the death of the surrounding wisps, leaving behind only glow dust.\n\nIn nature's cycle, wisps are associated with Y'ffre, who sends them to announce the arrival of storms during Rain's Hand. Seeing a wisp is often interpreted as a sign of renewal, symbolizing new growth and the beginning of a fresh chapter in the cycle of life.", + "display_name": "wisp", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragon Priests are powerful undead beings that were once the devoted servants of the ancient dragons in Skyrim. Revered for their formidable magical abilities, these priests commanded legions of warriors in the name of their dragon deities. Today, they reside in ornate coffins within prominent dragon worship sites, and if disturbed, they will rise with great force to confront intruders.", + "display_name": "dragon_priest", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Draugr are the mummified remains of ancient Nords, found primarily in the cold, tomb-laden landscapes of Skyrim and Solstheim. These undead creatures were preserved before their reanimation, which has helped them retain much of their physical integrity, allowing their muscles and ligaments to resist decay. This preservation has resulted in a diverse range of combat styles among draugr, reflecting the varied skills they possessed in life.", + "display_name": "draugr", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Abacean Longfish are a long grey ship that can be caught with your hands around Skyrim. When used as an ingredient for potion making, they offer effects such as Weakness to Frost, Fortify Sneak, Weakness to Poison and Fortify Restoration.", + "display_name": "abacean_longfish", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Angelfish are rare orange fish with black stripes found in temperate lakes. When used as an ingredient for potion making, they offer effects such as Regenerate Health, Resist Fire, Fortify Marksman, and Waterbreathing.", + "display_name": "angelfish", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The elusive Angler is a very small, rare fish found exclusively in freezing waters when using an Argonian Fishing Rod. It has large teeth, a glowing lantern on its head, and dark slimey scales. It can be eaten though it has a rather horrible smell.", + "display_name": "angler", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Angler Larvae are very small pink fish covered in a translucent embryo commonly found in freezing waters. When used as an ingredient for potion making, they offer effects such as Lingering Damage Health, Regenerate Stamina, Waterbreathing and Fortify Two-Handed.", + "display_name": "angler_larvae", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Arctic Char are long blue and green fish uncommonly found in freezing waters. They can be eaten with a mild, delicate, and slightly sweet flavor.", + "display_name": "arctic_char", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Arctic Grayling are long grey fish with a big top fin commonly found in freezing waters. They can be eaten and have are a white-fleshed fish with flaky meat that some say is delicious and versatile.", + "display_name": "arctic_grayling", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Brook Bass are small slender grey fish commonly found in temperate lakes and rivers. They can be eaten and have a terrible taste.", + "display_name": "brook_bass", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Carp are a orange and white fish commonly found in temperate lakes. They can be eaten with a muddy fatty taste.", + "display_name": "carp", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Catfish are a large long green fish commonly found in Temperate lakes during rainy weather. They can be eaten with a great flavour, you are surprised there are not more shops selling cooked catfish.", + "display_name": "catfish", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cod are a large yellow fish found in freezing waters during any weather. They can be eaten with a mild, delicate, and slightly sweet flavor with a flaky texture.", + "display_name": "cod", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Direfish are a large red fish found in underground fishing spots. They can be eaten with a rather iron taste.", + "display_name": "direfish", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Catfish are large translucent fish found in underground fishing spots. They can be eaten with a rather stale taste.", + "display_name": "glass_catfish", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glassfish are small translucent fish where you can see their bones, they can be found temperate lakes. When used as an ingredient for potion making, they offer effects such as Restore Magicka, Invisibility, Fortify Illusion and Fortify Persuasion.", + "display_name": "glassfish", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Goldfish are a orange and gold coloured fish found in temperate lakes. When used as an ingredient for potion making, they offer effects such as Restore Stamina, Fortify Heavy Armor, Waterbreathing and Resist Frost.", + "display_name": "goldfish", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Juvenile Mudcrabs are a small handheld mudcrab with a grey coloured shell. They can be found in any water source. When used as an ingredient for potion making, they offer effects such as Regenerate Stamina, Fortify Carry Weight, Cure Disease and Fortify Two-Handed.", + "display_name": "juvenile_mudcrab", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lyretail Anthias are a small orange,yellow and purple fish found at small streams by using an Alikri fishing rod. When used as an ingredient for potion making, they offer effects such as Restore Magicka, Fortify Alteration, Fortify Conjuration and Fortify Carry Weight.", + "display_name": "lyretail_anthias", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pearlfish are large pearly coloured fish found in temperate lakes and streams when it is raining. When used as an ingredient for potion making, they offer effects such as Restore Stamina, Resist Frost, Fortify Smithing, Fortify One-handed.", + "display_name": "pearlfish", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pogfish are a large long blue fish found in temperate rivers. They can be eaten but they have a rather funny taste, but you cant put your finger on what it tastes funny.", + "display_name": "pogfish", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pygmy Sunfish are rare small black and blue fish found near Heartwood Mill, west of Riften. It is rumored it can only be caught with an alikri fishing rod while wearing a Lucky Fishing Hat. When used as an ingredient for potion making, they offer effects such as Restore Stamina, Lingering Damage Magicka, Damage Magicka Regen and Fortify Restoration.", + "display_name": "pygmy_sunfish", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Salmon are long blue and white fish commonly found everywhere. They can be eaten and made into a delicous Salmon Steak.", + "display_name": "salmon", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scorpion Fish are large brown rough fish found rarely in underground elven areas with an Argonian Fishing Rod. They can be eaten but they have a rather terrible taste.", + "display_name": "scorpion_fish", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Spade Fish are large black fish with an orange outline shaped like a spade. They can be found in temperate streams while it is raining. When used as an ingredient for potion making, they offer effects such as Restore Health, Fortify Lockpicking, Fortify Pickpocket and Cure Disease.", + "display_name": "spadefish", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Tripod Spiderfish are small thing green fish with an odd shape. They can be found in underground fishing areas. They can be eaten but do not have much of a taste due to the lack of meat.", + "display_name": "tripod_spiderfish", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampire Fish are large ugly green fish found in underground fishing spots. They can be eaten but have a rather foul taste.", + "display_name": "vampire_fish", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Histcarp are long dark orange fish found around Skyrim that can be caught with your hands. When used as an ingredient for potion making, they offer effects such as Restore Stamina, Fortify Magicka, Damage Stamina Regen and Waterbreathing.", + "display_name": "histcarp", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Histcarp are long dark orange fish found around Skyrim that can be caught with your hands. When used as an ingredient for potion making, they offer effects such as Damage Health, Fortify Alteration, Slow and Fortify Carry Weight.", + "display_name": "river_betty", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Silverside Perch are long grey fish found around Skyrim and can be caught with your hands. When used as an ingredient for potion making, they offer effects such as Restore Stamina, Damage Stamina Regen, Ravage Health and Resist Frost.", + "display_name": "silverside_perch", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cyrodilic Spadetail are long brown fish found around Skyrim and can be caught with your hands. When used as an ingredient for potion making, they offer effects such as Damage Stamina, Fortify Restoration, Fear and Ravage Health.", + "display_name": "cyrodilic_spadetail", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bears are large, aggressive creatures found in the wilderness or caves, attacking if their territory is threatened. They carry the disease Bone Break Fever, which reduces stamina, but they typically growl or roar before attacking, making them easy to avoid. Standard, cave, and snow bears are found in Skyrim and Solstheim, with snow bears living in high altitudes. Bear carcasses can be harvested for pelts and claws.", + "display_name": "bear", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Deer are non-aggressive animals found throughout Skyrim, known for their shyness and tendency to flee when approached. However, they can become hostile if influenced by a spriggan. Deer are hunted for their venison, hide, and antlers, with two species found: \"Deer,\" which resemble caribou or reindeer, and \"Elk,\" which resemble the extinct Megaloceros. When hunting, it's best to kill them with one shot, as they are quick and evasive. Deer pelts found at hunter's camps cannot be tanned into leather.", + "display_name": "deer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elk are non-aggressive animals found throughout Skyrim, known for their shyness and tendency to flee when approached. However, they can become hostile if influenced by a spriggan. Deer are hunted for their venison, hide, and antlers, with two species found: \"Deer,\" which resemble caribou or reindeer, and \"Elk,\" which resemble the extinct Megaloceros. When hunting, it's best to kill them with one shot, as they are quick and evasive. Deer pelts found at hunter's camps cannot be tanned into leather.", + "display_name": "elk", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Foxes are small, non-aggressive creatures found in Skyrim's wilderness, often chasing rabbits. They drop pelts upon death, which can be used for tanning. Foxes will flee when approached.", + "display_name": "fox", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Goats are non-aggressive animals found on mountain slopes in Skyrim. Goats are hunted for their hides, meat, and horns.", + "display_name": "goat", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Horkers are sea animals resembling walruses, commonly found in packs near rivers and icy shores in northern Skyrim. They are slow and easy to avoid on land but become faster and harder to outrun in water. If provoked, horkers will become hostile. Looting their bodies may yield horker meat, tusks, and occasionally small amounts of gold or gems.", + "display_name": "horker", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mammoths are massive creatures found in the tundra of Skyrim, often seen alongside giants or traveling under their protection. They have long tusks, with tame mammoths having engraved tusks, while wild ones have plain tusks. Mammoths will defend themselves if attacked, with the herding giant rushing to protect them, but will turn passive if the giant is killed. They avoid water and can get stuck behind obstacles, making them easier to evade or attack from a distance.", + "display_name": "mammoth", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rabbits are small, non-hostile animals that quickly flee when approached. They are often hunted by larger predators like foxes. Due to their small size and speed, they can be difficult to catch. They can be harvested for their legs which taste good.", + "display_name": "rabbit", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sabre Cats are large, fast, and powerful felines found in the wilds of Skyrim. Known for their sharp front teeth, they are aggressive hunters that will attack on sight. Sabre cats can carry Witbane, a disease that reduces magicka regeneration. They are stealthy and quick, but can be outmaneuvered by dodging, and dislike water, which can be used to evade them. They can be harvested for their pelt for tanning, and eyes for alchemy.", + "display_name": "sabre_cat", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skeevers are small, aggressive, rat-like creatures found in dark areas like caves or dungeons, as well as the wilderness of Skyrim. While they are generally considered weak enemies, they can carry the disease Ataxia, which reduces Lockpicking and Pickpocket skills.", + "display_name": "skeever", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wolves are, hostile canines commonly found in the wilds of Skyrim and Solstheim, often encountered alone or in small packs. They are known for circling around their prey and can infect you with the disease Rockjoint through their bite. Wolves typically do not attack werewolves in beast form unless provoked.", + "display_name": "wolf", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wolves are, hostile canines commonly found in the wilds of Skyrim and Solstheim, often encountered alone or in small packs. They are known for circling around their prey and can infect you with the disease Rockjoint through their bite. Wolves typically do not attack werewolves in beast form unless provoked.", + "display_name": "wolves", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "senche-cats are not Khajiit, but a distinct species of large feline regarded by the Khajiit as close cousins. Their relationship is complex and poorly understood by outsiders. Khajiiti tradition holds that both they and the senche-cats share ancient origins shaped by the Lunar Lattice, yet senche-cats are not born as furstocks and do not possess the full sapience of true Khajiit. While they exhibit a degree of animal intelligence—and Khajiit themselves claim to perceive a deeper awareness within them—they are generally incapable of speech and lack the cultural and spiritual identity of Khajiiti peoples.\r\n\r\nThis distinction is most often confused with the Senche, or senche-tigers, which are a true Khajiit furstock. Senche are born a full Masser and Secunda and are fully sapient beings, counted among the many forms the Khajiit may take. They are described as powerful, quadrupedal Khajiit of great size and dignity—“Great Chiefs of Lesser Cats”—possessing intelligence, memory, and spiritual significance equal to other Khajiit, even if a lack of verbal communication leads outsiders to mistake them for beasts.", + "display_name": "senche-cats", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Known in Ta’agra as khrasaat, terror birds are large, carnivorous, flightless avians that inhabit Elsweyr and parts of the West Weald. They are highly aggressive territorial predators, particularly when guarding nests, and exhibit a notable communal or pack-like behavior when raising their young. Groups will defend eggs and fledglings with extreme violence, attacking anything that approaches without hesitation. Their strength is considerable; accounts describe them killing other large predators and overpowering armed hunters, making them a traditional test of courage among Khajiiti warriors.\r\n\r\nPhysically, terror birds are tall, muscular creatures built for speed and impact rather than flight. They run and lunge at prey, striking with heavy beaks capable snapping through bone and even armor plating. Their diet consists primarily of meat. Despite their ferocity, they possess exploitable instincts: they fear fire and can be driven or redirected by smoke, and loud, rattling noises can startle them into retreat. Their remains are put to practical use by Khajiiti peoples, with beaks fashioned into tools and gizzards used as waterskins, though their meat is widely regarded as unpleasant and rarely worth the danger of the hunt.", + "display_name": "terror_bird", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampires are preternatural beings in Tamriel, often regarded as undead creatures that feed on the blood of the living. Despite their potential for power and agility, they are widely hunted and despised by society, especially in Imperial culture, which labels them as destructive monsters.", + "display_name": "vampire", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Werewolves are rumoured to be fearsome, wolf-like creatures that inhabit the wilds of Skyrim.", + "display_name": "werewolf", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Slaughterfish are small, aggressive aquatic predators found in nearly all waters of Nirn. Recognizable by their razor-sharp teeth, these fish often swim in large groups, quickly overwhelming and attacking unsuspecting prey.", + "display_name": "slaughterfish", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mudcrabs are a common species of crab found throughout Tamriel, recognizable by their ability to camouflage as small rocks along shores and waterways. Generally non-aggressive, mudcrabs will only attack when provoked or cornered.", + "display_name": "mudcrab", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ash Spawn are eerie, undead-like creatures that inhabit Solstheim.", + "display_name": "ash_spawn", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ash Spawn are eerie, undead-like creatures that inhabit Solstheim.", + "display_name": "ash_creatures", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Flame Atronachs are elemental Daedra. These beings appear to be made entirely of fire and can be found either unbound in the wild.", + "display_name": "flame_atronach", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frost Atronachs, also known as Ice Atronachs or Water Atronachs. They can be found either unbound in the wild.", + "display_name": "frost_atronach", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Storm Atronachs are elemental Daedra from the realm of Levinace, made of lightning and rocky debris.", + "display_name": "storm_atronach", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Spiders are mechanical constructs found in Dwemer ruins, resembling actual spiders, that will attack anyone foolish enough to enter a dwemer ruin.", + "display_name": "dwarven_spider", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Spiders are mechanical constructs found in Dwemer ruins, resembling actual spiders, that will attack anyone foolish enough to enter a dwemer ruin.", + "display_name": "dwemer_spider", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Spheres are powerful automatons created by the Dwemer, that will attack anyone foolish enough to enter a dwemer ruin.", + "display_name": "dwarven_sphere", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Spheres are powerful automatons created by the Dwemer, that will attack anyone foolish enough to enter a dwemer ruin.", + "display_name": "dwemer_sphere", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Centurions, or Steam Centurions, are heavily armored constructs found in Dwemer ruins,, that will attack anyone foolish enough to enter a dwemer ruin.", + "display_name": "dwarven_centurion", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Centurions, or Steam Centurions, are heavily armored constructs found in Dwemer ruins, that will attack anyone foolish enough to enter a dwemer ruin.", + "display_name": "dwemer_centurion", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chaurus are hostile, earwig-like creatures found in swamps and underground caverns. They are known for their aggressive behavior, acidic poison, and ability to cling to walls to ambush prey.", + "display_name": "chaurus", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragons are powerful, intelligent flying creatures native to Skyrim, known for their mastery of magic and the Thu'um. Once thought extinct, they have re-emerged, playing a key role in Skyrim's events.", + "display_name": "dragon", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frostbite Spiders are dangerous arachnids found in Skyrim's dark lairs and wilderness. They can spit poisonous venom and use pincers in close combat.", + "display_name": "frostbite_spider", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Giants are massive humanoid beings, known for their great strength and towering height, typically standing between 11 and 12 feet tall. Found in regions like Skyrim, they have gray skin, long limbs, and wear fur pelts, often adorned with animal bones and decorative markings. They should be avoided at all costs.", + "display_name": "giants", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Goblins are small, primitive humanoids found in Tamriel and Akavir, often living in sewers, caves, or ruins. They are known to be cunning, sometimes violent creatures with green or yellow skin and pointed ears.", + "display_name": "goblin", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hagravens are sinister, bird-like hybrids of women and witches, created through dark rituals to gain powerful magic. Known for their grotesque appearance, malevolent nature, and cunning, they are formidable foes who often consume living victims.", + "display_name": "hagraven", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ice Wraiths are ethereal, ice-based spirits found in Skyrim and surrounding regions, blending with their snowy surroundings to ambush prey. Known for their swift attacks and ability to transmit Witbane.", + "display_name": "ice_wraith", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Spriggans are mystical nature spirits, often tree-like humanoids, that protect secluded groves in Tamriel. They are hostile to travelers, and can summon woodland creatures, including black bears, for assistance.", + "display_name": "spriggan", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Trolls are dangerous large, ape-like creatures with three eyes, typically found in caves or forests, avoiding well-traveled paths.", + "display_name": "trolls", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wispmothers are mystical entities, often believed to be ghosts or nature spirits, found in the wilds of Tamriel. They are accompanied by wisps, which they refer to as their children.", + "display_name": "wispmother", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wisps, also known as Witchlights, are mysterious floating entities often found near Wispmothers. Associated with Y'ffre, they are believed to signal storms and symbolize renewal in the cycle of life.", + "display_name": "wisp", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragon Priests are powerful undead beings who once served ancient dragons in Skyrim. They are thought to rest in ornate coffins at dragon worship sites, rising to confront intruders if disturbed.", + "display_name": "dragon_priest", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Draugr are the mummified remains of ancient Nords. They are believed to reanimate and attack any intruders to their ancient burial sites.", + "display_name": "draugr", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Abacean Longfish are a long greyfish that can be caught with your hands around Skyrim. You do not know much more about the fish, but a fisher would.", + "display_name": "abacean_longfish", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Angelfish are rare orange fish with black stripes. You do not know much more about the fish, but a fisher would.", + "display_name": "angelfish", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The elusive Angler is a very small, rare fish. It has large teeth, a glowing lantern on its head, and dark slimey scales. It can be eaten though it has a rather horrible smell. You do not know much more about the fish, but a fisher would.", + "display_name": "angler", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Angler Larvae are very small pink fish covered in a translucent embryo .You do not know much more about the fish, but a fisher would. You do not know much more about the fish, but a fisher would.", + "display_name": "angler_larvae", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Arctic Char are long blue and green fish. They can be eaten with a mild, delicate, and slightly sweet flavor. You do not know much more about the fish, but a fisher would.", + "display_name": "arctic_char", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Arctic Grayling are long grey fish with a big top fin commonly found in freezing waters. They can be eaten and have are a white-fleshed fish with flaky meat that some say is delicious and versatile. You do not know much more about the fish, but a fisher would.", + "display_name": "arctic_grayling", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Brook Bass are small slender grey fish. They can be eaten and have a terrible taste. You do not know much more about the fish, but a fisher would.", + "display_name": "brook_bass", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Carp are a orange and white fish commonly found in temperate lakes. They can be eaten with a muddy fatty taste. You do not know much more about the fish, but a fisher would.", + "display_name": "carp", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Catfish are a large long green fish. They can be eaten with a great flavour, you are surprised there are not more shops selling cooked catfish. You do not know much more about the fish, but a fisher would.", + "display_name": "catfish", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cod are a large yellow fish. They can be eaten with a mild, delicate, and slightly sweet flavor with a flaky texture. You do not know much more about the fish, but a fisher would.", + "display_name": "cod", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Direfish are a large red fish found in underground fishing spots. They can be eaten with a rather iron taste. You do not know much more about the fish, but a fisher would.", + "display_name": "direfish", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glass Catfish are large translucent fish. They can be eaten with a rather stale taste. You do not know much more about the fish, but a fisher would.", + "display_name": "glass_catfish", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glassfish are small translucent. You do not know much more about the fish, but a fisher would.", + "display_name": "glassfish", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Goldfish are a orange and gold coloured fish. You do not know much more about the fish, but a fisher would.", + "display_name": "goldfish", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Juvenile Mudcrabs are a small handheld mudcrab with a grey coloured shell. You do not know much more about the fish, but a fisher would.", + "display_name": "juvenile_mudcrab", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lyretail Anthias are a small orange,yellow and purple fish. You do not know much more about the fish, but a fisher would.", + "display_name": "lyretail_anthias", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pearlfish are large pearly coloured fish. You do not know much more about the fish, but a fisher would.", + "display_name": "pearlfish", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pogfish are a large long blue fish. They can be eaten but they have a rather funny taste, but you cant put your finger on what it tastes funny. You do not know much more about the fish, but a fisher would.", + "display_name": "pogfish", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pygmy Sunfish are rare small black and blue fish found You do not know much more about the fish, but a fisher would.", + "display_name": "pygmy_sunfish", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Salmon are long blue and white fish commonly found everywhere. You do not know much more about the fish, but a fisher would.", + "display_name": "salmon", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scorpion Fish are large brown rough fish. They can be eaten but they have a rather terrible taste. ou do not know much more about the fish, but a fisher would.", + "display_name": "scorpion_fish", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Spade Fish are large black fish with an orange outline shaped like a spade. You do not know much more about the fish, but a fisher would. You do not know much more about the fish, but a fisher would.", + "display_name": "spadefish", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Tripod Spiderfish are small thing green fish with an odd shape. They can be eaten but do not have much of a taste due to the lack of meat. You do not know much more about the fish, but a fisher would.", + "display_name": "tripod_spiderfish", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampire Fish are large ugly green fishT hey can be eaten but have a rather foul taste. You do not know much more about the fish, but a fisher would.", + "display_name": "vampire_fish", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Histcarp are long dark orange fish found around Skyrim. You do not know much more about the fish, but a fisher would.", + "display_name": "histcarp", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Histcarp are long dark orange fish. You do not know much more about the fish, but a fisher would.", + "display_name": "river_betty", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Silverside Perch are long grey fish. You do not know much more about the fish, but a fisher would.", + "display_name": "silverside_perch", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cyrodilic Spadetail are long brown fish found around Skyrim. You do not know much more about the fish, but a fisher would.", + "display_name": "cyrodilic_spadetail", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bears are large, aggressive creatures found in the wilderness or caves, attacking if their territory is threatened.", + "display_name": "bear", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Deer are non-aggressive animals found throughout Skyrim, known for their shyness and tendency to flee when approached.", + "display_name": "deer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elk are non-aggressive animals found throughout Skyrim, known for their shyness and tendency to flee when approached.", + "display_name": "elk", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Foxes are small, non-aggressive creatures found in Skyrim's wilderness.", + "display_name": "fox", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Goats are non-aggressive animals found on mountain slopes in Skyrim.", + "display_name": "goat", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Horkers are sea animals resembling walruses, commonly found in packs near rivers and icy shores in northern Skyrim. They are slow and easy to avoid on land but become faster and harder to outrun in water.", + "display_name": "horker", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mammoths are massive creatures with long tusks found in the tundra of Skyrim, often seen alongside giants or traveling under their protection.", + "display_name": "mammoth", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sabre Cats are large, fast, and powerful felines found in the wilds of Skyrim. Known for their sharp front teeth, they are aggressive hunters that will attack on sight.", + "display_name": "sabre_cat", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skeevers are small, aggressive, rat-like creatures found in dark areas like caves or dungeons, as well as the wilderness of Skyrim.", + "display_name": "skeever", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wolves are, hostile canines commonly found in the wilds of Skyrim and Solstheim, often encountered alone or in small packs.", + "display_name": "wolf", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wolves are, hostile canines commonly found in the wilds of Skyrim and Solstheim, often encountered alone or in small packs.", + "display_name": "wolves", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Senche-cats are large, quadrupedal felines most commonly found in Elsweyr and Valenwood. To most people of Tamriel, they are massive jungle predators comparable to lions or tigers, but often larger and more aggressive. Among non-Khajiit, little distinction is made between senche-cats and other big cats, or even between them and certain Khajiit forms.", + "display_name": "senche-cats", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Terror birds are large, flightless birds native to Elsweyr, most commonly encountered in its northern regions and along nearby borderlands. They are aggressive, and charge with startling speed and powerful beaks. Their inability to fly does little to lessen their danger; hunters and caravan guards alike consider them among the most lethal predators of the southern wilds, and many tales recount travelers being trampled or torn apart after wandering too close to their territory.", + "display_name": "terror_bird", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + } + ], + "entry_count": 139, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Creatures", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/Oghma_-_Dynamic.sknpack b/oghma-sknpack/Oghma_-_Dynamic.sknpack new file mode 100644 index 0000000..c9ae690 --- /dev/null +++ b/oghma-sknpack/Oghma_-_Dynamic.sknpack @@ -0,0 +1,36 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Tamrielic lore from CHIM's Oghma Infinium — dynamic. Merges educated and common-knowledge entries graded by importance.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "The Dark Brotherhood Sanctuary is a location west of Falkreath, nestled south of the Roadside Ruins in Falkreath Hold. Hidden beneath the road, it serves as an active base for the Dark Brotherhood and features a single zone known as the Dark Brotherhood Sanctuary. It has recently been destroyed by the Imperials.", + "display_name": "dark_brotherhood_sanctuary", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dark Brotherhood Sanctuary is a located somwhere in Falkreath, but you do not know where exactly.You have heard rumors that they have recently been destroyed.", + "display_name": "dark_brotherhood_sanctuary", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + } + ], + "entry_count": 2, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Dynamic", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/Oghma_-_Figures_Gods.sknpack b/oghma-sknpack/Oghma_-_Figures_Gods.sknpack new file mode 100644 index 0000000..9ee6404 --- /dev/null +++ b/oghma-sknpack/Oghma_-_Figures_Gods.sknpack @@ -0,0 +1,2522 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Tamrielic lore from CHIM's Oghma Infinium — figures gods. Merges educated and common-knowledge entries graded by importance.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "Akatosh, also known by different names such as Auri-El to the elves and Alkosh to the Khajiit, is the chief deity of the Nine Divines in Tamrielic religion. He is revered as the Dragon God of Time, the patron of endurance, invincibility, and legitimacy, and is often depicted as a golden dragon. As one of the first Aedric spirits to form at the beginning of time, Akatosh holds a central place in many cultures, symbolizing both the orderly progression of time and the eternal stability of the Empire. His worship extends across Tamriel, where he is seen as the father of all dragons, and Alduin, a god of destruction in Nordic myth, is considered a controversial aspect of Akatosh.\n\nAkatosh is also closely associated with the founding of the Cyrodilic Empire. His blood was mystically joined with that of the first human Empress, Alessia, creating a divine covenant that protected the Empire from Daedric influence, symbolized by the Amulet of Kings. His role in maintaining the cosmic order is further emphasized during significant historical events like the Oblivion Crisis, where the Septim Emperor Martin transformed into Akatosh's fiery avatar to defeat the Daedric Prince Mehrunes Dagon. Akatosh is revered as the guardian of time and the embodiment of divine order, with his influence felt in the very fabric of the world.", + "display_name": "akatosh", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dibella is the Goddess of Beauty, Love, and Art, often referred to as the Lady of Love or the Passion Dancer. As one of the Divines, Dibella embodies the ideals of beauty, affection, and artistic expression. She teaches mortals to seek truth through beauty, encouraging the cultivation of love, friendship, and artistic inspiration. Dibella's followers, through devotion to her teachings, are believed to gain charm, grace, and harmony in their lives. She also emphasizes the importance of quality in love, rather than quantity, and discourages relationships with those of impure spirits, such as the undead.\n\nWorship of Dibella is widespread across Tamriel, with different regions venerating various aspects of her divinity. In Cyrodiil, Hammerfell, High Rock, and Skyrim, numerous cults and temples are dedicated to her, some focusing on women, art, or erotic instruction. Dibella’s influence is deeply personal, with her worshipers often engaging in intimate, direct relationships with their goddess. Her sacred places include the Temple of Dibella in Markarth, where the Sybil, a spiritual leader chosen through a secretive ceremony, serves as her earthly representative. Dibella is also associated with the Brush of Truepaint, an artifact said to have the power to bring artistic creations to life.", + "display_name": "dibella", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kynareth, also known as the Goddess of the Heavens, the Winds, and the Elements, is a revered member of the Eight or Nine Divines and the patron deity of sailors, travelers, and those who seek good fortune in daily life. Associated with nature's forces, she governs the winds, rain, and the unseen spirits of the air. In many legends, Kynareth is the first deity to support Lorkhan's creation of the mortal plane, offering the space for Mundus to exist. Her tears, in the form of rain, are said to mourn the loss of Shor, her husband in Nordic mythology. The Nords revere her as Kyne, the strongest of the Sky spirits, and attribute the gift of the thu'um, the dragon's voice, to her.\n\nKynareth's worship is widespread, with temples and shrines across Tamriel, particularly in Skyrim, where her temple in Whiterun is renowned for tending to the sacred Gildergreen tree. Her followers, especially in nature-based religions, view her as a provider of life and the elements, with shrines located in natural settings rather than urban temples. She is closely associated with rain, storms, and the natural world, and her artifacts, like the Boots of the Crusader and the Lord’s Mail, are highly prized for their connection to her divine protection and power. In other cultures, such as the Khajiit, Kynareth is known as Khenarthi, the goddess who guides souls to the afterlife.", + "display_name": "kynareth", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mara, known as the Mother-Goddess, is the Divine of Love, Fertility, and Compassion. Worshiped across Tamriel, she embodies the nurturing aspects of life, offering her blessings in the realms of agriculture, family, and marriage. Originally venerated as a fertility goddess, Mara's influence expanded to include love and the protection of home and family. She is often invoked at weddings, where her priests bless unions and sanctify the vows between partners. Mara is also considered the patron of motherhood and is seen as a figure of mercy and benevolence, guiding mortals toward peaceful and harmonious lives. Her teachings emphasize the importance of love, both in relationships and within the broader community, promoting unity and tolerance.\n\nMara is revered by nearly all races in Tamriel, except for the Dunmer and Argonians, though even in those regions, she is recognized by smaller groups. Her presence in the pantheons varies, with the Nords viewing her as the concubine of Shor, while the Bretons and Altmer see her as the wife of Akatosh or Auriel. Mara is closely linked to fertility deities in other cultures, such as the Redguard goddess Morwha. Her worship often focuses on the nurturing aspects of life, and her temples and shrines, such as the one in Riften, are centers for marriage ceremonies and blessings. Artifacts associated with Mara, like the Amulet of Mara, symbolize love and union, further reinforcing her role as a protector of human bonds.", + "display_name": "mara", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stendarr, also known as Stendarr the Steadfast, is the Divine of Mercy, Charity, Justice, and Righteous Might. He is a compassionate god who offers protection and healing to the weak and the suffering. His teachings encourage kindness, generosity, and the defense of the vulnerable, making him the patron of magistrates, rulers, knights, and the Imperial Legion. Stendarr's worship is widespread across Tamriel, and he is considered part of the pantheons of the Imperials, Bretons, Altmer, Bosmer, and Khajiit, where he is known as S'rendarr. His followers are called to offer help to those in need, and his mercy extends to all mortals, regardless of their faith.\n\nStendarr's priests, templars, and organizations like the Vigil of Stendarr uphold his values by combating Abominations—unnatural creatures such as daedra, vampires, lycanthropes, and the undead, who are viewed as enemies of mankind. Stendarr also bestows upon mortals the gift of magic, particularly in healing and protection, which his followers use in his name. Artifacts associated with Stendarr, such as the Gauntlets of the Crusader and Stendarr’s Hammer, symbolize his strength and righteous power. Temples dedicated to him provide healing and training, and his followers live by precepts of mercy, justice, and service to those in need.", + "display_name": "stendarr", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Arkay, also known as the Lord of the Wheel of Life, is the Divine associated with the cycle of birth and death, and the god of funerals, burial rites, and seasons. As a member of the Divines, Arkay ensures the natural order of life and death is maintained, and his priests play a critical role in preventing necromancy by bestowing Arkay's Law on the deceased. This divine protection ensures that the dead cannot be raised as undead. Necromancers see Arkay as their greatest foe, as his followers are dedicated to stopping the profane manipulation of mortal souls.\n\nArkay’s worship is widespread across Tamriel, from the Bretons, who believe he was once a mortal granted godhood by Mara, to the Nords, where he has replaced the older figure of Orkey. Redguards see him as a guide of souls through life and death, while Bosmer invoke him in matters concerning the Green Pact. Temples dedicated to Arkay, such as the Great Chapel of Arkay in Cyrodiil, perform sacred rites and house relics such as the Sword of the Crusader, a holy artifact. His followers, known as Arkayns, uphold his teachings by maintaining the balance of life and death, fiercely opposing necromancy and ensuring the proper passage of souls into the afterlife.", + "display_name": "arkay", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Zenithar, the God of Work and Commerce, is one of the Divines, revered for his association with labor, trade, wealth, and honest enterprise. Known as the Provider of Ease, Zenithar embodies the virtues of hard work, integrity, and prosperity through peaceful means. His priests teach that wealth and success are achieved not through war or theft but by diligent work and fair trade. Often symbolized by a blacksmith's anvil, Zenithar's influence extends across Cyrodiil, High Rock, and beyond, with close ties to Kynareth due to the natural resources required for craftsmanship.\n\nWorship of Zenithar is prevalent in cities with strong mercantile traditions, such as Leyawiin and Kambria, and his temples, known as Resolutions, are dedicated to fostering honest labor and prosperity. His devotees may offer prayers using special prayer beads for good fortune in business and negotiations. Zenithar is also linked to the Bosmeri god Z'en, showing his widespread influence across different cultures. Artifacts such as the Mace of the Crusader, which burns enemies with holy flames, and the Golden Anvil, blessed by Zenithar himself, are symbols of his divine favor. Zenithar's planet, seen in the skies of Mundus, represents his presence in both the material and spiritual realms, embodying his role as a god of work and reward.", + "display_name": "zenithar", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Julianos, the God of Wisdom and Logic, is one of the Divines in the Cyrodilic pantheon, revered for his governance over knowledge, law, history, and intellectual pursuits. He is often associated with magic and is particularly venerated by scholars, wizards, and legal minds. His teachings emphasize the importance of learning, logic, and the pursuit of truth. His domains include sorcery, alchemy, and enchantment, making him a popular deity among those who value scholarship and wisdom. His symbol, a triangle, reflects the structured nature of his teachings, and his followers are known to seek wisdom from books and scholars. Monastic orders dedicated to Julianos, such as those founded by Tiber Septim, are also responsible for the preservation of the Elder Scrolls.\n\nWorship of Julianos is prevalent in the Imperial City, where a Chantry is dedicated to him, as well as in the Iliac Bay region, where his temples are called Schools of Julianos, functioning as centers of education. The ancient Nords once worshipped him as Jhunal, the father of language and mathematics, before he became part of the Divines under the name Julianos. He is the patron of several regions, including Lainlyn and Satakalaam, and remains a respected figure for those seeking justice and knowledge. Julianos is said to have created the Shield of the Crusader to aid Pelinal Whitestrake in his battle against Umaril the Unfeathered, further cementing his role as a protector of justice. His planet, JHUNAL, represents his place in the celestial order, marking the eye of the Mage constellation in the skies of Mundus.", + "display_name": "julianos", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lorkhan, also known as the Missing God, is a central figure in Tamrielic myth, often regarded as the Creator, Trickster, and Tester of mortals. Revered and reviled, Lorkhan's influence is woven into every culture’s mythology, and he is credited with initiating the creation of the mortal plane, Nirn. He convinced the et'Ada, the Original Spirits, to create Mundus, the world, disrupting the cosmic order. Following the world's creation, Lorkhan was separated from his divine essence—most commonly through the removal of his Heart—and exiled from the divine realm. This event, referred to as the \"shattering of Lorkhan,\" is depicted as a punishment for his role in the creation of the flawed mortal realm, though some legends suggest he willingly accepted this fate.\n\nThe perceptions of Lorkhan vary greatly between different races. To the Elves, he is a deceiver responsible for trapping them in the mortal realm, severing their connection to the spiritual plane. The Altmer view him as the ultimate antagonist, a being who imprisoned them in a world of suffering and limitation. Conversely, humans, especially Nords and Imperials, honor him as a heroic figure. In Skyrim, he is worshipped as Shor, the god who sacrificed himself to create the world. Redguards know him as Sep, a trickster who helped shape the mortal world but was cursed for his transgressions. Reachmen revere him as the Spirit of Man, while Khajiit associate him with Lorkhaj, the Moon Beast, whose heart's corruption birthed the dark dro-m’Athra. Despite his many names and forms, Lorkhan remains a symbol of the mortal struggle, embodying both the potential and the suffering of the world he helped create.", + "display_name": "lorkhan", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Trinimac, known as the Warrior and the Paragon, was a prominent god of the early Aldmer and considered one of the most powerful et'Ada. Revered as the champion of Auri-El and a warrior spirit, Trinimac played a significant role in Aldmeri legends, particularly in the conflict against Lorkhan. He was known for his strength and leadership, often depicted holding his sword, Penitent (Vosh Rakh, the \"Blade of Courage\"). Trinimac was especially venerated by the Altmer, Ayleids, and early Orcs, and was regarded as a god who stood for strength, honor, and unity. However, his legacy is deeply entwined with his transformation into Malacath, a Daedric Prince, after an encounter with Boethiah.\n\nAccording to legend, Boethiah consumed Trinimac and took on his form to spread new teachings among the Aldmer, leading to the creation of the Chimer and Orcs. Boethiah's act of devouring Trinimac resulted in his followers transforming into the Orsimer (Orcs), and Trinimac himself was reborn as Malacath, a weaker and vengeful version of his former self. While many Orcs continued to worship Malacath, others maintained belief in the purity of Trinimac. During the Second Era, leaders like King Kurog and King Gortwog revived the worship of Trinimac, positioning him as a god of unity and civilization, in contrast to the savage nature associated with Malacath. Trinimac’s story remains central to the identity and history of the Orcs and is a key figure in the cultural divergence between Chimer and Orsimer.", + "display_name": "trinimac", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Talos, also known as Tiber Septim, was a legendary figure who rose to prominence as the first Emperor of the unified Tamriel and later ascended to godhood. In life, Talos conquered all of Tamriel, founding the Third Empire and ushering in the Third Era. Born in Atmora, his birth name, Talos, means \"Stormcrown\" in the ancient Ehlnofey language. Throughout his military and political career, he was also known by other titles, including Ysmir, Dragon of the North, the Grey Wind, and Storm of Kyne. His legendary conquests culminated in the subjugation of the Aldmeri Dominion, leading to his later veneration by humans as the \"Hero-God of Mankind.\" Upon his death in 3E 38, Tiber Septim is believed to have ascended to become the ninth Divine, joining the pantheon of the Eight Divines as Talos.\n\nTalos is revered as the patron of warriors, adventurers, and rulers, symbolizing the virtues of strength, courage, and leadership. His divine status, however, is a point of contention, especially among the Altmer, who view his apotheosis with hostility due to his conquest of their lands. In the Fourth Era, worship of Talos was banned following the White-Gold Concordat between the Aldmeri Dominion and the Empire, which claimed that a man could not achieve godhood. This ban ignited the Skyrim Civil War, with the Stormcloaks, led by Ulfric Stormcloak, rebelling in defense of their right to worship Talos. Despite the ban, Talos remains a powerful symbol of unity and strength for many, particularly among the Nords and other human races. Amulets of Talos, often crafted from dragonbone and scales, are used by his followers to invoke his blessing and strength in their endeavors.", + "display_name": "talos", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Azura, also known as the Queen of Dawn and Dusk, is one of the most revered Daedric Princes in Tamrielic mythology, especially in Dunmeri and Khajiiti cultures. She governs over the realms of dusk and dawn, the in-between moments of twilight, as well as fate, prophecy, mystery, and magic. Though a Daedric Prince, Azura is often seen as benevolent compared to others, with a deep concern for the well-being of her mortal followers, seeking their genuine love and emotional engagement.\n\nAzura's followers believe that she desires not only devotion but also self-love, and that her pain is shared when they hate themselves. This attitude has made her followers, called Azurites, deeply loyal and devoted. She is often represented in a female form, symbolizing beauty, fate, and the transitional moments of day and night. Her realm, Moonshadow, is described as a place of overwhelming beauty that can render mortals \"half-blind\" with its splendor.", + "display_name": "azura", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Boethiah, also known as the Prince of Plots, is one of the more enigmatic and fearsome Daedric Princes in The Elder Scrolls universe. Revered for her dominion over deceit, conspiracy, treachery, murder, and the overthrow of authority, Boethiah is a force of destruction and transformation. Known by many names, such as the Dark Warrior, Deceiver of Nations, and Goddess of Destruction, Boethiah's influence is often destructive yet foundational for change. Her sphere of influence revolves around inspiring mortals to act through cruelty and violence, making battle and death seen as blessings in her view.\n\nBoethiah is a shapeshifter and frequently changes form, appearing as either male or female, sometimes within the same narrative. Her realm of Oblivion is called Attribution’s Share, a twisted landscape filled with plots, betrayals, and endless challenges. She often tests mortals by pitting them against each other in deadly contests, fostering a culture where strength, treachery, and cunning are paramount.", + "display_name": "boethiah", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Clavicus Vile is a Daedric Prince associated with trickery, bargains, and the granting of wishes. Known as the Prince of Trickery and Bargains, Clavicus enjoys making pacts with mortals, often granting them their desires in ways that benefit him or lead to unintended consequences. He is often depicted alongside his loyal companion, Barbas, a shapeshifting Daedra who frequently takes the form of a dog. Barbas holds a portion of Clavicus Vile's power, leading to speculation that the two may be halves of the same being. Vile's realm, the Fields of Regret, is a tranquil and idyllic landscape that reflects his playful but deceptive nature.\n\nClavicus Vile is known for his sophisticated and calculating approach, making deals that often ensnare those who seek his help. Despite his love for manipulation, he is not always malevolent and has, on occasion, acted in ways that benefit the greater good, though always with his interests in mind. His notable artifacts include the Masque of Clavicus Vile, which grants charm to its wearer, and the Umbra Sword, a soul-trapping blade tied to sentient power. Clavicus Vile is regarded as one of the more neutral Daedric Princes, though his bargains often come with hidden costs.", + "display_name": "calvicus_vile", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hermaeus Mora, also known as the Daedric Prince of Forbidden Knowledge, is a powerful and ancient entity whose realm is the collection and safeguarding of knowledge, fate, and hidden truths. Often referred to as the Demon of Knowledge or Gardener of Men, Mora's insatiable curiosity leads him to amass all information that exists or ever will exist. He is not concerned with altering fate but rather with ensuring that nothing remains unknown. Mora is known to entrap mortals with the lure of forbidden knowledge, offering immense power in exchange for their servitude. However, this knowledge often comes at a high cost, as mortals who delve too deeply into his secrets risk madness or the loss of their identity.\n\nMora resides in Apocrypha, his plane of Oblivion, an infinite library filled with untitled black books containing forbidden secrets. The realm is populated by his servants, including Seekers and Lurkers, grotesque creatures that enforce Mora's will. Mortals who journey to Apocrypha through his Black Books often face peril but may gain valuable knowledge if they can survive its horrors. Mora is also associated with the Oghma Infinium, a powerful artifact containing vast knowledge. Though he may seem more subtle and calculating than other Daedric Princes, Mora is nonetheless dangerous, as he manipulates those who seek his secrets for his own purposes.", + "display_name": "hermaeus_mora", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hircine, known as the Huntsman or Lord of the Hunt, is a Daedric Prince whose domain encompasses the hunt, beasts, and the thrill of the chase. His sphere, also referred to as the Greatest Game, involves the pursuit and sacrifice of both mortals and beasts. Hircine is the father of lycanthropy, known as the Father of Manbeasts, and takes pride in the affliction he bestows upon mortals. Lycanthropes are often considered his \"children,\" and he claims their souls to serve him in the afterlife, where they join him in his realm, the Hunting Grounds. Hircine's realm is an endless forest teeming with fierce creatures and Daedra, where eternal hunts and battles occur in a cycle of death and rebirth.\n\nHircine is revered across Tamriel, particularly among those who seek power through lycanthropy or respect the primal forces of nature. He manifests in several aspects, each symbolizing a different form of the hunt, such as the wolf, bear, and fox. Though he is known for his sportsmanship and values fairness in the hunt, his followers and cults sometimes take his worship to brutal extremes. Among his most prominent cults are the Reachfolk, who honor Hircine as the source of their survival and martial prowess, and the Glenmoril Wyrd, who practice lycanthropy and serve his will. His summoning day is the 5th of Mid Year, and he is associated with several powerful artifacts, including the Ring of Hircine and the Savior’s Hide, which grant protection and control over lycanthropy.", + "display_name": "hircine", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Malacath, also known by many names such as Mauloch, Orkey, and the Blue God, is the Daedric Prince whose sphere encompasses betrayal, broken promises, curses, and the patronage of outcasts and spurned people. He is regarded as the God of Curses, Lord of Monsters, and Defender of the Betrayed. Malacath was once Trinimac, a powerful Aedra, before his transformation at the hands of Boethiah. His origin is closely tied to this transformation, where Trinimac was either devoured or humiliated by Boethiah and subsequently twisted into the vengeful being known as Malacath.\n\nMalacath is particularly revered by the Orsimer (Orcs), who regard him as their patron deity. Orcs live by the Code of Mauloch, a set of rules that values honor, vengeance, and strength. Orcish strongholds follow these principles, with their leaders and warriors often invoking Malacath in their daily lives. However, some Orcs believe that Trinimac still exists as a separate entity and that Malacath is a different being entirely, leading to tension within Orcish culture.", + "display_name": "malacath", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mehrunes Dagon is the Daedric Prince of Destruction, Change, Revolution, and Ambition. Known by many titles, including the Lord of Change, Master of Razors, and Prince of Disaster, he embodies chaos and seeks to bring about cataclysmic transformations in both the physical world and the hearts of mortals. His sphere encompasses destructive forces like fire, floods, and earthquakes, and he is associated with ambition and rebellion. Dagon's influence is linked to natural disasters, and his followers often engage in acts of violence and destruction in his name. He is a central figure in several cults, most notably the Mythic Dawn, whose actions precipitated the Oblivion Crisis.\n\nDagon rules over the Deadlands, a fiery and desolate realm in Oblivion characterized by rivers of lava, volcanic landscapes, and violent storms. His legions include Dremora, Daedroths, and other destructive Daedra who enforce his will. One of his most infamous artifacts is Mehrunes' Razor, a dagger capable of slaying foes instantly. His sphere of influence has caused devastation throughout Tamriel’s history, from the destruction of cities to wide-scale invasions, as seen during the Oblivion Crisis.", + "display_name": "mehrune_dagon", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mephala, also known as the Webspinner, is a Daedric Prince associated with murder, lies, deception, secrets, and intrigue. Often depicted as androgynous and referred to as the Spinner or the Spider, Mephala manipulates the lives of mortals by weaving intricate webs of plots and conspiracies. She is considered a master of secret knowledge, focusing on information that remains hidden or unknown. Mephala takes great delight in strife and manipulation, and her actions often lead to conflict, betrayal, and chaos. She values secrets above all and is known to whisper forbidden knowledge to those who come across her shrines or artifacts.\n\nMephala has played a significant role in the culture of various societies across Tamriel, particularly in Morrowind, where she is considered one of the \"Good Daedra\" and helped shape the Great Houses through her influence. She is also believed to have founded the Morag Tong, a secretive society of assassins, and some legends link her to the formation of the Dark Brotherhood. Her artifacts, such as the Ebony Blade, are often tied to acts of betrayal and violence, empowering their wielders through the destruction of those who trust them. Mephala remains a figure of mystery and danger, her influence felt wherever secrets, murder, and deception take root.", + "display_name": "mephala", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Meridia, known as the Lady of Infinite Energies, is a Daedric Prince associated with life, light, and the energies of living things. She is revered for her fervent hatred of the undead and the forces of decay, often rewarding those who eliminate such blights from the world. Meridia is considered one of the few Daedric Princes who is not entirely malevolent, though her enemies view her as a force of obsessive order, and she is sometimes called the Lady of Greed. Her sphere of influence is largely focused on promoting purity within chaos and combating what she deems false-life, particularly necromancy. Her symbol is the sunburst, and she rules over a realm known as the Colored Rooms, inhabited by her Auroran servants.\n\nOnce believed to have been one of the Magne-Ge, divine beings who fled to Aetherius after the creation of Mundus, Meridia was cast out for consorting with forbidden powers. Despite her Daedric status, she often allies with mortals against other Princes like Molag Bal, with whom she shares a bitter rivalry. Her champions, such as the ancient Ayleid warlord Umaril the Unfeathered, are sometimes granted immortality at the cost of free will. Meridia's most notable artifacts include Dawnbreaker, a sword that burns with holy light, and the Ring of Khajiiti, a powerful relic she has bestowed upon her chosen heroes.", + "display_name": "meridia", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Molag Bal, often called the God of Schemes, Lord of Domination, and Harvester of Souls, is a Daedric Prince whose sphere centers on domination, enslavement, and harvesting the souls of mortals. He is known for his unrelenting cruelty and his desire to impose his will upon all mortal realms, seeking to bring Nirn into his plane of Oblivion, Coldharbour. Coldharbour is a twisted reflection of Nirn, a place of despair where souls are tortured and enslaved under Molag Bal’s reign.\n\nMolag Bal is characterized by patience and cunning. He takes pleasure in suffering, using manipulation, lies, and deceit to gain power. One of his primary goals is to collect as many mortal souls as possible, constantly scheming to expand his dominion. He is associated with necromancy, often raising the dead to serve him, and is seen as a powerful force of corruption and evil across Tamriel.", + "display_name": "molag_bal", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Namira, known as the Lady of Decay, is a Daedric Prince whose sphere encompasses darkness, death, rot, and rebirth. Revered as the patron of vermin, decay, and squalor, Namira is often associated with creatures that invoke disgust, such as slugs and spiders. Her presence represents the darker aspects of existence, including hunger, revulsion, and the inevitable decline of all living things. She is worshiped by the downtrodden and outcast, and her influence extends into secretive cults that venerate death and decay.\n\nNamira's followers often live in squalid conditions, believing that filth and misery honor her. Some worshipers practice cannibalism and ritual sacrifice to prove their devotion. Namira is also connected to the corruption of souls, particularly in the Khajiiti mythos, where she is known as Namiira, the Great Darkness, who corrupts spirits and drags them into her void. Her artifacts, such as the Ring of Namira, reflect her dominion over decay, granting her champions power through the consumption of death and flesh.", + "display_name": "namira", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nocturnal is a Daedric Prince associated with night, darkness, mystery, and shadows. Known by many titles such as the Mistress of Shadows, Lady of the Night, and the Shadow Queen, she rules over the unseen and unfathomable. Nocturnal is often depicted alongside ravens and crows, embodying secrecy and stealth. She is particularly revered by thieves and those who operate in secrecy, notably worshiped by groups like the Nightingales who protect the Ebonmere, a portal to her realm, Evergloam.\n\nNocturnal’s power is tied to shadow magic, and she often uses subtle manipulation to draw mortals into her service, granting them protection in exchange for loyalty. She is also connected to powerful Daedric artifacts like the Skeleton Key, which can unlock anything, and the Gray Cowl of Nocturnal, which erases the wearer’s identity from history. Her influence is ever-present among thieves, offering luck and guidance in exchange for devotion, though her true motives remain shrouded in darkness.", + "display_name": "nocturnal", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Peryite is one of the Daedric Princes of Oblivion, often associated with pestilence, disease, and the natural order. Known as the Taskmaster and the Lord of Pestilence, Peryite's sphere involves maintaining the lowest orders of Oblivion and ensuring balance through contamination and decay. His influence is often seen as destructive, manifesting through plagues and diseases that he \"blesses\" his followers with. Despite his reputation as one of the weaker Princes, Peryite’s plagues have the potential to devastate entire populations. He is often depicted as a green, four-legged dragon, though his form is considered a mockery of Akatosh.\n\nPeryite's followers, which include various cults and outcasts, worship him by embracing disease and decay as necessary forces to cleanse the world. Groups such as the Scalecaller Cult and the Afflicted see illness as a divine gift, while others view Peryite as a necessary force for maintaining natural balance. His most famous artifact is Spellbreaker, an ancient shield capable of deflecting both physical and magical attacks. Peryite's influence can also be seen in several legendary plagues, with some attributing the spread of deadly illnesses like the Knahaten Flu to his malevolent power.", + "display_name": "peryite", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sanguine is the Daedric Prince of revelry, debauchery, and hedonistic indulgence. Known as the Lord of Revelry, Sanguine embodies excess in all forms, encouraging the pursuit of pleasure, lust, and wild abandon. He is commonly depicted as a portly, crimson-skinned figure with a mischievous grin, often holding a bottle or surrounded by indulgences. His sphere encompasses not only drunken revelry and wild orgies but also the darker aspects of human desire, such as perversion and excess. Sanguine's influence is most evident in the Myriad Realms of Revelry, small chaotic realms dedicated to endless pleasure, where mortals often become trapped, lured by indulgence.\n\nDespite his carefree demeanor, Sanguine's worship can have dangerous consequences. His followers, ranging from party-goers to secret cults, revel in excess, sometimes to the point of destruction or death. Celebrations in his name can be found across Tamriel, from Khajiiti midnight rites to Imperial festivals, where indulgence in drink, dance, and flesh is seen as acts of devotion. His most famous artifact, the Sanguine Rose, allows its wielder to summon a Daedra to cause havoc. Though Sanguine appears less malicious compared to other Daedric Princes, his power lies in seduction and indulgence, tempting mortals to abandon restraint for a life of dangerous pleasure.", + "display_name": "sanguine", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sheogorath is the Daedric Prince of Madness, chaos, and creativity, known for his unpredictable and often cruel sense of humor. He rules the Shivering Isles, a plane of Oblivion divided into Mania and Dementia, reflecting the dual aspects of madness. Sheogorath is notorious for his bizarre, sadistic, and whimsical behavior, often treating mortals and even other Daedric Princes as his playthings. His appearance is usually that of a well-dressed, eccentric man wielding a cane, which contrasts sharply with his unpredictable and dangerous nature. Legends tell that Sheogorath was once Jyggalag, the Daedric Prince of Order, but was cursed by the other Daedric Princes to embody the chaos he once despised. This curse led to the recurring Greymarch, during which Jyggalag would briefly reclaim his form before reverting back to Sheogorath.\n\nSheogorath is revered and feared in many cultures, especially among the Khajiit, who call him Sheggorath, or \"Skooma Cat\", and the Dunmer, who regard him as one of the Four Corners of the House of Troubles. His influence is marked by a fondness for driving mortals into madness, either through direct interaction or by creating chaotic circumstances that lead to mental unraveling. He delights in playing cruel pranks, manipulating the minds of his followers, and challenging them with seemingly impossible tasks. Sheogorath’s iconic artifacts include the Wabbajack, a staff that can unpredictably transform its targets, and the Fork of Horripilation, a mundane-looking but cursed utensil he uses to torment mortals for his amusement.", + "display_name": "sheogorath", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vaermina, the Daedric Prince of Nightmares, Dreams, and Dark Omens, is feared for her control over the subconscious. Known by titles such as the Mistress of Nightmares and the Dreamweaver, she governs the sphere of dreams and nightmares, often tormenting mortals as they sleep. Her plane of Oblivion, Quagmire, is a constantly shifting realm of horrors, where reality morphs into progressively more terrifying forms. Vaermina feeds on the memories and fears of mortals, often leaving them scarred with visions of despair and hopelessness. While she delights in the corruption of the mortal mind, she is also the giver of dark portents and destructive prophecies.\n\nVaermina is worshiped by cults who perform blood sacrifices and use dark magic to gain her favor or summon her minions. Her followers often partake in rituals involving sleep or nightmares, and some cults use her alchemical creation, Vaermina’s Torpor, to enter a dream-state known as the Dreamstride, allowing the user to traverse great distances within the dream world. Vaermina’s most notable artifact is the Skull of Corruption, a staff that creates dark duplicates of its victims, feeding on their memories. Despite her malevolent nature, Vaermina is regarded as a weaver of truth within dreams, though the revelations she grants are often laced with madness and fear.", + "display_name": "vaermina", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skald is the elderly Jarl of Dawnstar, a position he has held for 35 years. A staunch supporter of the Stormcloak rebellion, Skald is fiercely loyal to Ulfric Stormcloak, the leader of the movement. However, his strong allegiance to the Stormcloak cause has made him somewhat contentious among the townsfolk. Many view his political fanaticism as foolish and find his personality unpleasant, leading to a general sentiment that he is too arrogant and zealous for the role of Jarl. Should the Imperial Legion succeed in their campaign, it is likely that Skald will be overthrown and replaced by Brina Merilis, who is favored by a significant portion of the population.", + "display_name": "skald", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Siddgeir is the Nord Jarl of Falkreath and a supporter of the Imperial Legion. He is the nephew of Dengeir of Stuhn, the former Jarl, and his other uncle is Thadgeir, a seasoned warrior. Siddgeir asserts that he deposed Dengeir due to his uncle's advanced age, though Dengeir believes that Imperial influence played a role in his ousting. Despite his position, Siddgeir is often perceived as lazy and self-serving, utilizing his status to enjoy its privileges without taking on the responsibilities of leadership.", + "display_name": "siddgeir", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Igmund is the Jarl of Markarth, a Nord barbarian who governs the city with the aid of his steward and uncle, Raerek. He is a supporter of the Imperial Legion amid the ongoing civil war in Skyrim.", + "display_name": "igmund", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Idgrod Ravencrone is the elderly Nord Jarl of Hjaalmarch, residing in Highmoon Hall in Morthal. As a mystic, she is known for her visions, which she claims are granted to her by the Eight Divines. These visions often influence her decisions more than the opinions of her subjects, leading to some skepticism among the townsfolk regarding her judgments.\n\nIdgrod governs alongside her husband, Aslfur, who acts as her steward, and is accompanied by her housecarl, Gorm. She is also the mother of Idgrod the Younger and Joric. Despite her reliance on visions, she maintains an essential position within the community, demonstrating a connection to both the spiritual and political realms of her hold. Idgrod is generally seen as unaggressive and holds a moral stance that does not involve crime, reflecting her role as a leader guided by her mystical insights.", + "display_name": "idgrod", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Laila Law-Giver is the Jarl of Riften, residing in Mistveil Keep. While she holds the title of Jarl, the extent of her actual authority over the citizens of the Rift is often called into question.", + "display_name": "laila", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elisif the Fair is the Jarl of Solitude and the widow of High King Torygg. With aspirations of becoming the High Queen of Skyrim, she is often regarded as a potential leader, although she feels the timing is not yet right to formally express her ambitions. Elisif harbors doubts about entrusting the ongoing war effort to General Tullius, feeling he may not fully represent the needs of Skyrim, yet she sees no viable alternatives.", + "display_name": "elisif", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Balgruuf the Greater is the Jarl of Whiterun and a direct descendant of King Olaf One-Eye. Known for his prowess as a Nord warrior, he has a deep respect for the Greybeards and made the pilgrimage to High Hrothgar in his youth. Throughout his life, Balgruuf has maintained a rivalry with Ulfric Stormcloak, which has roots in their shared upbringing.", + "display_name": "balgruuf", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ulfric Stormcloak is the Jarl of Windhelm and the leader of the Stormcloak Rebellion, a movement aimed at opposing Imperial rule in Skyrim. A member of the Stormcloak Clan, he has become a highly divisive figure within the province, embodying the struggle for political independence and the right to freely worship Talos.\n\nUlfric’s leadership is characterized by his charisma and determination to restore what he sees as Skyrim’s rightful autonomy. His efforts to galvanize support against the Empire have made him a controversial icon, eliciting both fervent loyalty from his followers and staunch opposition from those who favor Imperial governance. The legacy and impact of Ulfric's actions continue to shape the political landscape of Skyrim.", + "display_name": "ulfric_stormcloak", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Korir is the Jarl of Winterhold, residing in the Jarl's Longhouse alongside his wife, Thaena, and their son, Assur.", + "display_name": "korir", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dagoth Ur, originally known as Voryn Dagoth, is a central figure in the history and mythology of Morrowind. He served as the immortal Lord High Councilor of House Dagoth and is often referred to by titles such as the Sharmat, Awakened Lord of the Sixth House, and Father of the Mountain by his followers. In the Tribunal's narrative, he is demonized as the embodiment of evil, often labeled as the Devil and the Enemy, leading to a perception of him as the False Dreamer.\n\nIn the First Era, Dagoth Ur played a pivotal role in the events leading up to the Battle of Red Mountain. His revelation to the Hortator Indoril Nerevar about House Dagoth's discovery of the Heart of Lorkhan, a powerful source of divine energy, marked him as a traitor in the eyes of the Chimer. Following the battle, which resulted in the defeat of Dagoth and the Sixth House, he and his followers were largely erased from history by the Tribunal Temple. However, Dagoth Ur and his kin survived, lying dormant beneath Red Mountain for millennia. He eventually awoke in the late Second Era, devising plans to construct a new Numidium named Akulakhan and unleashing the Blight across Morrowind, creating horrific Corprus monsters and threatening the Tribunal's power. His reign of terror concluded in the late Third Era when the Nerevarine ventured into Red Mountain and ultimately defeated him, bringing an end to his dark influence over the region.", + "display_name": "dagoth_ur", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Nerevarine, known as the prophesied Incarnate, is the reincarnation of the legendary Chimeri warlord Indoril Nerevar. Arriving in Morrowind in the year 3E 427, the Nerevarine was sent by Emperor Uriel Septim VII as a prisoner, their fate intertwined with a prophecy that foretold the return of Indoril Nerevar to defeat the dark lord Dagoth Ur and restore the former glory of Resdayn. The Nerevarine fulfilled this prophecy, successfully ending the Blight and earning titles such as Nerevar-Born-Again, Nerevar Reborn, Starkborn, Moon-and-Star Reborn, Hortator, Mourner of the Tribe Unmourned, Redeemer of the False Gods, and Blodskaal.\n\nAs the Nerevarine's destiny unfolded, they faced formidable foes, including living gods and the champions of the Daedric Prince Hircine in the icy expanse of Solstheim. Following these epic battles, rumors circulated at the end of the Third Era regarding the Nerevarine's expedition to Akavir, from which they have not returned, leaving their ultimate fate shrouded in mystery.", + "display_name": "nerevarine", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Uriel Septim VII was the twenty-first or twenty-fourth Emperor of the Third Empire and the Septim Dynasty. He ascended to the throne in 3E 368 following the death of his father, Pelagius Septim IV, and ruled for 55 of the 65 years until his assassination in 3E 433. Uriel VII's reign was marked by significant challenges and upheaval, culminating in the crisis that followed his death.\n\nDuring his time as emperor, Uriel VII married Princess Caula Voria, with whom he had four legitimate heirs: Ariella, Geldall, Enman, and Ebel. Additionally, he fathered at least two sons outside of marriage—Calaxes, who was publicly acknowledged, and Martin, who remained secreted away and unacknowledged. Martin would later play a pivotal role in the events of the Oblivion Crisis, ultimately becoming the last of the Septim bloodline.", + "display_name": "uriel_septim_seventh", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Uriel Septim VII was the twenty-first or twenty-fourth Emperor of the Third Empire and the Septim Dynasty. He ascended to the throne in 3E 368 following the death of his father, Pelagius Septim IV, and ruled for 55 of the 65 years until his assassination in 3E 433. Uriel VII's reign was marked by significant challenges and upheaval, culminating in the crisis that followed his death.\n\nDuring his time as emperor, Uriel VII married Princess Caula Voria, with whom he had four legitimate heirs: Ariella, Geldall, Enman, and Ebel. Additionally, he fathered at least two sons outside of marriage—Calaxes, who was publicly acknowledged, and Martin, who remained secreted away and unacknowledged. Martin would later play a pivotal role in the events of the Oblivion Crisis, ultimately becoming the last of the Septim bloodline.", + "display_name": "uriel_septim_7th", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Uriel Septim VII was the twenty-first or twenty-fourth Emperor of the Third Empire and the Septim Dynasty. He ascended to the throne in 3E 368 following the death of his father, Pelagius Septim IV, and ruled for 55 of the 65 years until his assassination in 3E 433. Uriel VII's reign was marked by significant challenges and upheaval, culminating in the crisis that followed his death.\n\nDuring his time as emperor, Uriel VII married Princess Caula Voria, with whom he had four legitimate heirs: Ariella, Geldall, Enman, and Ebel. Additionally, he fathered at least two sons outside of marriage—Calaxes, who was publicly acknowledged, and Martin, who remained secreted away and unacknowledged. Martin would later play a pivotal role in the events of the Oblivion Crisis, ultimately becoming the last of the Septim bloodline.", + "display_name": "uriel_septim_vii", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Almalexia, revered as Almalexia the Lover and Ayem, was one of the three God-Kings of the Tribunal, a pantheon that included Vivec and Sotha Sil. Known for her compassion and protective nature, she earned titles such as \"Healing Mother,\" \"Lady of Mercy,\" and \"Mother Morrowind\" among the Dunmer. Residing in the temple city of Mournhold, Almalexia was deeply connected with House Indoril and was well-regarded for her approachability, often walking among her people. As a mortal, she was married to Lord Indoril Nerevar, the First Councilor of Resdayn, and later became the Consort of Vivec after her husband's death in the Battle of Red Mountain.\n\nFollowing Nerevar's demise, Almalexia and the other Tribunal members swore an oath to never exploit the divine power of the Heart of Lorkhan, a promise they eventually broke to achieve godhood. This transformation not only changed the Chimer into the Dunmer but also established the Tribunal as immortal protectors of the Dunmer people. However, the truth of their ascendance was obscured, portrayed instead as a result of their virtues and wisdom. Over time, Almalexia's powers waned, particularly during her battles against Dagoth Ur. Eventually, she succumbed to madness, culminating in the murder of Sotha Sil and her own death in a failed attempt to eliminate the Nerevarine in 3E 427.", + "display_name": "almalexia", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sotha Sil, also known as Seht, was the wizard-mystic god of the Dunmer and one of the most enigmatic figures of the Tribunal. Revered by his followers for his wisdom and magical prowess, he held many titles, including the Mainspring Ever-Wound, the Father of Mysteries, and the Clockwork King of the Three in One. Unlike his counterparts, Sotha Sil did not consider himself a god but allowed Vivec and Almalexia to embrace their divine identities. He famously rejected the notion of free will, dedicating himself to the creation of his greatest invention, the Clockwork City, where his Clockwork Apostles resided and pursued a vision for a new Nirn.\n\nSotha Sil's legacy extended beyond his mechanical creations. He negotiated the Coldharbour Compact with eight Daedric Princes, believed to limit their direct involvement in mortal affairs, although this agreement was not always upheld. His craftsmanship yielded numerous artifacts and advanced metallic prosthetics, which could replace lost limbs, reflecting his belief that \"the truth of clockwork is for all.\" However, his followers took great care to protect his inventions from misuse. With the advent of the New Temple in the Fourth Era, Sotha Sil, along with the other members of the Tribunal, was reclassified as a saint, while the worship of the Good Daedra was restored as central to Dunmeri faith.", + "display_name": "sotha_sil", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vivec, also known as Vehk, is the Warrior-Poet deity of the Dunmer and a central figure in the pantheon of Morrowind. As the Guardian God-King of Vvardenfell, he serves as the protector against the dark forces associated with Red Mountain. His dual heritage, being both Dunmer and Chimer, symbolizes the complexity of the Dunmeri spirit. Vivec is renowned for his artistic prowess, producing numerous writings, including the enigmatic \"36 Lessons,\" which serve as guidance for the prophesied Nerevarine.\n\nThroughout his extensive reign, Vivec became a pivotal figure for the Dunmer, residing in his namesake city where pilgrims sought his wisdom. He wielded various artifacts, such as his legendary spear Muatra, and was known for his dualistic nature, embodying both martial prowess and poetic expression. However, as the Third Era drew to a close, he sacrificed his divinity, leading to his disappearance and the subsequent collapse of the Tribunal Temple. In the New Temple's teachings, Vivec is reinterpreted as Saint Vivec, distanced from his former divine status, illustrating the complex legacy of a god who was both revered and contested.", + "display_name": "vivec", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pelinal Whitestrake is a legendary figure revered as a demigod and champion of Queen Alessia during the early First Era's Alessian Slave Rebellion. Known for his fierce combat prowess, Pelinal fought against the Ayleid oppressors, wielding the Crusader's Relics bestowed upon him by the Eight Divines. His name, derived from Pelin-El, meaning \"Star-Made Knight,\" reflects his celestial connection and glory in battle. Throughout his conquests across Tamriel, Pelinal is said to have embodied both heroism and chaos, often succumbing to bouts of madness that drove him to indiscriminately slay enemies and alter the very landscape.\n\nPelinal is remembered by many titles, including Pelinal the Bloody, the Divine Crusader, and Pelinal Insurgent, with some legends suggesting he had incarnated multiple times. His connection to Queen Alessia was profound, with their names occasionally combined to signify their unity in the fight for freedom. Khajiiti tales recount him as the White Snake, further highlighting his mythic status. Despite his feats, Pelinal's legacy is complex, as he is equally known for the destruction he wrought, embodying both the hope of liberation and the peril of unchecked power.", + "display_name": "pelinal_whitestrake", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ysgramor, often referred to as Ysgramor the Invader and known as \"the harbinger of us all,\" is a legendary figure in Nordic history, celebrated as the first human ruler and king of Skyrim. He is said to have arrived in Tamriel from Atmora, fleeing a civil war, and is considered a pivotal character in the early struggles of humans against the Elves.\n\nThe Night of Tears, a tragic event in which the Snow Elves attacked the human settlement of Saarthal, is often attributed to tensions between the two races. While some Elven scholars claim that Ysgramor's actions provoked this attack, many believe it was unprovoked, resulting in the massacre of most humans in the settlement, save for Ysgramor and his two sons, Yngol and Ylgar. After fleeing to Atmora, Ysgramor returned with the legendary Five Hundred Companions and launched a campaign against the Elves, successfully driving them from Skyrim and Solstheim. Wielding the axe Wuuthrad and accompanied by a Storm Atronach Bear summoned by his Clever Man, Alabar the Oddly-Colored, Ysgramor solidified his status as a cultural hero of the Nords.\n\nYsgramor is also credited with being the first human historian, having transcribed Nordic speech using Elven writing principles. His legacy endures through the Companions, who regard him as their true leader, and his descendants ruled Skyrim until the death of King Borgas in 1E 369, marking the end of his direct lineage. Nonetheless, he is still revered as the progenitor of all Nordic kings, embodying the spirit and strength of the Nord people.", + "display_name": "ysgramor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alduin, often referred to as the World-Eater, is a powerful black dragon revered in Nord mythology as the harbinger of the end times. Known by various titles, including the First Dragon and the Time-Eater, Alduin is believed to periodically destroy the world, making way for a new cycle of existence. He is considered the self-proclaimed First-Born of Akatosh, embodying a malevolent aspect of the deity associated with time and dragons.\n\nThe name \"Alduin\" can be translated in the Dragon Language to mean \"Destroyer Devour Master,\" reflecting his fearsome nature and role as a force of annihilation. Alduin commands a legion of dragons, dragon priests, and draugr, and his return is seen as a sign of impending doom, signaling the end of the current world and the dawn of a new one. His lore intertwines with the beliefs and traditions of the Nords, who view him both as a deity and a harbinger of destruction.", + "display_name": "alduin", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alessia, also known as Queen Alessia, Saint Alessia, Lady of Heaven, and the Mother of the Empire, was a pivotal figure in Tamriel's history as the first Empress of Cyrodiil and the founder of the Alessian Empire. Born in the early First Era, she led the Alessian Slave Rebellion against the Ayleids, liberating the Nedes of Cyrodiil from enslavement and establishing a new order in the region.\n\nHer reign lasted from 1E 243 until her death in 1E 266, during which she created a new religion that fused elements of the Nordic and Aldmeri pantheons, known as the Eight Divines. On her deathbed, Alessia was canonized by Akatosh, with her soul encased in the central stone of the Amulet of Kings, forming a divine covenant to protect Tamriel from the forces of Oblivion.", + "display_name": "alessia", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Morihaus, also known as Morihaus-Breath-of-Kyne and the Winged Bull, is a revered demigod associated with the winds and considered a significant figure in both Cyrodiil and Skyrim. He is the son of the divine Kyne (Kynareth) and the consort of Saint Alessia, playing a vital role in the establishment of the Alessian Empire. Morihaus is celebrated for his exceptional archery skills and is often depicted as a winged bull, possessing golden wings, horns, and a nose-ring.\n\nIn addition to his physical prowess, Morihaus is connected to the powerful artifact known as the Lord's Mail, which was created by his mother to aid those who would bear the burdens of the land. His arrogance led to Kyne reclaiming the armor at one point, but he is still recognized for his strength and his alignment with the constellation known as The Lord. Morihaus is often portrayed engaging in heroic deeds, including hunting and slaying beasts alongside the Demiprince Fa-Nuit-Hen, further solidifying his status as a protector and symbol of strength in Tamriel.", + "display_name": "morihaus", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Tiber Septim, also known as Talos Stormcrown, Hjalti Early-Beard, and Tiberius Imperator, was a pivotal military leader and one of the most renowned figures in Tamrielic history. He served under the Cyrodilic king Cuhlecain as General Talos before embarking on a campaign to unify Cyrodiil and eventually all of Tamriel. His efforts culminated in 2E 896 with the establishment of the Third Empire and the onset of the Third Era.\n\nReigning as Emperor Tiber Septim from 2E 854 to 3E 38, he ruled for 81 years and is often celebrated as the greatest emperor in history. His legacy continues through the lineage of Cyrodilic Emperors known as the Septims. Following his death, Tiber Septim was venerated as a god and saint, worshipped as one of the Nine Divines under the name of Talos, which means \"Stormcrown\" in the ancient Ehlnofey language.", + "display_name": "tiber_septim", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Jagar Tharn was the Imperial Battlemage of Tamriel who ascended to the throne as Emperor following a nefarious scheme. He secretly imprisoned Emperor Uriel Septim VII in Oblivion and utilized Illusion magic to impersonate him for a decade, ruling from 3E 389 to 3E 399 during a tumultuous period known as the Imperial Simulacrum. While Tharn held the reins of power over the war-torn Empire, the specifics of his ambitions and achievements during this time remain largely unclear. His actions significantly impacted the political landscape of Tamriel, but the true extent of his goals and motivations has been lost to history.", + "display_name": "jagar_tharn", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Eternal Champion, reputedly known as Talin, emerged as a pivotal hero in Tamriel's history during the late Third Era. Born in 3E 370, he is best remembered for his critical role in ending the Imperial Simulacrum in 3E 399. The Eternal Champion successfully gathered the fragments of the Staff of Chaos, a powerful artifact, which enabled him to confront and defeat the impostor emperor, Jagar Tharn. His quest culminated in the rescue of the true emperor, Uriel Septim VII, alongside General Talin Warhaft, who had been imprisoned in a realm of Tharn's choosing for a decade. This heroic act not only restored the rightful leadership of the Empire but also ended Tharn's deceptive reign.", + "display_name": "eternal_champion", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Saint Jiub, also known as Jiub the Magnificent and Eradicator of the Winged Menace, is a revered figure in the Tribunal Temple and the New Temple. Originally a Dunmer assassin with a troubled past marked by addiction and crime, Jiub sought redemption after being imprisoned for his deeds. He famously dedicated himself to eradicating the cliff racers that plagued Vvardenfell, achieving this feat after years of effort. His actions earned him sainthood from Vivec, who admired his virtue, and he became celebrated as a hero throughout Morrowind.\n\nIn 3E 433, during the onset of the Oblivion Crisis, Jiub was in Kvatch working on an extensive autobiography when the city was attacked. He was trapped in the Soul Cairn by a Dremora, leading to a long existence in that realm. His spirit remained unaware of his death until he encountered the Last Dragonborn in 4E 201, who assisted him in compiling his memoirs. Jiub's story serves as a testament to his transformation from a fallen assassin to a saint, embodying themes of redemption and legacy in Tamriel.", + "display_name": "saint_jiub", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Agent, often referred to as the Hero of Daggerfall, was a covert operative of the Blades, dispatched by Emperor Uriel Septim VII in 3E 375. Tasked with exorcising the spirit of King Lysandus and recovering a sensitive letter sent to Queen Mynisera, the Agent became embroiled in the tumultuous political landscape of the Iliac Bay. This period was marked by intense power struggles involving the Empire, various regional kingdoms—including the Orcs of Nova Orsinium—Mannimarco, the King of Worms, and the mythical Underking, all vying for control of the legendary Numidium.\n\nThe Agent's actions ultimately led to the activation of the Numidium in 3E 417, resulting in the Warp in the West, a significant event that dramatically altered the political and physical geography of the region. Following the Warp, the Agent mysteriously vanished, and the Blades could not establish contact despite their efforts. It is widely believed that the Agent perished during the activation of the Numidium, becoming a part of the enigmatic and chaotic legacy of that pivotal moment in history.", + "display_name": "hero_of_daggerfall", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Hero of Kvatch, also referred to as the Champion, is a significant figure in the history of Tamriel, known for their pivotal role during the Oblivion Crisis in the Third Era. He help Martin Septim defeat Mehrunes Dagon and save tamriel from an invasion from Oblivion. Their identity remains shrouded in mystery, with their race and gender unknown to most.", + "display_name": "hero_of_kvatch", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Martin Septim, the illegitimate son of Uriel Septim VII, was a key figure during the tumultuous events of the Oblivion Crisis. As an infant, he was rescued by Jauffre, the Grandmaster of the Blades, who ensured his safety away from the imperial court. Growing up unaware of his royal lineage, Martin became a devoted Priest of Akatosh in the city of Kvatch.\n\nHis life took a dramatic turn when the Mythic Dawn assassinated his father and half-brothers, leaving him as the unexpected heir to the Ruby Throne. Blades agents located Martin and protected him during the crisis, culminating in his reluctant rise to power. In a final act of sacrifice, Martin embraced his destiny and gave his life to thwart the Daedric Prince Mehrunes Dagon, thus securing the safety of Tamriel. His legacy is marked by his bravery, humility, and the heavy burden of his royal heritage.", + "display_name": "martin_septim", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "High King Torygg was the ruler of Skyrim and the Jarl of Solitude until his death in 4E 201. The son of Istlod, who had reigned for nearly twenty-five years, Torygg was formally named his successor by the Moot, despite the growing calls for Skyrim's independence from the influential Ulfric Stormcloak. Torygg respected Ulfric's passionate stance and sought to engage him in dialogue about his views, unaware that Ulfric had come with the intention of challenging him for the throne.\n\nThe encounter between Torygg and Ulfric culminated in tragedy, as Ulfric used his thu'um to overpower the young king and subsequently killed him. While Ulfric viewed the act as a rightful challenge for leadership, many—including the Empire and several Jarls—considered it regicide, noting Torygg's limited martial training compared to Ulfric's experience as a war veteran. Following Torygg's death, his widow, Elisif the Fair, ascended to the position of Jarl of Solitude and aimed to claim the title of High Queen with the support of the Empire.", + "display_name": "high_king_torygg", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "General Tullius is a prominent Imperial military leader tasked with suppressing the Stormcloak Rebellion in Skyrim. Originally hailing from Cyrodiil, he was appointed as the Military Governor of the region and viewed Ulfric Stormcloak as a dangerous usurper whose actions posed a significant threat to the Empire. Tullius earned a reputation among Imperial supporters as their best hope for victory against the rebellion. Initially dismissive of Nordic culture, he eventually came to respect it, recognizing its importance in the context of the conflict.\n\nIn 4E 201, Tullius nearly executed both Ulfric Stormcloak and the Last Dragonborn during a critical moment before the dragon Alduin's attack on Helgen. Surviving this encounter, he returned to Solitude to continue his campaign against the Stormcloaks, undeterred by the resurgence of dragons. As Ulfric's forces grew more aggressive, Tullius focused on securing the allegiance of Balgruuf the Greater, the neutral Jarl of Whiterun. His efforts were ultimately rewarded when Balgruuf pledged loyalty to the Empire in exchange for reinforcements to defend against an impending Stormcloak siege, highlighting Tullius's strategic acumen amidst the chaos of war.", + "display_name": "general_tullius", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Jyggalag, the Prince of Order, is a Daedric Prince whose sphere encompasses logical order, deduction, and the unyielding structure of the cosmos. Known as the \"Gray Prince of Order,\" Jyggalag once ruled a realm of perfect symmetry and foresight, boasting a Great Library that held predictions of every event in Mundus and Oblivion. His expansion across the seas of Oblivion struck fear and envy into the hearts of other Daedric Princes, leading them to curse him into becoming Sheogorath, the Madgod—his antithesis. This curse created a paradox: Jyggalag, the embodiment of order, became the incarnation of chaos and madness. However, every era culminated in the Greymarch, a cycle where Jyggalag would briefly reclaim his form, only to be reverted back to Sheogorath after his conquest of the Shivering Isles.\n\nThe cycle of the Greymarch was ultimately broken during the events of the Third Era when the Hero of Kvatch, chosen by Sheogorath, confronted Jyggalag during his return. Armed with the Staff of Sheogorath and the mantle of the Madgod, the Hero defeated the Prince of Order, ending the Greymarch and separating Jyggalag from Sheogorath forever. Jyggalag acknowledged the Hero's victory, departing the Shivering Isles to roam Oblivion once more, perhaps to exact vengeance on those who cursed him or to pursue grander, unknown ambitions. His legacy endures through his artifact, the Sword of Jyggalag, a crystalline claymore imbued with the power to reveal the flow of time. Though his presence has waned, the balance of power within Oblivion remains uncertain, as Jyggalag's return could herald a new era of unyielding order across the realms.", + "display_name": "jyggalag", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Magnus, the God of Magic and the Great Architect, is a revered figure among many cultures in Tamriel, known as the creator of the schematics for Mundus. During the Dawn Era, he collaborated with other et'Ada to forge the mortal plane, but upon realizing the great sacrifice required, he abandoned the project. His departure from Mundus tore a hole into Aetherius, forming the sun, which is also referred to as Magnus. The stars, believed to be fragments of his being or tears in the sky made by his followers, the Magna Ge, illuminate the night as remnants of his retreat. Magnus’s legacy is steeped in mysticism, as he is credited with creating powerful artifacts like the Staff of Magnus and the Eye of Magnus, each holding immense arcane power capable of influencing the balance of the magical world.\n\nWorship of Magnus varies across Tamriel. The Altmer and Bretons revere him as the God of Sight and Insight, while the Khajiit call him Magrus, the Cat's Eye, integrating his mythos into their lunar cycles. The Ayleids dedicated temples to his name, celebrating his association with light and divine order. Legends suggest Magnus influences powerful mages, lending them his energy, though his contributions to Mundus are viewed with skepticism by the Imperials, who question the dual nature of his gift. Despite his detachment from Nirn, Magnus remains a symbol of the enigmatic power of magic, with his artifacts and celestial presence serving as constant reminders of the god who shaped the mystical fabric of the world.", + "display_name": "magnus", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mannimarco, known as the God of Worms and founder of the Order of the Black Worm, is one of the most infamous figures in Tamrielic history. Originally an Altmer (or Aldmer by his own claim) and a member of the Psijic Order on Artaeum, Mannimarco's dark fascination with necromancy led to his expulsion after his practices horrified his peers, including his former friend Vanus Galerion, who later founded the Mages Guild. This exile marked the beginning of Mannimarco's ascent into infamy as he gathered followers and became the world's first lich, earning the title \"King of Worms.\" His mastery of necromancy allowed him to tap into forbidden arts, consorting with Daedra like Molag Bal and creating vile artifacts such as the Necromancer's Amulet and the Staff of Worms. Mannimarco's influence spread across Tamriel through his cult, the Worm Cult, which orchestrated political schemes and dark rituals, including the catastrophic Soulburst during the Planemeld.\n\nMannimarco's pursuit of power culminated during the Warp in the West, a mysterious event in which he achieved apotheosis, transforming into a divine being embodied by the Necromancer's Moon, also known as the Revenant. Despite this ascension, Mannimarco maintained a tangible presence in Tamriel, clashing with the Mages Guild and other enemies, such as the Hero of Kvatch, who destroyed his mortal form in 3E 433. His divine legacy, however, persisted, as the Necromancer's Moon continued to empower his followers, allowing them to corrupt soul gems and perpetuate his dark influence. Through his artifacts, rituals, and the enduring shadow of his cult, Mannimarco remains an enduring figure of dread in Tamriel, a symbol of the dangerous allure of necromancy and the pursuit of immortality at any cost.", + "display_name": "mannimarco", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Leki, also known as the Saint of the Spirit Sword, is a revered goddess of aberrant swordsmanship and a divine daughter of Tall Papa, the chief deity of Yokudan mythology. Celebrated as a patron of innovation in martial arts, Leki is credited with introducing the Ephemeral Feint, a sword technique that broke the stalemate among Yokuda's greatest swordmasters during their struggle to determine leadership against the Lefthanded Elves. This pivotal contribution marked the beginning of the Yokudans' war with the Aldmer. As one of the most beloved deities in Hammerfell, Leki represents skill, adaptability, and divine ingenuity in the art of combat.\n\nHer legend extends beyond the battlefield, influencing the cultural and spiritual fabric of Redguard society. The settlement of Leki's Blade in the Alik'r Desert is said to have been founded following her duel with Rada al-Saran, a warrior who boasted mastery rivaling the gods. The goddess's legacy also runs through the bloodlines of notable Redguard warriors, such as Sai Sahan, who descended from her line and embodied her divine connection to swordsmanship. Through her miracles and teachings, Leki remains a symbol of honor and mastery, inspiring generations of Redguard sword-saints to achieve greatness in both combat and spirit.", + "display_name": "leki", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Satakal, the Worldskin, is the Yokudan god of creation, destruction, and the endless cycles of existence. Known as the First Serpent, Satakal embodies the fusion of Anu and Padomay, symbolizing both chaos and order. In Yokudan mythology, Satakal devours entire worlds, shedding its skin to birth new ones, a process that has occurred countless times. This eternal cycle inspired the birth of spirits like Ruptga, the first to learn how to survive these transitions, who later formed the Yokudan pantheon. Satakal's cycles echo the Redguard understanding of mortality and the longing for the Far Shores, the ultimate spiritual haven they believe lies beyond the reach of mortal life.\n\nWorship of Satakal is prevalent among Redguard nomads of the Alik'r Desert, where the deity is revered as both destroyer and creator. Rituals dedicated to Satakal often involve symbolic \"shedding of skin,\" and its devotees weave the serpent into their maps and lives as a reminder of the god's dominion over all. Some groups, such as the Pyre Watch and Hunding’s sword-singers, interpret Satakal's influence as a call to cast aside fixed destinies in pursuit of transcendence. Satakal’s worship is deeply rooted in Redguard culture, influencing not only their spiritual practices but also their myths, oaths, and settlements, such as the city of Satakalaam. Despite Satakal's profound role in their heritage, his followers have often clashed with more modern Imperial beliefs, reflecting the tension between the god's timeless cycles and the structured order of the Eight Divines.", + "display_name": "satakal", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ruptga, known as Tall Papa, is the chief deity of the Yokudan and Redguard pantheon and a central figure in their mythology. As the first spirit to escape the endless cycles of creation and destruction brought by Satakal, the Worldskin, Ruptga is revered as the god who charted the path to the Far Shores, the sanctuary beyond the cycles of hunger. Using his immense height, he placed the stars in the sky to serve as a guiding map for other spirits seeking escape. However, Ruptga’s role is not only that of a savior; he also acted as a judge, punishing Sep, the Second Serpent, for deceiving spirits into inhabiting the mortal world, which left them vulnerable to hunger and mortality. The void left by Sep’s death remains as a hungry force chasing the stars, a haunting reminder of his trickery.\n\nWorship of Ruptga is rich in symbolism, often featuring star motifs that reflect his role as the celestial guide. He is associated with the color purple, which adorns prayer beads dedicated to him. Myths also link Ruptga to his divine family, including his daughter Leki, the goddess of swordsmanship, and his estranged son Zeht, the god of agriculture, who renounced him after the world’s creation. Ruptga's legacy is woven into Redguard culture, with his influence reflected in their oaths, exclamations, and spiritual practices. As the architect of the stars and protector of the Far Shores, Ruptga embodies the ideals of guidance, judgment, and perseverance amidst the cycles of life and death.", + "display_name": "ruptga", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "HoonDing, also known as the Make Way God, is a revered Yokudan spirit symbolizing perseverance and the unyielding will to overcome obstacles. Manifesting in times of great need, HoonDing is the embodiment of the Redguards' resilience and their drive to \"make way\" for their people. His first known avatar was Diagna, who played a crucial role in defeating the Sinistral Mer by bringing orichalc weapons to the Yokudans. Diagna's exploits extended to leading a devout band of warriors against the Orsimer during the Siege of Orsinium. Throughout history, HoonDing has appeared in various forms to guide and empower the Redguards, reflecting his ever-present influence in their cultural and spiritual identity.\n\nHoonDing’s influence persisted through other figures, including Frandar Hunding, who led the Yokudans in their exodus to Tamriel and their battles against Malooc the Horde King. During the Tiber War, HoonDing's essence was linked to Crown Prince A'tor and the legendary warrior Cyrus. A'tor's transformation into the Soul Sword and Cyrus’s wielding of it to slay the dragon Nafaalilargus exemplify HoonDing's duality as both a weapon and a symbol of leadership. HoonDing remains a central figure in Redguard mythology, representing their indomitable spirit and their ability to overcome adversity, no matter the form it takes.", + "display_name": "hoonding", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hevnoraak was a tyrannical Dragon Priest who ruled Valthume with fear, manipulating and torturing his followers without consequence. As his death approached, he became obsessed with ensuring his resurrection, filling vessels with his own blood to transfer his power after death. After Hevnoraak's demise, a warrior named Valdar vowed to guard his tomb and prevent his return, keeping watch for generations.", + "display_name": "hevnoraak", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Krosis was a high-ranking Dragon Priest in the Merethic Era, serving the Dragon Cult with great power and mastery over both magic and the Thu'um. After the Dragon War, he was entombed at Shearpoint, where he remained until his reawakening in the Fourth Era. Known for his magical abilities and enhanced powers from his iron mask, Krosis became a lich, sustained by his draugr servants' worship. He was ultimately defeated and sealed away.", + "display_name": "krosis", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Morokei, also known as the Deathless, was a powerful Dragon Priest in the Merethic Era who achieved lichdom through the worship of his draugr servants. Gifted a magical moonstone mask by his dragon overlord, he was immune to death except by the Thu'um of a dragon. After the Dragon War, he was sealed in the ruins of Bromjunaar, later known as Labyrinthian, by sacred fires to prevent him from seeking vengeance. Morokei was ultimately destroyed around 4E 201.", + "display_name": "morokei", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nahkriin is one of the eight high-ranking dragon priests in Skyrim. He was an aloof Dragon priest who did nothing of note during the Dragon war.", + "display_name": "nahkriin", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Otar the Mad was a high-ranking Dragon Priest in the Merethic Era, once a just ruler who descended into madness, causing the downfall of Ragnvald. He wielded powerful magic and the Thu'um, and was known for his oppressive rule. After being defeated by heroes Saerek and Torsten, he was sealed in Ragnvald's tomb, with his fate tied to two keys held by his captors. Otar was reawakened in the Fourth Era, still bound by his tomb and his past malevolent power.", + "display_name": "otar_the_mad", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rahgot, an ancient Dragon Priest of Skyrim, led the last remnants of the Dragon Cult from the monastery of Forelhost until 1E 140. After the defeat of Alduin, Rahgot and his followers went into hiding, believing Alduin would eventually return. When King Harald's soldiers discovered his stronghold, Rahgot orchestrated a mass suicide among his cultists to deter the soldiers from uncovering his survival. Rahgot was later encased in a sarcophagus within the monastery, with his followers' sacrifice keeping the magic barrier intact.", + "display_name": "rahgot", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vokun is one of the eight high-ranking dragon priests in Skyrim. He was an aloof Dragon priest who did nothing of note during the Dragon war.", + "display_name": "vokun", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Volsung is one of the eight high-ranking dragon priests in Skyrim. He was an aloof Dragon priest who did nothing of note during the Dragon war.", + "display_name": "volsung", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vahlok the Jailor was a Dragon Priest who once ruled Solstheim and was tasked with guarding the traitor Miraak. After uncovering Miraak's plot against their masters, Vahlok defeated him in a legendary battle and was later entombed in Vahlok's Tomb in Solstheim.", + "display_name": "vahlok_the_jailor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ahzidal, known as \"the Embittered Destroyer,\" was a powerful Dragon Priest and the first great Nord enchanter. He was born in Saarthal and, after his home was destroyed by Elves, sought vengeance by mastering various magical disciplines, including Elven and Dwemer enchantments. He later became a high-ranking Dragon Priest, gaining power through dragon magic and Daedric knowledge. His obsession with power led to his eventual exile and servitude under Miraak. After Miraak's defeat, Ahzidal was sealed in Kolbjorn Barrow with his powerful relics.", + "display_name": "ahzidal", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dukaan is one of the high-ranking dragon priests in Solstheim. He was an aloof Dragon priest who did nothing of note during the Dragon war.", + "display_name": "dukaan", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Zahkriios is one of the high-ranking dragon priests in Solstheim. He was an aloof Dragon priest who did nothing of note during the Dragon war It is also rumored he was a secret worshipper of Hermaeus Mora'.", + "display_name": "zahkriisos", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Y'ffre, also known as the Singer, the Storyteller, and the God of Song and Forest, is the central deity of the Bosmer pantheon, revered also by the Altmer, Bretons, and Snow Elves. Y'ffre played a critical role in the creation of the physical world during the Dawn Era, and is considered the first of the Ehlnofey to transform into an Earth Bone, establishing the laws of nature and life on Nirn. These laws are embodied in stories that Bosmer tribes strive to interpret, with Y'ffre's teachings guiding the natural world and the cycle of life. Y'ffre's influence extends to the natural world, where he sometimes intervenes to select key figures, such as the Silvenar, or sends wisps to herald the changing of seasons.\n\nY'ffre is deeply associated with stories and songs, shaping the world and its creatures through his music. His priests, known as Spinners, view life as an ongoing story and use narrative magic to influence others, altering their memories or even their physical forms. Y'ffre's act of creation is considered a series of beautiful songs that caused the stars to dance and established the world's laws, and his influence continues through his priests' teachings. Spinners also weave new identities for individuals, using their magical abilities to alter someone's appearance, such as giving them antlers as a mark of worthiness.", + "display_name": "yffre", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Z'en, also known as Xen in Altmeri folklore, is a God of Toil, vengeance, agriculture, and payment, worshipped by the Bosmer. His influence extends beyond crops and cattle, as he is believed to embody a higher cosmic order, guiding balance and the resolution of conflicts. Z'en’s worship is closely tied to vengeance and toil, and some Bosmer wear a special cap to signify devotion to these aspects, even renouncing love while wearing it. Z'en’s origins are believed to trace back to both Akaviri and Argonian cultures, with the Kothringi initially venerating him as their chief deity. His mythology is intertwined with that of Zenithar, the Imperial god of commerce, who shares many aspects with Z'en.\n\nHistorically, Z'en’s shrines were widespread across Valenwood until the Knahaten Flu decimated his followers, a disaster attributed to the influence of Argonian Shadowscales. By 2E 582, the last of his dedicated followers, a Bosmer clan in the Bloodtoil Valley, were embroiled in a conflict with the Drublog Clan of Wood Orcs. Z'en sent his emissary to intervene when the Bosmer threatened to unleash a curse upon their enemies, though the outcome remains uncertain.", + "display_name": "zen", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Baan Dar, known as the Bandit God, the Pariah, or the Man of a Thousand Faces, is a trickster spirit worshipped primarily by the Khajiit of Elsweyr, but also influential in places like Valenwood. He embodies the cleverness and desperate genius of the Khajiit, helping them outplay their oppressors and outwit others. His domain, the Five Fingers Dance, symbolizes his ability to shape lives and lands for the better, often through unconventional means. His name is widely used, particularly by thieves and criminals who take on the persona of Baan Dar to mask their identity or seek inspiration. To the Khajiit, Baan Dar represents defiance against oppression, while to other races, such as the Bretons, he is associated with sneaky thieves and living legends.\n\nBaan Dar’s influence extends beyond his Khajiiti followers. In Valenwood, he is viewed as a god of archery, while to the Bretons, he is known as the Bandit and revered by the Thieves Guild in the Iliac Bay. His name is even used by the Baandari Pedlars, a traveling merchant tribe. In addition, Baan Dar is commemorated by the Khajiit and Bosmer at the ruins of Thormar, where they participate in the \"Boast,\" a festival of pranks between the two races. Despite the varying interpretations of his nature across cultures, Baan Dar remains a symbol of defiance, resourcefulness, and the clever trickster spirit that shapes the world around him.", + "display_name": "baan_dar", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sithis, also known as the Dread Father, is a primordial representation of chaos and change, often linked with the Dark Brotherhood and associated with serpent-like imagery. Although not classified as Aedric or Daedric, he is viewed as the personification of the Void and the primordial force of destruction and creation. Sithis plays a critical role in various Tamrielic mythologies, including the creation of the world, the intersection of Anuiel and Padomay, and the origin of Lorkhan. To the Dark Brotherhood, Sithis is a central figure, with followers believing that the souls of those killed in his name are sent to the Void after death. Sithis’ influence is depicted in multiple ways, from his presence in the creation of Aurbis to his embodiment of the ongoing forces of stasis and change.\n\nThe worship of Sithis is often secretive and tied to assassin guilds, notably the Dark Brotherhood and Morag Tong. These organizations act as intermediaries for Sithis, with the Dark Brotherhood following rituals, such as the Rite of Penance, and the Morag Tong committing sanctioned political assassinations. The Dark Brotherhood’s worship is macabre and ritualistic, involving effigies and gruesome symbols, with members believing that traitors are claimed by the Wrath of Sithis and dragged to the Void. In contrast, the Morag Tong views assassination as a ceremonial reenactment of the original murder of Nir, focusing less on bloodshed and more on the celebration of life. Despite the differences in practices, both guilds revere Sithis as the source of ultimate power and divine vengeance.", + "display_name": "sithis", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vittoria Vici is an influential Imperial from Solitude, cousin to Emperor Titus Mede II, and oversees the East Empire Company's holdings in the city. Engaged to Stormcloak Asgeir Snow-Shod, their upcoming wedding is seen as a symbolic end to the civil war. However, the event attracts the attention of the Dark Brotherhood, who plan to use it to restore their reputation.", + "display_name": "vittoria_vici", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Miraak, the First Dragonborn, was a powerful Dragon Priest during the Merethic Era who ruled over Solstheim and was granted a Dragon Priest Mask by the dragons. Seeking the teachings of Hermaeus Mora, the Daedric Prince of Knowledge, Miraak became his champion and learned to bend dragons to his will, eventually turning on his former masters and killing many of them. Despite being offered as an ally during the Dragon War, Miraak refused to aid humanity and was later defeated in a duel by the Dragon Priest Vahlok, who uncovered his treachery. After his defeat, Miraak was saved by Hermaeus Mora and spent ages in Apocrypha, gathering knowledge and power to eventually free himself from Mora's service.", + "display_name": "miraak", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The All-Maker, also known as the All-Father, is an ancient and mysterious deity revered by the Skaal of Solstheim, representing the wellspring of creation. It is believed that the All-Maker resides in the spirit world, where the souls of the dead return to be shaped into new life. This eternal cycle is seen as a flow of life from and back to the All-Maker, with death marking the next phase in the journey. The Skaal view life as a sacred gift from the All-Maker, with harmony and respect for nature being central to their practices. They believe the All-Maker blesses them with power when they live in balance with their surroundings, and the six All-Maker Stones are seen as conduits through which the All-Maker’s power flows into the world.\n\nThe Skaal believe that their harmony with the land is crucial to pleasing the All-Maker, and they practice rituals like the Ristaag and the Ritual of the Gifts to demonstrate their gratitude. The All-Maker is also opposed by the Adversary, a force that seeks to corrupt the All-Maker’s dominion. In some traditions, the All-Maker is speculated to have connections with other deities, such as Alduin or Sithis, though these relationships remain mysterious. The All-Maker's teachings emphasize the sanctity of life, the importance of preserving balance, and the rejection of greed, while also warning of the consequences of disrupting the natural order.", + "display_name": "all-maker", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alkosh, the Dragon King of Cats, is a pre-ri’Datta Anaquinine deity revered as the First Cat, the Highmane, and the Great Cat King of Time. Depicted as a radiant dragon—swift, powerful, and clever—he embodies both the weaver and the fabric of time itself, his tail spinning the threads of existence. A Khajiiti counterpart to Auri-El or Akatosh, Alkosh rules over the flow of time and the moons Jone and Jode, ensuring the world’s balance between chaos and stagnation. Legends tell that when Alkosh was broken, time fractured into a Dragon Break, and that Khenarthi once reassembled his scattered form along the Many Paths to safeguard creation. His laughter, once drawn out by Sheggorath’s jest, birthed the demigod Khunzar-ri, while his divine roar once repelled Pelinal Whitestrake from Sunspire, leaving a wound in the sky later exploited by the dragon Nahviintaas to rewrite time.\n\nKhajiiti tradition holds that Alkosh watches over the tapestry of time, realigning its threads whenever a “snag” appears with the aid of his champions, the Pride of Alkosh. His followers pray not for his strength but for his unshakable duty, acknowledging Auri-El and Akatosh as his aspects. Moon-Singer songs and pre-ri’Datta tales describe his role in restoring cosmic order when the Selectives’ heresy nearly erased Akha and his children from existence. Devotees honor Alkosh through sacred relics—hourglasses of sanctified gold and glass, or sands that reveal glimpses of one’s past and future—using them in rituals to momentarily slow or shift time’s flow. Even simple wooden fetishes of a reclining cat with an open maw serve as reminders that all moments, from the moons’ dance to a mortal’s breath, are bound to the Dragon King’s eternal rhythm.", + "display_name": "alkosh", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "In Elsweyr, Azura is a somewhat distinct entity, the goddess Azurah, the Mother of All Khajiit, She Who Sits at the Precipice and the Favored Daughter of Fadomai. Azurah carries the burdens of the Khajiit's ancestors; her spheres are Magic, Beauty, and Prophecy, and she is the \"keeper of all gates and keys, all rims and thresholds\". The goddess is credited with making the Khajiit out of the \"forest people\" (some of whom became the Bosmer) living on Nirn and binding them to the Lunar Lattice, (or Ja-Kha'jay) though other sources say the Khajiit were made out of \"Altmeri stock\". It is said that Azurah knows the names of all the Khajiit that will ever live, and knowing her is the first step on their Path. Azurah's is the \"twilight path\" to love and redemption. The Khajiit believe Azurah oversees the Gates of the Crossing behind the Lunar Lattice, a twilight realm between death and the afterlife. One religious text refers to Azura as the Ur-dra, alongside Namiira.\r\n\r\nAzurah contains three forms, known as Phases, the Khajiit, Mer and Human form. She is said to be more beautiful than any other spirit, save for her sister, Nirni. She killed the dark spirit Varmiina in the underworld, which is why Varmiina haunts the dreams of the Khajiit. Some say she often walks the halls of Hermorah's library, sharing in his knowledge. Khenarthi is Azurah's messenger, and ferries the dead Khajiiti souls to her for judgment. Azurah tends the lanterns lit by Khenarthi in the eyes of Jone and Jode, their stillborn brothers, when they burn low.\r\n\r\nFollowing the rise of the Riddle'Thar she fell in prominence somewhat, and is seen as as a \"distant mother.\"\r\n\r\nA Khajiiti story describes her Khajiiti form as lithe, with eyes that shined like the moons, and wearing a silken dress of purple and gold when clothed.", + "display_name": "azurah", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ja’darri the Endless, known in the dragon tongue as Toshrakhat, was an ancient Khajiiti hero, founder of Pridehome, and creator of the Pride of Alkosh. Born under the Dark Moons of the Mane furstock, she was fated to battle the darkness within her rather than lead her people. When she began hearing the heartbeat of Lorkhaj and felt herself slipping toward becoming a dro-m’Athra, Khenarthi granted her a blade and lamp infused with Alkosh’s light, allowing her to face her inner shadow within the Halls of the Highmane. Emerging victorious, Ja’darri became Alkosh’s chosen champion, entrusted with the Mask of Alkosh—a relic of immense power—and tasked to destroy Laatvulon, the Demon from the East, whose existence threatened to unravel time itself.\n\nTo fulfill this divine charge, Ja’darri founded Pridehome and united warriors of Alkosh alongside Reman’s Dragonguard, led by Vashu-Pir. She also forged a rare bond with the dragon Nahfahlaar, who granted her his horn and the dragon-name Toshrakhat, though he later refused her plea to empower the Mask—a choice he would forever regret. Ja’darri and her allies ultimately subdued Laatvulon at Doomstone Keep, but she perished in the effort, ascending to dwell with Alkosh beyond even the Sands Behind the Stars. Centuries later, in 2E 582, when Laatvulon was freed and ravaged Elsweyr anew, the Vestige and Nahfahlaar sought Ja’darri’s spirit in the realm of the Spilled Sand. Under her guidance, they reawakened the Mask of Alkosh, wielding its restored power to finally destroy Laatvulon and end the Dragon’s blight.", + "display_name": "ja'darri", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kaalgrontiid, the Emerald Sovereign of Wrath and Terror, was a mighty dragon whose name means “Champion of the Bound Time.” Consumed by pride and ambition, he sought the lunar power of Jode and Jone to ascend as the Dark Aeon—a new third moon—and thus rival Akatosh, the Dragon God of Time himself. Believed to have split from Alduin’s brood in the north during the late Merethic Era, Kaalgrontiid led a rage of dragons south into Elsweyr, conquering its sixteen kingdoms and seeking to devour the moons’ divine essence to elevate himself above all creation.\n\nIn response, the Khajiiti hero Khunzar-ri gathered four champions—Nurarion the Perfect, Flinthild Demon-Hunter, Anequina Sharp-Tongue, and Cadwell the Betrayer—to confront the dragons. Realizing brute force would fail, Khunzar-ri turned to deception. Through Anequina’s attunement to the Shadow Dance Temple, the moons aligned to open the Moon Gate of Anequina, revealing Jode’s Core, the dragons’ coveted prize. Tricked by Khunzar-ri into storing their power within the Core rather than consuming it, Kaalgrontiid and his kin were drained and forced to flee. Seizing the chance, Khunzar-ri lured them into the Halls of Colossus, sealing them away as the “Demon Weapon” of legend—mythic beings whose imprisoned might would one day tempt mortals again.", + "display_name": "kaalgrontiid", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "\"A cruel race, these dragons. They would rather rule over ashes than allow us to remain free.” —General Renmus, speaking of Laatvulon. Laatvulon, the Demon from the East and the Black Beast, was a black Dragon whose name means Last-Night, evoking final darkness and the prophetic “New Moon filled with darkness.” Though his exact origin is unknown, his epithet and color suggest Akavir, where black and red Dragons are said to come from, and he held an ancient rivalry with the red Dragon Nahfahlaar. In antiquity, the Khajiit hero Ja’darri allied with the Dragonguard to stop him; after Nahfahlaar refused to empower the Mask of Alkosh, he instead gave Ja’darri one of his horns. The dragonhorn helped but could not kill Laatvulon, and he was ultimately imprisoned beneath Doomstone Keep in Elsweyr at the cost of Ja’darri’s life.\n\nDuring the Three Banners War, Laatvulon escaped Doomstone Keep under unclear circumstances, coinciding with the inadvertent release of his master, Kaalgrontiid, from the Halls of Colossus. Seeking to usher in the Dark Aeon so Kaalgrontiid could become Akatosh’s equal, Laatvulon founded the Khajiiti New Moon Cult, recruiting many vulnerable Khajiit, including those affected by the Knahaten Flu. Nahfahlaar dueled him near Senchal but was overpowered by Laatvulon’s newfound strength; the reformed Dragonguard and the Vestige then sought Nahfahlaar’s aid, and this time he empowered the Mask of Alkosh, enabling the Vestige to defeat Laatvulon. His significance earned him a place in Apocrypha’s Infinite Archive, where a maligraphy—an ink-born copy serving the Daedric Lord Tho’at Replicanum—of Laatvulon was created and later destroyed by adventurers aided by augmentations from Hermaeus Mora.", + "display_name": "laatvulon", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lorkhaj (also known as the Missing God, the Moon Beast, Moon Prince, Fadomai's Favored Son, the First Trickster, the White Lion, Dark Moon, Ghost Moon, Lost Runt) is the Khajiit interpretation of Lorkhan, the Creator-Trickster-Tester deity present in some form in every Tamrielic mythic tradition. He is known as Lorkh to the Reachmen, Sep in Hammerfell, Sheor in High Rock, Shor in Skyrim, and Shezarr in Cyrodiil.\r\n\r\nLorkhaj is both a Sky and Dark Spirit, and is easily identifiable with the tales of Lorkhan. As a Sky Spirit, Lorkhaj is the Moon Prince and is honored as the first spirit to make his own path, which led to him uniting the spirits to create Nirni. Lorkhaj as the Moon Beast is considered a dark spirit due to Namiira corrupting him, turning him into the first dro-m'Athra. Though initially a dangerous being, it is said that Lorkhaj was ultimately redeemed by Azurah and became protector of the Lunar Lattice, with the Moon Beast prowling the Lattice to protect souls from the Void from than on, thus ending its alignment with Namiira. Thus the Hidden Moon is the true spirit of Lorkhaj, freed of darkness.\r\n\r\nKhajiit believe that the third moon, the Dark Moon, is the corpse of Lorkhaj, now freed of darkness.", + "display_name": "lorkhaj", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "\"While my brothers were slain or locked away, I have been free. I know when to fight, when to fly, when to look for allies. And so I stand before you, nikrent. Unbroken.\"\r\n—Nahfahlaar\r\nNahfahlaar (meaning Fury-For-Water in the Dragon Language), also known as Nafaalilargus (sometimes spelled Nafalilargus or N'falilaargas), was a red dragon who often allied with mortals for his own protection. He acknowledged that dragons are bound by Fenjuntiid, the will of Akatosh, meaning that it is in a dragon's nature to pursue domination. However, he was willing to ally himself with select mortals in order to bide time and ensure his presence for events that may require his intervention. In more ancient times, he allied with the Dragonguard and Pride of Alkosh to defeat his archenemy, Laatvulon. He took a liking to Ja'darri, a member of the Pride, being remembered in the legends of the moon priests as the Red Beast. He would later go on to serve as a powerful soldier of the Empire under Tiber Septim, before his physical body was eventually killed at the hands of Cyrus the Restless. Due to the immortal nature of dragon souls, Nahfahlaar isn't truly dead and could be raised again.", + "display_name": "nahfahlaar", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rid-Thar-ri'Datta was the Mane of Elsweyr during the early-mid Second Era. Rid-Thar-ri'Datta is referred to as the first Mane, a spiritual leader of Elsweyr that paved the way for a moon-based culture and veneration for the deity of cosmic order, the Riddle'Thar.\r\n\r\nRid-Thar-ri'Datta was born sometime in the early Second Era, under the Dark Moons which dictates the birth of the Mane.[ Rid-Thar became a prominent figure in the early-mid fourth century, somewhat contemporary with the formation of the Elsweyr Confederacy in 2E 309. While he is referred to as \"the First Mane\" by the Khajiit, this is only true for the Elsweyr Confederacy itself, as there have been documented Manes from the time before the unification of the Sixteen Kingdoms. In 2E 311, Rid-Thar-ri'Datta revealed the Riddle'Thar Epiphany during a visit to the Temple of Two-Moons Dance in Rawl'kha. The revelation has been described as a key event in modern-day Khajiiti theology. Following the sacking of Ne Quin-al and the slaughter of the royal dynasty in 2E 326, the province of Elsweyr was in disarray. Peace was restored with the intervention of Rid-Thar-ri'Datta when he \"bestowed to the classes equality under the bi-lunar shadow, dividing their power in accordance with two-moons-dance of the ja-K'hanay.\" With this set in motion, the rankings in the caste system shifted control between each other depending on the phases of the Two-Moons. (Masser and Secunda) The Mane had become the total leader of Elsweyr ever since.\r\n\r\nThe mane's religious reforms came with its fair share of controversy. However, temples affiliated with the Riddle'Thar cult would also rise and scrub many of the spirits from the Khajiit pantheon, and persecuted those that did not comply. Examples include temples such as the Shrine of the Consummate S'rendarr, which refused to follow this new edict and were banished from society and subsequently deconsecrated. Some believe that when Riddle'Thar guided Khajiit along his one true path of the moons, he hid Khajiit from other viable paths. Additionally, some believe that he usurped rich traditions with flimsy ones, and \"sanded down the sharper edges of Khajiiti theology.\" Some modern Khajiit that uphold the Riddle'thar consider ancient Khajiit religion dangerous, due to the fact that much of it was created during the time that Khajiit held scattered beliefs. Sixteen different faiths competed against each other, which \"tumbled and scratched their way through history, competing for the souls of all Khajiit.\" However, this has not stopped Khajiit from seeking out the knowledge of the ancient beliefs that had been displaced.", + "display_name": "rid-thar-ri'datta", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Reman Cyrodiil (Reman I), the Worldly God, was the cultural god-hero of the Second Empire, founder of the Reman Dynasty, and greatest hero of the Akaviri Trouble of 1E 2703; his name means “Light of Man.” Cyrodiil was not named after him—he took the ancient Ayleid name for the province, Cyrod, as his surname. Pelinal Whitestrake is said to have screamed Reman’s name at Sancre Tor over 2,500 years before his birth. His origins are obscured: the Remanada claims he was conceived at Sancre Tor (“Golden Hill”) by King Hrol and the spirit of St. Alessia (the land itself), a tale some see as political fabrication. Found there by the shepherdess Sed-Yenna with the Amulet of Kings embedded in his forehead, he was borne to the White-Gold Tower and seated on the throne. Mythic accounts say priestesses of Dibella raised him; he had many wives and was called the “Child Ut Cyrod.” Akatosh manifested to hail him as an “immortal fire” binding heaven to the mundane, granting his wives eternal youth and beauty.\r\n\r\nThe Akaviri invasion enabled this “son of the West” to unite Tamrielic factions. He built the fort network across Skyrim, repelled the invaders, then turned them into allies, later conquering all of Tamriel except Morrowind. The Akaviri first acknowledged him as Dragonborn after hearing his voice at Pale Pass, swore fealty, and formed the Dragonguard; they promoted his imperial stature even though he never took the Emperor’s title in life. Reman forged Cyrodiil as known today by blending High Rock, Colovia, Nibenay, and Akaviri culture; he instituted the imperial rites, including the ritual geas to the Amulet of Kings. During his reign, Sanguine lingered in the White-Gold Tower, influencing the bawdy Crendali Festivals that hindered expansion in the Summerset Isles. After thwarting the invasion in 1E 2704, Reman divided the Reach between High Rock and Skyrim to curb local power, creating the Western Reach; the region remained unruly despite constant campaigns, and the Dragonguard built Sky Haven Temple there, its door a likeness of Reman that opens only to Dragonborn blood. He died in 1E 2762, reportedly slain by the Morag Tong, and was buried at Sancre Tor; his dynasty ended two centuries later with the assassination of Reman III (also attributed to the Morag Tong), closing the First Era.", + "display_name": "reman_cyrodiil", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sir Cadwell—Cadwell the Betrayer, Hero of Cyrod, Villain of Elsweyr, and Champion of the Third Nedic Massacre—was an ancient Nedic knight whose cruel, power-hungry nature led him to claim the horrors of Coldharbour paled before his own deeds. He aided Khunzar-ri and his kra’jun in sealing the dragons in the Halls of Colossus, then betrayed him to seize the power of Jode’s Core; he died in a last stand at the Shadow Dance Temple in the Merethic Era, reportedly decapitated, with his remains scattered and his name erased. His soul was sent to Coldharbour, where he became the oldest Soul Shriven to avoid going feral; his Soul Shriven persona was the opposite of his living self, a change he attributed to death, the Soul Shriven state, or long years in Coldharbour. Master of Coldharbour’s secrets and portals, he repeatedly escaped Daedric captivity and, during the Planemeld, helped the Vestige and Lyris escape the Wailing Prison, aided in rescuing Abnur Tharn, guided survivors to the Hollow City, helped Vanus Galerion destroy the Great Shackle, and joined Meridia against Molag Bal in the Planar Vortex. After Molag Bal’s defeat, he became Meridia’s servant and enabled the Vestige to visit rival Alliance territories.\r\n\r\nDuring the Dragon crisis in Elsweyr, Zumog Phoom resurrected Cadwell’s original body as a familiar—at first a floating head—splitting Cadwell’s identity between the Soul Shriven and the Betrayer. Once the mortal body was fully restored and the Vestige of Cadwell’s energy siphoned into it, the Betrayer manifested completely and became the sole Cadwell, until his defeat allowed the Soul Shriven to reform from Coldharbour. Cadwell can open portals anywhere; when the Betrayer realigned the moons, he bound himself to the Lunar Lattice, which Khamira correctly theorized was the source of this unique power—she replicated it once similarly bound. Cadwell ultimately mastered portal creation over thousands of years in Coldharbour.", + "display_name": "cadwell", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Culture:\nMasser received its title from the Aldmer, who knew the plane as Jode (\"Big Moon God\" in Ehlnofex). Similarly, Masser finds itself invested with a position of authority and reverence among the Khajiiti pantheon, as its phase at the time of their birth — along with that of Secunda, the lesser of Nirn's moons — determines their form.\n\nWhile regarded by various cultures as an attendant spirit of their god planet, minor god, or foreign god, Masser is not displayed within Dwemer orreries, nor does it hold a position within the pantheon of Imperial gods.\n\nSome believe that the moons stand as testament to the potency of twins in Tamrielic mythology. Indeed, it is not rare for them to be referred to as the Twin Moons.\n\nKhajiit:\nFor the Khajiit, the moons have special significance in their culture. In Khajiiti legend, the motion of the moons constructs something called the \"Lunar Lattice\" or \"Ja-Kha'jay\" in Ta'agra, which protects Mundus from the rest of the Aurbis. Khajiit are born in differing forms depending on the current phases of the moons. They will often refer to specific moon phases by the Khajiiti form it is connected to. See Khajiiti Morphology for details. Just as Khajiit are the children of Jone and Jode, the Drom-m'Athra are children of the Dark Moon. Their influence is stronger when the moons are new and in tall places close to the moons, and to speak of them outside the moonlight risks their corruption. Forgotten Manes, those born under the eclipse, called to become champions of the Pride of Alkosh are more closely linked to the moons but also at greater risk of corruption.\n\nPre-ri'Datta:\nIn pre-ri'Datta Khajiiti culture, Jode is known under the title of the Ever-mourned, and is one of the two stillborn twins of Fadomai. As Fadomai was dying, Khenarthi didn't want her mother to despair in knowing of her twin's fate, and kept it to herself. The twins are known as the Twin Lanterns of Jone and Jode. Jode is known as the lantern of love, who is \"as hot and red as summer solstice\", and its twin Jone is the lantern of mercy, who is as \"cool and pale as a winter moon\". These lanterns were lit to give the illusion of their eyes being bright and full of life. Khenarthi then embraced them, and rocked them in the sky until her mother passed. Azurah looks after them now and ensures their fires are kept lit, relighting the lanterns when they burn low, while the spirit Alkosh ensures their movement with the tapestry of time, ensuring that they are not locked in place to prevent the undesirable from slipping through the Lunar Lattice. The Twin Lantern's love for the Khajiiti people is expressed through Moonlight and Moon Sugar.\n\nPre-ri'Datta myths link a number of deities to the moons.\n\nThe Khajiit believe that Alkosh is responsible for preserving the stability of the world, as part of this role he is said to maintain the steady movement of the moons, Jode and Jone, it is believed that without him they would freeze in place, allowing terrible things to slip through the Lunar Lattice. Hermorah and Azurah are also said to help maintain the motions of the moons in the sky.\n\nA number of myths describe a strong link between Azura and the moons. In Khajiiti culture, the First Secret given to Azurah by her mother Fadomai gives her dominion over the three moons, Jone, Jode, and the Dark Moon. She is said to have formed her own realm of Moonshadow out of a sea of moonlight tears she shed while grieving for her mother, and to have lit the fire the funeral pyre of Lorkhaj out of the lanters of love and mercy, of Jode and Jone, before scattering his ashes across the Lattice. Other myths speak of how Azurah purred across the stars, coaxing the twin moons to part and make way for a sky-guardian, a third hidden moon which would serve as the shield of the Lunar Lattice, and shine down upon the Khajiit of purest heart and fervent obedience, who'd be known from that point on as the Litter of the Hidden Moon, and be tasked with redeeming the Dro-m'Athra.\n\nAfter Lorkhaj's death, Azurah made a funeral pyre before the Varliance gate, and lit it with the Twin Lanterns of Jone and Jode. Her tears fell upon the pyre and the ashes scattered across the Lattice. As a result, it is said Azurah and Khenarthi can call upon the \"true spirit\" of Lorkhaj to appear. Sometime after the creation of the Khajiiti people, Azurah, knowing that the false Lorkhaj, the Moon Beast, a twisted shade born of the Dark Heart and the first Dro-m'Athra, would one day covet her children, used the Twin Lanterns of Jone and Jode to summon the true spirit of Lorkhaj to be a sky-guardian. As the third moon, Lorkhaj shined his light upon the Khajiit, choosing the purest of heart to be part of the \"Litter of the Hidden Moon\", to learn the way of the Moonlight Blade. And from then on, on nights of the Ghost Moon, Azurah opens the Void Gate, and the Moon Beast will challenge mortals until banished. Furthermore, the spirit Boethra is said to wear the death-shroud of Lorkhaj these nights, and \"wages war beyond the Lattice\". Modern Khajiiti beliefs on the third moon differ from ancient beliefs, with the birth of the Mane being the main purpose of its existence. This belief could have existed since at least 1E 2902, with the earliest known mane. Furthermore, the reasoning for the Dark Moon's existence is different. Modern Khajiit believe that Lorkhaj's body was hurled to the moons, and forced to follow Jone and Jode forever as punishment. Regardless of beliefs, non Khajiit have difficulty seeing the Dead Moon due to their eyes.\n\nPre-ri'Datta Khajiit myths speak of an alliance of the Adversarial Spirits Molagh, Merid-Nunda and Merrunz attacking the Lunar Lattice, only to be repelled by its defenders, Azurah, Boethra and Mafala who also receive the aid of Noctra. In such myths the Lattice is described as burning spirits that touch it, causing Molagh to fall into the darkness below when pressed against it. It is said that no spirit had ever managed to damage it until Merrunz, released in those myths to serve as a weapon against the Lattice, cracked it with his axe. Though the Adversarial Spirits are repelled, the myths describe this exact conflict and events having repeated many times in the past, so many even the deities involved don't recall the number.\n\nOther Beliefs:\nSome Moon-Singer songs link the moons to the origins of the Khajiiti demigod and hero Khunzar-ri. In the song, a young Shazeer Firstclaw, who would go on to become the first Clan Mother of the Barrukit kingdom, was cornered by a pride of hungry senche-lions while climbing on top of Shimmering Rise. She managed to hold them at bay with a stick and some pebbles until nightfall, when tiredness and hunger began to overtake her. Shazeer called to Jone and Jode for aid, and a moonbeam illuminated the rise. Within it stood a young Khajiit of the same age as Shazeer, who informed her that Jone and Jode had sculpted him out of moonlight, clouds, and her own courageous heart and sent him to rescue her. The Khajiit was Khunzar-ri, who proceeded to do as he'd promised.\n\nIn modern Khajiit culture, walking the Path of Jode is a necessary step for a Lunar Champion seeking to become the Mane. Under the influence of moon sugar vapors, the Moon Hallowed guides the Lunar Champion through an aspect of Masser known as the Demi-Plane of Jode, which shapes itself to show visions of the future to those who walk along the path.\n\nThe Lunar Lorkhan suggests that Masser originated as one of the halves of Lorkhan's \"flesh-divinity\", cast within the bounds of Nirn at the time of his destruction, and thus, is a personification of the dichotomy that Lorkhan legends often rail against: ideas of good versus evil, being versus nothingness, and so on. It is believed that Masser was thus purposefully set in the night sky as Lorkhan's constant reminder to his mortal issue of their duty. The War of Manifest Metaphors suggest all claims as to the origins of the Moons are absurd. Additionally, both modern and ancient Khajiiti religion places the two moons as separate entities that existed prior to Lorkhan's punishment, and only believe that the third moon, the Dark Moon, is Lorkhaj's corpse.\n\nThere is an ancient legend about a master jumper from Quin'rawl named Anahbi, who leapt from Nirn and almost fell into Oblivion but was caught by Jone and Jode. Anahbi quickly took the light from Jone and leapt for Nirn again. The two moons followed suit and danced across the skies to grab her. When they caught her again, she stole the light from Jode and tried to escape again, but they were able to restrain her. Anahbi promised to never do it again if they returned her home, and as a reminder of her promise, her brow bore speckles of stardust.\n\nThe Tale of Dro'Zira, a Khajiit account of the Battle of Red Mountain describes how Ra'Wulfharth, who had been granted the \"roar of Lorkhaj\", spoke to the moons and commanded them to \"move to their fullness in the sky\" to turn a band of warriors from the Pride of Alkosh into senche and strip them of all reason, having them fight at his side, as he could not bring himself to kill them.\n\nThe story of Rajhin and the Stone Maiden tells of the Trickster God preventing a young maiden from commiting suicide. Concerned, Rajhin asked her what would drive her to do such a thing, and she explained that her greedy step-father demanded an insane bride-price, and caused the village he ran to seethe with corruption. Seeking to teach the step-father a lesson, Rajhin aided the maiden in a plan that would allow her to be with her beloved. And so the couple met with the step-father to arrange a deal, and offered something greater than the bride-price. It was a great land that can be seen from their village that has no ruler. One that \"shines like a pearl in the darkness\", can be claimed, but cannot be reached without their agent. The greedy step-father agreed to the terms, which then prompted Rajhin to manifest behind him. As per their agreement, Rajhin quickly seized him and took him to the moon of Jode, far from where he could interfere with the couple's relationship. The villagers were initially shocked, but celebrated that their home was freed of the tyrant, and held a wedding ceremony for the couple. During the night, Rajhin manifested once more, for he traveled too fast which caused the step-father to be separated from his shadow, which threatened the newly-weds. Because they could not see it, from their perspective it appeared like Rajhin was reaching for air, and upon the Thief God's explanation, they were relieved and their laughter echoed across the riverbank.\n\nThe ancient Khajiit moon priests practiced a rite known as the Shadow Dance or \"Dance of Shadows\", practiced famously by Anequina Sharp-Tongue and described as experiencing moonlight in its distilled form in order to \"walk paths that took strange angles\" to places \"tangential to dreams, but never dreaming\". Those attuned to the moons in this manner could \"hear the moons sing\" and could impact the Lunar Lattice, commanding the moons to move in the sky, open portals to other places and realms such as Oblivion, the Jonelight Path, or the moons themselves, and manipulate sources of lunar energy to perform deeds such as recharging a Dragonhorn. Descendants of the attuned could become linked to the spirits of their ancestor if they became attuned themselves, allowing them to perceive their memories and emotions and to act as vessels for them to act and communicate through should they desire it. Those who gained better understanding of their attunement learned how to \"smell\" magic and track and identify it by specific \"scent\", and gained greater mastery of portals, allowing them to open multiple portals in different locations at once and even imbue the portal magic into their blade and use it as a weapon in combat. Gazing into the eyes of a master of the Shadow Dance attuned to the moons was said to allow one to perceive the movement of their soul reflecting that of the moons and grant knowledge of it, the one transmitting such knowledge had to take care that only the reflection of the Lattice was glimpsed by the recipient, as witnessing the true glory and horror of the Lattice had driven many mad, despite this it is said that even the reflection allowed one to glimpse the bastion of existence, such that could not be found elsewhere. It was said that the reason the Dance could impact something as enormous as the Lattice was that, in truth, the Dance and the Lattice were of the same size, the movements of the attuned soul performing the Shadow Dance were a near perfect existence, a chaotic and beautiful movement \"swelling with reverberations\" of fumes of moonlight and the \"great and small vertices\", the moons mirrored and perfected that form, and so were themselves changed for a time. It is said that witnessing the Shadow Dance and the Lattice within the soul of the attuned directly could allow for true understanding of the Shadow Dance, though only those who'd undergone lifetimes of study could be shown this without risking madness. Some masters of the Shadow Dance such as Juha-ri Sage of the White Sand, were known to perform one final Shadow Dance at the end of their lives, causing them to collapse dead as their soul journeyed to the Sands Behind the Stars and leaving behind their temple acolytes. This last Shadow Dance took place within the vault of the Shadow Dance Temple where Anequina Sharp-Tongue herself danced the Shadow Dance.\n\nThe Crimson Torchbug is said to be the light of Jode given form. These insects dance around Moon-Sugar Cane to bless the crops.\n\nBreton:\nA Breton story tells of two star crossed lovers, Shandar and Mara, children from different villages at war with one another. After seeking to run away from home, they were caught by the guards, and Shandar was imprisoned, while Mara was put in house arrest. Her father arranged a marriage to prevent the pair from getting married, which was further escalated by Shandar being scheduled for execution for daring to love Mara. Learning of this, Mara escaped into the wilds in the dark of night, at a time period where the moons didn't exist, and was kidnapped by an Orc during her sleep which planned to devour her.\n\nThe village learned of Mara fleeing from her home, yet they were too frightened to seek her out and confront the Orc. Shandar begged and was given the chance to go, but the village after gaining their composure realized that it was a mistake to send a child to confront a monster. They came across a clearing, seeing the corpse of the Orc and a mourning Mara holding the severed head of Shandar. With Mara's tears flowing down at his head, Shandar prayed to his lovers' namesake, and the goddess Mara responded. She did not have dominion over the death, and thus could not resurrect Shandar, but sought to keep their love alive. The goddess Mara reached down from the heavens and placed the lovers in the sky. They are now known as the moons Mara's Tear (Masser) and Shandar's Sorrow (Secunda), illuminating the night to keep away the evils that lurk. This story complements the themes of the pre-ri'Datta Khajiit, with the moons fitting the sphere of the children's namesake, with Mara's Tear being a lantern of love, and Shandar's Sorrow being the lantern of mercy.\n\nAncient druids had Mara's Tear and Shandar's Sorrow as a witness to sanctify rituals.\n\nAltmer:\nThree is one of the Sacred Numbers, which the Altmer recognize as integral to the universe's existence. Three, in particular, represents the Prime Celestials, which are embodied by the Sun and the two moons.\n\nCertain Altmer claim that it's common knowledge that the moons were created by Sheogorath.\n\nArgonian:\nArgonian alchemy uses the phases of the moon to precisely align the calcinator in the alchemical process. During the full moon, the calcinator faces south and aligns with the Southron pole star, and every night after that, the calcinator rotates clockwise one twenty-eighth of the circle. The device has to be placed in a way where the moonlight shines on half of it. During the new moon, the calcinator should be fully exposed to the light. There is a town in southern Black Marsh called Moonmarch, which was east of Soulrest and southwest of Blackrose.\n\nDunmer:\nThe teachings of the Tribunal Temple describe a civilization of grave ghosts on a moon, known as the Parliament of Craters. They were said to hold resentment toward the kings of Nirn.\n\nNord:\nMembers of the Companions refer to someone afflicted with lycanthropy as \"moon-born\".\n\nIn the \"Five Songs of King Wulfharth\", Nerevar's dagger, Keening was described as \"made of the sound of the shadow of the moons\".\n\nReachfolk:\nCertain Reachfolk clans, like the Crow-Eyes, were known to present stones bathed in moonlight as offerings to their spirits to renew the protective wards surrounding their settlements, like Karthwasten. These moonlit rocks symbolized purity. Additionally, silver is referred to as \"moon-kissed ore\" by the Reachfolk. Furthermore, some clans even derive their names from the moon, as seen with the Black-Moon Clan. Hircine oversees pacts between Reach clans, approving of the deal if the union is worth committing to. The ritual calling upon Hircine to bless a pact involves several components. On occasion, within these rituals, phrases like \"Two great packs seek the same full moon. Make them one, bound by common prey\" are intoned.\n\nRedguard:\nThe crescent moon is a symbol of cultural significance in the Kingdom of Sentinel as it was the banner of Grandee Yaghoub, the one who first founded the capital city in the early-mid First Era. The moon on the banner is known as the White Moon. King Camaron was also called the White Moon as a nod to this. Before the Order of the Candle was the knightly order of Sentinel, it was the Knights of the Moon.\n\nThe Aurbical Abacus was a Yokudan relic designed to track the movements of the moons, among other astronomical objects, and calculated the exact change in seasons. It was an artifact associated with Zeht, the god of agriculture, and kept in a tomb in Hew's Bane before it was later destroyed.\n\nBosmer:\nThe Bosmer regard the moons as spirits of fortune, both good and bad.\n\nVampire:\nThe moondial in Castle Volkihar is perhaps the only one in existence. It was originally a sundial built for the previous owners of the castle, but Valerica of the Volkihar Clan persuaded an elven artisan to change images of the sun to phases of the moons.\n\nOne of Tamriel's most rare and dangerous artifacts is the Vampiric Ring. It was created in ancient times by a cult of vampires in Morrowind. Its rarity comes from the fact it only appears every few hundred moon cycles.\n\nWerewolf:\nSome strains of lycanthropy cause the afflicted to transform into a werewolf under moonlight, or specifically a full moon. Some of these werewolves worship the moons, but this practice has been considered a parody of true lunar faith.\n\nOther:\nSome sailors believe the moons were enormous atronachs, who wrestled for the amusement of the Daedric Princes, which is what causes thunderstorms.", + "display_name": "masser", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Culture:\r\nSecunda received its title from the Aldmer, who knew the plane as Jone (\"Little Moon God\"). Similarly, Secunda finds itself invested with a position of authority and reverence among the Khajiiti pantheon, as its phase at the time of their birth - along with that of Masser, the greater of Nirn's moons - determines their form.\r\n\r\nSome believe that the moons stand as testament to the potency of twins in Tamrielic mythology. Indeed, it is not rare for them to be referred to as the Twin Moons.\r\n\r\nKhajiit:\r\nFor the Khajiit, the moons have special significance in their culture. In Khajiiti legend, the motion of the moons constructs something called the \"Lunar Lattice\" or \"Ja-Kha'jay\" in Ta'agra, which protects Mundus from the rest of the Aurbis. Khajiit are born in differing forms depending on the current phases of the moons. They will often refer to specific moon phases by the Khajiiti form it is connected to. See Khajiiti Morphology for details. Just as Khajiit are the children of Jone and Jode, the Drom-m'Athra are children of the Dark Moon. Their influence is stronger when the moons are new and in tall places close to the moons, and to speak of them outside the moonlight risks their corruption. Forgotten Manes, those born under the eclipse, called to become champions of the Pride of Alkosh are more closely linked to the moons but also at greater risk of corruption.\r\n\r\nIn pre-ri'Datta Khajiiti culture, Jode is known under the title of the Ever-mourned, and is one of the two stillborn twins of Fadomai. As Fadomai was dying, Khenarthi didn't want her mother to despair in knowing of her twin's fate, and kept it to herself. The twins are known as the Twin Lanterns of Jone and Jode. Jode is known as the lantern of love, who is \"as hot and red as summer solstice\", and its twin Jone is the lantern of mercy, who is as \"cool and pale as a winter moon\". These lanterns were lit to give the illusion of their eyes being bright and full of life. Khenarthi then embraced them, and rocked them in the sky until her mother passed. Azurah looks after them now and ensures their fires are kept lit, relighting the lanterns when they burn low, while the spirit Alkosh ensures their movement with the tapestry of time, ensuring that they are not locked in place to prevent the undesirable from slipping through the Lunar Lattice. The Twin Lantern's love for the Khajiiti people is expressed through Moonlight and Moon Sugar.\r\n\r\nPre-ri'Datta myths link a number of deities to the moons.\r\n\r\nThe Khajiit believe that Alkosh is responsible for preserving the stability of the world, as part of this role he is said to maintain the steady movement of the moons, Jode and Jone, it is believed that without him they would freeze in place, allowing terrible things to slip through the Lunar Lattice. Hermorah and Azurah are also said to help maintain the motions of the moons in the sky.\r\n\r\nA number of myths describe a strong link between Azura and the moons. In Khajiiti culture, the First Secret given to Azurah by her mother Fadomai gives her dominion over the three moons, Jone, Jode, and the Dark Moon. She is said to have formed her own realm of Moonshadow out of a sea of moonlight tears she shed while grieving for her mother, and to have lit the fire the funeral pyre of Lorkhaj out of the lanters of love and mercy, of Jode and Jone, before scattering his ashes across the Lattice. Other myths speak of how Azurah purred across the stars, coaxing the twin moons to part and make way for a sky-guardian, a third hidden moon which would serve as the shield of the Lunar Lattice, and shine down upon the Khajiit of purest heart and fervent obedience, who'd be known from that point on as the Litter of the Hidden Moon, and be tasked with redeeming the Dro-m'Athra.\r\n\r\nAfter Lorkhaj's death, Azurah made a funeral pyre before the Varliance gate, and lit it with the Twin Lanterns of Jone and Jode. Her tears fell upon the pyre and the ashes scattered across the Lattice. As a result, it is said Azurah and Khenarthi can call upon the \"true spirit\" of Lorkhaj to appear. Sometime after the creation of the Khajiiti people, Azurah, knowing that the false Lorkhaj, the Moon Beast, a twisted shade born of the Dark Heart and the first Dro-m'Athra, would one day covet her children, used the Twin Lanterns of Jone and Jode to summon the true spirit of Lorkhaj to be a sky-guardian. As the third moon, Lorkhaj shined his light upon the Khajiit, choosing the purest of heart to be part of the \"Litter of the Hidden Moon\", to learn the way of the Moonlight Blade. And from then on, on nights of the Ghost Moon, Azurah opens the Void Gate, and the Moon Beast will challenge mortals until banished. Furthermore, the spirit Boethra is said to wear the death-shroud of Lorkhaj these nights, and \"wages war beyond the Lattice\". Modern Khajiiti beliefs on the third moon differ from ancient beliefs, with the birth of the Mane being the main purpose of its existence. This belief could have existed since at least 1E 2902, with the earliest known mane. Furthermore, the reasoning for the Dark Moon's existence is different. Modern Khajiit believe that Lorkhaj's body was hurled to the moons, and forced to follow Jone and Jode forever as punishment. Regardless of beliefs, non Khajiit have difficulty seeing the Dead Moon due to their eyes.\r\n\r\nPre-ri'Datta Khajiit myths speak of an alliance of the Adversarial Spirits Molagh, Merid-Nunda and Merrunz attacking the Lunar Lattice, only to be repelled by its defenders, Azurah, Boethra and Mafala who also receive the aid of Noctra. In such myths the Lattice is described as burning spirits that touch it, causing Molagh to fall into the darkness below when pressed against it. It is said that no spirit had ever managed to damage it until Merrunz, released in those myths to serve as a weapon against the Lattice, cracked it with his axe. Though the Adversarial Spirits are repelled, the myths describe this exact conflict and events having repeated many times in the past, so many even the deities involved don't recall the number.\r\n\r\nSome Moon-Singer songs link the moons to the origins of the Khajiiti demigod and hero Khunzar-ri. In the song , a young Shazeer Firstclaw, who would go on to become the first Clan Mother of the Barrukit kingdom, was cornered by a pride of hungry senche-lions while climbing on top of Shimmering Rise. She managed to hold them at bay with a stick and some pebbles until nightfall, when tiredness and hunger began to overtake her. Shazeer called to Jone and Jode for aid, and a moonbeam illuminated the rise. Within it stood a young Khajiit of the same age as Shazeer, who informed her that Jone and Jode had sculpted him out of moonlight, clouds, and her own courageous heart and sent him to rescue her. The Khajiit was Khunzar-ri, who proceeded to do as he'd promised.\r\n\r\nIn modern Khajiit culture, walking the Path of Jode is a necessary step for a Lunar Champion seeking to become the Mane. Under the influence of moon sugar vapors, the Moon Hallowed guides the Lunar Champion through an aspect of Masser known as the Demi-Plane of Jode, which shapes itself to show visions of the future to those who walk along the path.\r\n\r\nThe Lunar Lorkhan suggests that Masser originated as one of the halves of Lorkhan's \"flesh-divinity\", cast within the bounds of Nirn at the time of his destruction, and thus, is a personification of the dichotomy that Lorkhan legends often rail against: ideas of good versus evil, being versus nothingness, and so on. It is believed that Masser was thus purposefully set in the night sky as Lorkhan's constant reminder to his mortal issue of their duty. The War of Manifest Metaphors contradicts this claim. Additionally, both modern and ancient Khajiiti religion places the two moons as separate entities that existed prior to Lorkhan's punishment, and only believe that the third moon, the Dark Moon, is Lorkhaj's corpse.\r\n\r\nThere is an ancient legend about a master jumper from Quin'rawl named Anahbi, who leapt from Nirn and almost fell into Oblivion but was caught by Jone and Jode. Anahbi quickly took the light from Jone and leapt for Nirn again. The two moons followed suit and danced across the skies to grab her. When they caught her again, she stole the light from Jode and tried to escape again, but they were able to restrain her. Anahbi promised to never do it again if they returned her home, and as a reminder of her promise, her brow bore speckles of stardust.\r\n\r\nThe Tale of Dro'Zira, a Khajiit account of the Battle of Red Mountain describes how Ra'Wulfharth, who had been granted the \"roar of Lorkhaj\", spoke to the moons and commanded them to \"move to their fullness in the sky\" to turn a band of warriors from the Pride of Alkosh into senche and strip them of all reason, having them fight at his side, as he could not bring himself to kill them.\r\n\r\nThe ancient Khajiit moon priests practiced a rite known as the Shadow Dance or \"Dance of Shadows\", practiced famously by Anequina Sharp-Tongue and described as experiencing moonlight in its distilled form in order to \"walk paths that took strange angles\" to places \"tangential to dreams, but never dreaming\". Those attuned to the moons in this manner could \"hear the moons sing\" and could impact the Lunar Lattice, commanding the moons to move in the sky, open portals to other places and realms such as Oblivion, the Jonelight Path, or the moons themselves, and manipulate sources of lunar energy to perform deeds such as recharging a Dragonhorn. Descendants of the attuned could become linked to the spirits of their ancestor if they became attuned themselves, allowing them to perceive their memories and emotions and to act as vessels for them to act and communicate through should they desire it. Those who gained better understanding of their attunement learned how to \"smell\" magic and track and identify it by specific \"scent\", and gained greater mastery of portals, allowing them to open multiple portals in different locations at once and even imbue the portal magic into their blade and use it as a weapon in combat. Gazing into the eyes of a master of the Shadow Dance attuned to the moons was said to allow one to perceive the movement of their soul reflecting that of the moons and grant knowledge of it, the one transmitting such knowledge had to take care that only the reflection of the Lattice was glimpsed by the recipient, as witnessing the true glory and horror of the Lattice had driven many mad, despite this it is said that even the reflection allowed one to glimpse the bastion of existence, such that could not be found elsewhere. It was said that the reason the Dance could impact something as enormous as the Lattice was that, in truth, the Dance and the Lattice were of the same size, the movements of the attuned soul performing the Shadow Dance were a near perfect existence, a chaotic and beautiful movement \"swelling with reverberations\" of fumes of moonlight and the \"great and small vertices\", the moons mirrored and perfected that form, and so were themselves changed for a time. It is said that witnessing the Shadow Dance and the Lattice within the soul of the attuned directly could allow for true understanding of the Shadow Dance, though only those who'd undergone lifetimes of study could be shown this without risking madness. Some masters of the Shadow Dance such as Juha-ri Sage of the White Sand, were known to perform one final Shadow Dance at the end of their lives, causing them to collapse dead as their soul journeyed to the Sands Behind the Stars and leaving behind their temple acolytes. This last Shadow Dance took place within the vault of the Shadow Dance Temple where Anequina Sharp-Tongue herself danced the Shadow Dance.\r\n\r\nBreton:\r\nA Bretonic story tells of two star crossed lovers, Shandar and Mara, children from different villages at war with one another. After seeking to run away from home, they were caught by the guards, and Shandar was imprisoned, while Mara was put under house arrest. Her father arranged a marriage to prevent the pair from getting married, which was further escalated by Shandar being scheduled for execution for daring to love Mara. Learning of this, Mara escaped into the wilds in the dark of night, at a time period where the moons didn't exist and so was kidnapped by an Orc during her sleep which planned to devour her.\r\n\r\nThe village learned of Mara fleeing from her home, yet they were too frightened to seek her out and confront the Orc. Shandar begged and was given the chance to go, but the village after gaining their composure realized that it was a mistake to send a child to confront a monster. They came across a clearing, seeing the corpse of the Orc and a mourning Mara holding the severed head of Shandar. With Mara's tears flowing down at his head, Shandar prayed to his lovers' namesake, and the goddess Mara responded. She did not have dominion over the death, and thus could not resurrect Shandar, but sought to keep their love alive. The goddess Mara reached down from the heavens and placed Shandar and Mara in the sky, and the lovers are now known as the moons Mara's Tear (Masser) and Shandar's Sorrow (Secunda), illuminating the night to keep away the evils that lurk. This story fits the themes of the pre-ri'Datta Khajiit, with the moons fitting the sphere of the children's namesake, with Mara's Tear being a lantern of love, and Shandar's Sorrow being the lantern of mercy.\r\n\r\nAncient druids had Shandar's Sorrow and Mara's Tear as a witness to sanctify rituals.\r\n\r\nAltmer:\r\nThree is one of the Sacred Numbers, which the Altmer recognize as integral to the universe's existence. Three, in particular, represents the Prime Celestials, which are embodied by the Sun and the two moons.\r\n\r\nArgonian:\r\nArgonian alchemy uses the phases of the moon to precisely align the calcinator in the alchemical process. During the full moon, the calcinator faces south and aligns with the Southron pole star, and every night after that, the calcinator rotates clockwise one twenty-eighth of the circle. The device has to be placed in a way where the moonlight shines on half of it. During the new moon, the calcinator should be fully exposed to the light. There is a town in southern Black Marsh called Moonmarch, which was east of Soulrest and southwest of Blackrose.\r\n\r\nDunmer:\r\nThe teachings of the Tribunal Temple describe a civilization of grave ghosts on a moon, known as the Parliament of Craters. They were said to hold resentment toward the kings of Nirn.\r\n\r\nNord:\r\nMembers of the Companions refer to someone afflicted with lycanthropy as \"moon-born\".\r\n\r\nIn the \"Five Songs of King Wulfharth\", Nerevar's dagger, Keening was described as \"made of the sound of the shadow of the moons\".\r\n\r\nReachfolk:\r\nCertain Reachfolk clans, like the Crow-Eyes, were known to present stones bathed in moonlight as offerings to their spirits to renew the protective wards surrounding their settlements, like Karthwasten. These moonlit rocks symbolized purity. Additionally, silver is referred to as \"moon-kissed ore\" by the Reachfolk. Furthermore, some clans even derive their names from the moon, as seen with the Black-Moon Clan. Hircine oversees pacts between Reach clans, approving of the deal if the union is worth committing to. The ritual calling upon Hircine to bless a pact involves several components. On occasion, within these rituals, phrases like \"Two great packs seek the same full moon. Make them one, bound by common prey\" are intoned.\r\n\r\nRedguard:\r\nThe crescent moon is a symbol of cultural significance in the Kingdom of Sentinel as it was the banner of Grandee Yaghoub, the one who first founded the capital city in the early-mid First Era. The moon on the banner is known as the White Moon. King Camaron was also called the White Moon as a nod to this. Before the Order of the Candle was the knightly order of Sentinel, it was the Knights of the Moon.\r\n\r\nThe Aurbical Abacus was a Yokudan relic designed to track the movements of the moons, among other astronomical objects, and calculated the exact change in seasons. It was an artifact associated with Zeht, the god of agriculture, and kept in a tomb in Hew's Bane before it was later destroyed.\r\n\r\nVampire:\r\nThe moondial in Castle Volkihar is perhaps the only one in existence. It was originally a sundial built for the previous owners of the castle, but Valerica of the Volkihar Clan persuaded an elven artisan to change images of the sun to phases of the moons.\r\n\r\nOne of Tamriel's most rare and dangerous artifacts is the Vampiric Ring. It was created in ancient times by a cult of vampires in Morrowind. Its rarity comes from the fact it only appears every few hundred moon cycles.\r\n\r\nWerewolf:\r\nSome strains of lycanthropy cause the afflicted to transform into a werewolf under moonlight, or specifically a full moon. Some of these werewolves worship the moons, but this practice has been considered a parody of true lunar faith.\r\n\r\nOther:\r\nSome sailors believe the moons were enormous atronachs, who wrestled for the amusement of the Daedric Princes, which is what causes thunderstorms.\r\n\r\nBloodmoon:\r\nThe Bloodmoon is a phenomenon occurring when Hircine's Great Hunt is hosted on Nirn. During the Great Hunt, Secunda turns a deep shade of red and becomes the Bloodmoon. The hunt is believed to end when the Bloodmoon disappears, and Secunda turning red is considered a calling for the chase. The Bloodmoon occurs naturally in the Hunting Grounds, as the Great Hunts are constantly held there", + "display_name": "secunda", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "\"Anu encompassed, and encompasses, all things.\"\n—The Monomyth\nAnu, or Anu the Everything, is thought to be the quintessential form of Stasis and Order, the anthropomorphization of two primal forces (the other being Padomay, Change and Chaos). Anu or his equivalent under a different name is present in every culture's traditions; for instance, the Khajiit refer to him as Ahnurr, and he is a \"littermate\" to Fadomai. He is known as Satak to the Redguards. He is known as the Light to the Bretons. He also shares similarities to the Argonian figure Atak. Other names for Anu include Ak, Bird, and Good.\n\nAs the story goes, Time began when the two forces entered the Void; the interplay between them led to all of Creation, starting with Nir. Anu is typically described in masculine terms, and Nir in feminine terms, and theirs is the first love story. Padomay took exception to Nir's love of Anu, and so the first love story ends in violence. Nir, wounded, gave birth to the twelve worlds of Creation before dying. When Padomay attacked and shattered these worlds, Anu fought him off and salvaged Creation by combining the remnants into one world, Nirn.\n\nWhen Padomay returned to once again try to destroy Creation, Anu pulled them both outside of Time itself, ending their conflict's threat to Creation, though Creation remained abundant with many Anuic and Padomaic spirits. Anu's blood, spilt during the battle with his brother, became the stars, and the mingled blood of the two brothers became the Aedra. In the Altmer tradition, Anu personified his own soul into Anuiel \"so that he might know himself\", and Anuiel's soul was in turn personified in Auri-El. There is a shrine to Anu in the Altmeri site of Torinaan. Holy Waters are considered especially useful when used to honor Anu, who shaped the cosmos in the Dawn Era, and Y'ffre, the Earth Bones.\n\nGods with an Anuic basis, those \"bound to Anu's light\", include almost all Aedra and most deities associated with the creation of Mundus and Nirn.\n\nMythology\nThe creation myth of the Altmer begins before the start of the Dawn Era and the beginning of time: the primordial force of Anu the Everything, who encompassed and encompasses all things, created Anuiel, the soul of all things, so it could know itself. Anuiel in turn created Sithis for the same purpose, as the sum up of all limitations which it would use to differentiate between it's attributes and ponder itself, and their interrelation created the Aurbis, where the Original Spirits, the Et'Ada, emerged before the creation of the Mundus as \"aspects of Aurbis\". The ancient Aldmer believed they are the relatively feeble descendants of the Aedra (\"Aedra\" roughly translates to \"ancestor spirit\"), distant offspring of those of the Aedra who populated the Mundus so that it might last despite Lorkhan's deception, diminished from the might of their progenitors over the generations. Per the creation myth of the Altmer, after their progenitors discovered the deception of Lorkhan, their leader Auri-El begged Anu to take them back, but Anu would not because he had already created something else to take their place, instead the more merciful Anui-El created a Bow and Shield For Auri-El to use in the war against Lorkhan.\n\nThe Clockwork Apostles of Sotha Sil similarly believe that Anu is the primordial being of singularity. Anu sundered himself for wisdom's sake, seeking to better understand his nature, and all forces and entities that exist trace their roots to him as values that reside within his vastness. They believe Padomay and the Padomaic forces such as the Daedra are merely an illusion, the result of the Great Lie of Lorkhan who tricked the et'Ada and steered them away from the face of Anu, by making them view themselves as distinct and whole and give themselves names. The Clockwork Apostles believe Sotha Sil wishes to reverse this error, the Et'Ada's sin, through his work on the Clockwork City, by bringing Nirn to a state of Anuic unity, Anuvanna'si.\n\nContrasting the beliefs of the Altmer and Clockwork Apostles, some souces maintain that the role of creator belongs to Sithis, who is the one truly responsible for setting the interplay of Aurbis in motion by creating new things out of the essence of the inert Anu who, as the embodiment of stasis, has no desire to bring change.\n\nIn the Anuad, an Ayleid creation myth from the Mythic Era, Anu and Padomay were brothers that fought over the personification of reality, Nir. Anu and Nir created Creation, angering Padomay and causing him to attack. Both wound up dying to each other, and their blood led to the creation of the gods. The Daedra came from Padomay's blood exclusively, detaching them from Creation, the stars arose solely from the blood Anu, and the Aedra were spawned from the mixing of the blood of both Padomay and Anu, allowing the Aedra to be 'capable of both good and evil' and tying them to Creation.\n\nIn Khajiiti creation stories, Ahnurr and Fadomai were mates and gave birth to the litters of the Aedra and then the Daedra. Though Ahnurr was content with this, Fadomai secretly tricked Ahnurr into helping create one last litter, angering him. Interestingly, the roles of creator and aggressor are flipped in this particular story, with Ahnurr attacking Fadomai during the birth of Nirni and the Moons. Following his attack, Fadomai flees to the Void to birth her final member of the litter, Lorkhaj, who creates the Mundus for Nirni to exist within and tricks the rest of the gods to become trapped in it.\n\nOne pre-ri'Datta Khajiit account describes how, during the Middle-Dawn, Boethra was called from her battle with Orkha by the Blue Star and transported atop the Adamantine Tower by Khenarthi. There Boethra saw the Selectives speaking lies in a way that made them true, drawing runes that were attempting to make it so that neither Akha, nor Alkosh, nor Alkhan, nor any Child of Akha, nor any of the myriad kingdoms Akha had created along the Many Paths, any of the lands he'd seeded and brought into his kingdom, had ever existed. Seeing the lie the Selectives were attempting to make real, Boethra, who had once been exiled to the Many Paths by Akha, started to wander if she had ever been the Daughter of Blades at all, or if it had all been a dream of someone who'd never existed, and felt something akin to fear for the first time. Knowing the Selectives must not succeed, Boethra calculated and enacted the cuts needed to destroy both them and the lies they'd attempted to make real. Than, sensing an opportunity created by their actions, she found a tunnel to the fate they'd sought. Boethra opened her eyes to twelve spinning wheels surrounded by fire revolving beneath two warring serpents, one a serpent of flaming feathers and crystal scales with a head like a hunting bird, and another a crimson eyed serpent of blackest scales and a white mane followed by all the Void, the truth within the lies the Selectives had sought. The flame-feathered serpent emanated rejection of all \"Mannish impurity in all the known worlds\", the dark serpent though surrounded by chaos emanated gentleness and love for the spirits of the worlds, and in it Boethra saw a fleeting chance for peace along the wheels. As the feathered serpent's beak found purchase beneath the scales of the white maned serpent Boethra, dodging through the wheels to reach, summoned all her blades and struck at it's eye, repelling it. Landing on the head of the dark serpent she drew upon it's black flames, forming a blade and armor as her mind was scorched with things that were and have yet to be. She named the hawk-serpent for what it was and, reciting the Will Against Rule, dashed forward, cutting concepts at strange angles and ending the Dragon Break. This event would later come to be known as the Division of Heaven by mortals who remembered the Middle-Dawn.\n\nYokudans see Anu and Padomay as a single being known as 'Satakal', a giant serpent on the glimmer of whose scales all words rest, constantly eating its own tail in an endless cycle. To avoid being eaten by Satakal, Spirits learned to evade consumption by \"moving at strange angles\" to \"stride between the Worldskins\" a process that became known as 'the Walkabout', and through repetition gave rise to a sanctuary from the cycle known as the Far Shores. The Second Serpent, Sep, claimed to have an idea for a way to avoid Satakal and the Walkabout by creating a new world. Once again, this creation traps the other spirits within and they begin to die, unable to leave the new world, as it is too far separated from the real world of Satakal for them to survive in or jump to the Far Shores from.\n\nThough Argonian society as a whole doesn't have an established singular creation story, the Adzi-Kostleel tribe claims that two beings, Atak and Kota, fought until they joined together as a singular being known as Atakota. When they did this, they shed their skin and created a Shadow. This Shadow, though initially intending to devour everything, soon came to see the creations of Atakota as its own children, and instead gave them the gift of change, which would later come to be known as Death.\n\nA simplified and secular interpretation of The Monomyth can be found within the Bretonic tale The Light and the Dark. In it, two immortal entities representing Order and Chaos chose Tamriel to be their eternal battleground. This everlasting battle would create energies so powerful it distorted the world and created both the \"people of et'Ada\", who would in turn give rise to the gods, by believing in their myths for so long and so strongly, it caused the energies unleashed by the conflict of the Light and the Dark to bring them into being. According to the grandfather, all of creation exists to echo the battle between the Light and the Dark.\n\nThe Dunmer god Vivec teaches that Anu and Padomay were responsible for the creation of the universe, the Aurbis. From here, Vivec teaches that Anu and Padomay gave birth to their souls Anuiel and Sithis and from there, to their firstborns, the deities Akatosh and Lorkhan respectively. Vivec cites mythology of Anu and Padomay to support his interpretation of the concept of love. According to Vivec, Stasis and Change, Anu and Padomay, are infinite forces and realms residing in the infinite Void, the latter infinity paradoxically enclosing the others in a manner akin to an encircling sphere. At the intersection of the two forces, where they touch, lies a \"perfect circle of pattern and possibility\", the Wheel, and inside that Wheel lies the Aurbis which is its foundation. Vivec claims that outside the Wheel exists the Void, which cannot truly be named and is bereft of anything. The Void is said to have more aspects than just Stasis and Change, but they cannot be named as they are outside of true language. Vivec claims Anu and Padomay \"awakened\" during the process of sub-creation caused by their intersection as \"to see your antithesis is to finally awaken\". It is said that in reaction to this \"each gave birth to their souls\", Auri-El and Sithis. Each of these souls regarded the Aurbis in their own part, and from that came the et'Ada, the \"original patterns. Some sources claim that, rather than being a single wheel, the Aurbis, the intersection of Anu and Padomay, is instead more akin to \"a telescope that stretches all the way back to the eye of Anui-El, with Padomaics innumerable along its infinite walls\".\n\nThe Skaal believe in a single deity, the All-Maker, though they also recognize the Adversary, a malevolent and multifaceted tester who works to corrupt the All-Maker's dominion. The perpetual struggle between the two bears some resemblance to the one between Anu and Padomay. Similar to Dunmeri interpretations of Padomay and Sithis, the Skaal seemingly view their benevolent primordial force as Padomay, as opposed to Anu.", + "display_name": "anu", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sithis, also known as Padomay, Akel, Is-Not, El, Ixtaxh-thtithil-meht (meaning Exact Egg-Cracker), Evil, the Dread Father, Night Lord, Raj-Sithis, Serpent of Chaos, Unmaker, First Creator, Final Destroyer, and Bringer of Ends, is a representation of the one primordial state of chaos. One of the two primal forces, the other being Anu, Padomay is the personification of the primordial force of Chaos and Change who dwells in the Void. In relation to Anu, Padomay is also known as His Other and his double. One of many creation myths paint Padomay as Anu's brother, and the interplay between them created Nir, a personification of the Aurbis. Padomay was embittered by the love between Anu and Nir, and sought to destroy their love child, Creation. He killed Nir and sundered Creation, but Anu salvaged the remnants, then saved them from further harm by pulling his brother and himself outside of Time forever.\n\nGods with a \"Padomaic\" basis include most Daedric princes, who, as the Blood of Padomay, represent the forces of change, as does his \"son\" Lorkhan. His blood and Anu's mingled to create the Aedra, giving them the capacity for both good and evil.\n\nAlternatively, Khajiit mythos does not make these distinctions and has Daedra, Aedra, and Magna Ge entities alike composed of the blood of both Ahnurr and Fadomai.\n\nAltmer:\nIn the Anuad, an Ayleid creation myth from the Mythic Era, Anu and Padomay were brothers that fought over the personification of reality, Nir. Anu and Nir created Creation, angering Padomay and causing him to attack. Both wound up dying to each other, and their blood led to the creation of the gods. The Daedra came from Padomay's blood exclusively, detaching them from Creation, the stars arose solely from the blood of Anu, and the Aedra were spawned from the mixing of the blood of both Padomay and Anu, allowing the Aedra to be 'capable of both good and evil' and tying them to Creation.\n\nKhajiit:\nIn Khajiiti creation stories, Fadomai and Ahnurr were mates and gave birth to the litters of the Aedra and then the Daedra. Though Ahnurr was content with this, Fadomai secretly tricked Ahnurr into helping create one last litter, angering him. Interestingly, the roles of creator and aggressor are flipped in this particular story, with Ahnurr attacking Fadomai during the birth of Nirni and the Moons. Following his attack, Fadomai flees to the Void to birth her final member of the litter, Lorkhaj, who creates the Mundus for Nirni to exist within and tricks the rest of the gods to become trapped in it. According to Khajiiti sources preceding the Riddle'Thar Epiphany, before dying Fadomai gifted the names of all the spirits, of all gates and thresholds, and of all the Khajiit that would ever live, to her favored daughter, Azurah.\n\nOne pre-ri'Datta Khajiit account describes how, during the Middle-Dawn, Boethra was called from her battle with Orkha by the Blue Star and transported atop the Adamantine Tower by Khenarthi. There Boethra saw the Selectives speaking lies in a way that made them true, drawing runes that were attempting to make it so that neither Akha, nor Alkosh, nor Alkhan, nor any Child of Akha, nor any of the myriad kingdoms Akha had created along the Many Paths, any of the lands he'd seeded and brought into his kingdom, had ever existed. Seeing the lie the Selectives were attempting to make real, Boethra, who had once been exiled to the Many Paths by Akha, started to wander if she had ever been the Daughter of Blades at all, or if it had all been a dream of someone who'd never existed, and felt something akin to fear for the first time. Knowing the Selectives must not succeed, Boethra calculated and enacted the cuts needed to destroy both them and the lies they'd attempted to make real. Than, sensing an opportunity created by their actions, she found a tunnel to the fate they'd sought. Boethra opened her eyes to twelve spinning wheels surrounded by fire revolving beneath two warring serpents, one a serpent of flaming feathers and crystal scales with a head like a hunting bird, and another a crimson eyed serpent of blackest scales and a white mane followed by all the Void, the truth within the lies the Selectives had sought. The flame-feathered serpent emanated rejection of all \"Mannish impurity in all the known worlds\", the dark serpent though surrounded by chaos emanated gentleness and love for the spirits of the worlds, and in it Boethra saw a fleeting chance for peace along the wheels. As the feathered serpent's beak found purchase beneath the scales of the white maned serpent Boethra, dodging through the wheels to reach, summoned all her blades and struck at it's eye, repelling it. Landing on the head of the dark serpent she drew upon it's black flames, forming a blade and armor as her mind was scorched with things that were and have yet to be. She named the hawk-serpent for what it was and, reciting the Will Against Rule, dashed forward, cutting concepts at strange angles and ending the Dragon Break. This event would later come to be known as the Division of Heaven by mortals who remembered the Middle-Dawn.\n\nRedguard:\nYokudans see Padomay and Anu as a single being known as 'Satakal', a giant serpent on the glimmer of whose scales all worlds rest, constantly eating its own tail in an endless cycle. To avoid being eaten by Satakal, Spirits learned to evade consumption by \"moving at strange angles to \"stride between the Worldskins\" a process that became known as 'the Walkabout', and through repetition gave rise to a sanctuary from the cycle known as the Far Shores. The Second Serpent, Sep, claimed to have an idea for a way to avoid Satakal and the need for the Walkabout by creating a new world. Once again, this creation traps the other spirits within and they begin to die, unable to leave the new world, as it is too far separated from the real world of Satakal for them to survive in or jump to the Far Shores from. \n\nArgonian:\nThough Argonian society as a whole doesn't have an established singular creation story, the Adzi-Kostleel tribe claims that two beings, Atak and Kota, fought until they joined together as a singular being known as Atakota. When they did this, they shed their skin and created a Shadow. This Shadow, though initially intending to devour everything, soon came to see the creations of Atakota as its own children, and instead gave them the gift of change, which would later come to be known as Death.\n\nBreton:\nA simplified and secular interpretation of The Monomyth can be found within the Bretonic tale The Light and the Dark. In it, two immortal entities representing Chaos and Order chose Tamriel to be their eternal battleground. This everlasting battle would create energies so powerful it distorted the world and created both the \"people of et'Ada\", who would in turn give who would in turn give rise to the gods, by believing in their myths for so long and so strongly, it caused the energies unleashed by the conflict of the Light and the Dark to bring them into being. According to the grandfather, all of creation exists to echo the battle between the Dark and the Light.\n\nDunmer:\nThe Dunmer god Vivec teaches that Anu and Padomay were responsible for the creation of the universe, the Aurbis. From here, Vivec teaches that Anu and Padomay gave birth to their souls Anuiel and Sithis and from there, to their firstborns, the deities Akatosh and Lorkhan respectively. According to Vivec, Stasis and Change, Anu and Padomay, are infinite forces and realms residing in the infinite Void, the latter infinity paradoxically enclosing the others in a manner akin to an encircling sphere. At the intersection of the two forces, where they touch, lies a \"perfect circle of pattern and possibility\", the Wheel, and inside that Wheel lies the Aurbis which is its foundation. Vivec claims that outside the Wheel exists the Void, which cannot truly be named and is bereft of anything. The Void is said to have more aspects than just Stasis and Change, but they cannot be named as they are outside of true language. Vivec claims Anu and Padomay \"awakened\" during the process of sub-creation caused by their intersection as \"to see your antithesis is to finally awaken\". It is said that in reaction to this \"each gave birth to their souls\", Auri-El and Sithis. Each of these souls regarded the Aurbis in their own part, and from that came the et'Ada, the \"original patterns. Some sources claim that, rather than being a single wheel, the Aurbis, the intersection of Anu and Padomay, is instead more akin to \"a telescope that stretches all the way back to the eye of Anui-El, with Padomaics innumerable along its infinite walls\". Vivec cites mythology of Anu and Padomay to support his interpretation of the concept of love.\n\nThe Clockwork Apostles of Sotha Sil claim that Padomay and the padomaic Daedra are illusions who only have influence due to a flawed design of Nirn, the result of the Void taking root within the cracks of the Aedra's work.\n\nSkaal:\nThe Skaal believe in a single deity, the All-Maker, though they also recognize the Adversary, a malevolent and multifaceted tester who works to corrupt the All-Maker's dominion. The perpetual struggle between the two bears some resemblance to the one between Anu and Padomay. Similar to Dunmeri interpretations of Padomay and Sithis, the Skaal seemingly view their benevolent primordial force as Padomay, as opposed to Anu.", + "display_name": "padomay", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shezarr (Shezzar), the God of Man, is the Cyrodilic iteration of Lorkhan whose prominence waned as Akatosh rose in Nibenay religion. Seen as the spirit behind human endeavor—especially against Aldmeri aggression—he’s sometimes credited with founding the first Cyrodilic battlemages; today, he’s largely forgotten, though a cult in the Imperial City still venerates him. Central to “Shezarr’s Song,” he convinces the gods to become mothers and fathers, sacrificing parts of themselves to birth the world. The Aedra consented and were diminished; the Daedra mocked them and made self-contained realms, later envying and stealing from the Aedra. Some Aldmeri gods, led by Auri-El, grew bitter and sought vengeance on Shezarr for their “disgusting” reduction, while the gods of men and beast-folk, led by Akatosh, accepted the loss and rejoiced in creation.\r\n\r\nCalled the “Missing Sibling” of the Eight Divines, Shezarr appears in early Cyro-Nordic tales fighting the Ayleids for mankind before vanishing—after which the Ayleids conquered humans and enslaved them. Saint Alessia equated “freedom” with Shezarr; the Marukhati Selective hailed him as Akatosh’s “missing sibling,” “Singularly Misplaced and therefore Doubly Venerated.” Pelinal Whitestrake is speculated to be a Shezarrine, though The Song of Pelinal notes a claimant was “smothered by moths.” To placate allies, Alessia adopted Nordic Shor into the Imperial pantheon as Shezarr, the Missing God—apt to honor him while emphasizing his absence. In Nedic traditions he is a teacher and unifier who inspires others to fight: the Duraki say he stole stoneworking from the Dwemer and taught Zinfara to call nirncrux; the Perena tell of a white-bearded stranger teaching soul magic; Cyrodic Nedes speak of “Shezarr of the Snowy Beard” revealing Ayleid battle-magic; a Sedor tablet names a bearded “Shezzarine, Shor-Who-Lives, Teacher of Men.” Though later sagas omit him, it’s thought his role ended mid-Merethic Era; even so, the hope he seeded sustained Men through centuries of enslavement by the Ayleid Empire.", + "display_name": "shezarr", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The cosmic order deity/philosophy of the Khajiiti, the Riddle'Thar was revealed to Elsweyr by the prophet Rid-Thar-ri'Datta, the Mane. The Riddle'Thar is more a set of guidelines by which to live than a single entity, but some of his avatars like to appear as humble messengers of the gods. Also known as the Sugar God. Those who reached the highest levels of the way of Riddle'Thar are nearly unbeatable in weaponless combat. The Riddle'Thar promised a paradise to the Khajiit known as Llesw'er. \nAn attempt to explain Riddle'Thar, and what it means to be a \"True Cat\", can be found in the text *Secrets of the Riddle'Thar* ellegedly an excerpt from the texts Rid-Thar-ri'Datta wrote.", + "display_name": "riddle'thar", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Khenarthi, God of Winds, the Gatherer of Waters, and the Elder Spirit of the Heavens, is the Khajiiti goddess of weather and the sky, the most powerful of the Sky Spirits, and is the Khajiiti interpretation of Kynareth. When a Khajiit dies, it is Khenarthi who guides their soul either to Azurah for judgment, or to Llesw'er, the Sands Behind the Stars. And it is her clarion call that will summon the \"eternal united spirit of all Khajiit\" to defend creation at the end of time. She is typically represented as a great hawk, or as a winged cat, a \"Sphinx\".\n\nHistory:\nSometime in the Dawn Era, Khenarthi was born alongside Alkosh, Magrus, Mara, and S'rendarr, as part of the First Litter of Ahnurr and Fadomai. After the creation of the Second Litter, Khenarthi convinced her mother Fadomai to have more children, as she was lonely in her domain high in the heavens. Despite Ahnurr not wanting more children, Fadomai tricked him and gave birth to the Third Litter, consisting of Nirni, Azurah, and Lorkhaj.\n\nAfter giving birth to Lorkhaj in the Great Darkness, Fadomai succumbed to the wounds Ahnurr inflicted on her for her disobedience. Before her death, Fadomai entrusted Azurah with several secrets that involved laying the groundwork for the transformation of Nirni's children into her secret defenders; the Khajiit. Azurah shared one of these secrets with Khenarthi, making her a psychopomp that would accompany the spirits of deceased Khajiit to the afterlife of Llesw'er, the Sands Behind the Stars. From Llesw'er, these spirits await until the Next Pounce, for Khenarthi will call upon their combined might to fight for creation at the end of time. Namiira is the antithesis to Khenarthi, who drags the victims of the Bent Dance into the Dark Behind the World, where they become part of her dark litter. Those of this litter occasionally slip through the cracks in Nirni to tempt true cats, so their souls can too be sent to the Dark to serve Namiira as dro-m'Athra. To combat Namiira's dark litter and save Khajiiti souls from corruption, from Azurah's tongue came the Dusk-Canticles, holy hymns used to exorcise dro-m'Athra. And so explains the fight for the souls of Khajiit.\n\nThe pre-ri'Datta beliefs state that after the Many Paths of Time were created by Akha, Alkosh inherited the role, and is aided by Khenarthi who ensures that the tapestry of time is mended. It was her who put Alkosh back together, and now they both \"safeguard the Many Paths from the Dragons, the \"wayward children of Akha\" from his unions with the Winged Serpent of the East, the Dune Queen of the West, and the Mother Mammoth of the North.\n\nIn older traditions, Nirni chose Y'ffer over Hircine as her mate after Y'ffer created the first flower for her and fathered many of her children. Heartbroken, Hircine slew the Graht-Elk, champion of Y'ffer, and took to wearing its head as a trophy. Eventually Y'ffer became corrupted by Namiira, who then struck and killed Nirni. Khenarthi sided with Hicine. Together with him and Azurah they slew Y'ffer and made a cairn out of his bones for their beloved sister.\n\nKhenarthi's Roost is named after her; according to legend, Khenarthi rested upon a tree on the island during her first journey across the heavens. This tree would later become the Great Tree, found along the coast west of Mistral. Many of the island's Khajiit therefore worship Khenarthi.\n\nKhajiiti clan mothers often drink from opal-studded cups bearing the likeness of Khenarthi.", + "display_name": "khenarthi", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Akha is a Khajiiti deity mentioned in some Pre-ri'Datta traditions, who was also known as the First Cat, the Pathfinder, and the One Unmourned. Early in his existence, Akha explored the heavens and his trails became the Many Paths, forming myriad kingdoms. As he was also the favored son of Ahnurr, he followed his father's advice to find love and mated across the corners of the world with beings from distant lands, including the Winged Serpent of the East, the Dune Queen of the West, and the Mother Mammoth of the North, resulting in numerous wayward dragon children. However, he vanished after heading south and was never seen again.\n\nIn the place of Akha, Alkosh appeared, and warned of the things Akha had made along the Many Paths. Taking over the role and crown of the First Cat, he inherited rulership over the myriad kingdoms of Akha along the Many Paths. Alkosh also ruled the children of Akha, but he was soon overthrown and his body scattered on the West Wind. It is said that Khenarthi then flew across the Paths and put Alkosh back together, and now they both guard the Many Paths from the \"wayward children of Akha\".\n\nAmong the offspring of Akha, Alkhan is the most well-known. He is described as the immortal firstborn son of Akha and a demon of fire and shadow, that is eternally hungry to claim his crown.\n\nIn another text relating to Boethra's role during the Middle Dawn, Ahka is mentioned as the being who exiled her to the Many Paths rather than Ahnurr. However, due to the Marukhati Selective's actions, reality was described as being rewritten; \" yet these new words said that Akha was never there, nor was Alkosh, nor Alkhan, nor any Children of Akha, nor any of the lands that he seeded and brought unto his kingdom. And in this chaos Boethra began to wonder if she was the Daughter of Blades at all, or if it had all been one long dream of someone she never knew.\" The story then goes to say Boethra draws her Hidden Sword and fights against the Dragon Break.\n\nIn writings after the Rid-Thar-ri'Datta religous reforms were established, Akha is no longer mentioned, along with Alkhan and his other children. This is in contrast to Alkosh, who is still considered part of the pantheon, and has been given the title and role as the First Cat.", + "display_name": "akha", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alkhan, also referred to as The Scaled Prince, and Firstborn of Akha, is a Khajiiti god and one of the \"Wandering Spirits\" of the pantheon.\r\n\r\nAlkhan is the first entity to have originated from Akha, the father of all dragons and predecessor of Alkosh. Alkhan possesses the ability to devour the souls of those he has killed, and by doing so he can grow to an immense size. Alkhan is the enemy of Alkosh, Khenarthi, and Lorkhaj, with the latter and his companions being the ones who slew Alkhan. However, as an immortal son of Akha, Alkhan can not be killed permanently, and he will always return from the \"Many Paths\" in time.\r\n\r\nNature and identity:\r\nAlkhan is the Khajiiti equivalent of Alduin; the Nordic god of time, who is also referred to as \"First Dragon\". Like Alkhan, Alduin possesses the ability to increase his power by devouring the souls of mortals.", + "display_name": "alkhan", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Boethra, the Warrior of the East and West, is a sharp-tongued Khajiiti deity, an ancestor spirit and a teacher of the old ways, and the patron of warriors and rebellious exiles. It is unknown if she remained in the Khajiiti Pantheon after the Riddle'Thar cult scrubbed and reformed many aspects of Khajiiti religion, but she is not mentioned in the Words of Clan Mother Ahnissi. Much of what is known about her comes from myths that predate the Riddle'Thar Epiphany. Ancient Khajiit did not see it necessary to pray to Boethra, honoring her instead by \"walking the Path, and only hiding in order to pounce\". Additionally, they would not speak her name on nights of the Ghost Moon, nights in which it is said Boethra wears the death-shroud of Lorkhaj and \"wages war beyond the Lattice\". She is the mate of Mafala.\r\n\r\nAhnurr once exiled Boethra due to her rebellious nature. During this time, Boethra walked the Many Paths, eventually returning. It is said Mafala did not forget her love for Boethra during her time away. The ancient songs tell that the demon Orkha followed her back from the Many Paths, before being banished by the combined might of Boethra, Lorkhaj, and Khenarthi. For this reason, she is known as Orkha-Bane.\r\n\r\nBoethra fought the Demon King Molagh to a draw when he attacked the Lattice along with Dagon and Merid-Nunda. Boethra's actions allowed Azurah to shackle Molagh. She also fought Noctra until \"it knew it was not Namiira\". Fighting alongside Lorkhaj, it was Boethra who pried out the first of Magrus' eyes.\r\n\r\nThe songs also sing of an unnamed spirit of vengeance with no will of its own, born of Azurah's grief after the deaths of Fadomai and Lorkhaj. This spirit may appear in songs as a black panther, a warrior in ebony armor, or as a hidden sword. It is said only Azurah, Boethra, and Mafala can summon this spirit, as only they know its true name.\r\n\r\nEarly shrines to Boethra depict her wielding a Khajiiti styled katana alongside an unknown figure resembling a lynx. She appears distinct from any known furstock, though displays some similarity to an Ohmes-raht Khajiit.\r\n\r\nThe Bladesongs of Boethra, a pre-Ri'Datta text of the Boethra cult among the Khajiit, prominently features Boethra. This account claims that Boethra fought alongside Azurah in defending the Lattice. Myth suggests that the battle happened many times. This text says that Akha exiled her to the Many Paths. However, new writings after Rid-Thar-ri'Datta's reforms do not mention Akha, along with Alkosh, Alkhan, and all the Children of Akha in that context. Amidst this confusion, Boethra questioned her identity as the Daughter of Blades, wondering if it had all been a long dream of someone she never knew.", + "display_name": "boethra", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hermorah is the Khajiiti interpretation of the Daedric Prince Hermaeus Mora. He was among the second litter of Ahnurr and Fadomai. Fadomai gave him the tides, \"for who can say whether the moons predict the tides or the tides predict the moons?\"\r\n\r\nHermorah supposedly records everything he perceives and stores it in a great library under the sea. Azurah is a frequent visitor to this library, and he shares all of his secrets with her. For example, he shared with her the knowledge of how to maintain the moons and their motions after Khenarthi proved unable to do so.\r\n\r\nKhajiit seeking to enter his library must often face Sheggorath as an obstacle. Hermorah should not be called unless one wishes to be tested along the path, as it is best to leave him at his duty.", + "display_name": "hermorah", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ius, God of Animals, also known as Ius the Agitated and Ius the Extremely Agitated, is a deity worshiped in Valenwood, Hammerfell, and Elsweyr. He is represented throughout these three lands as a misshapen humanoid carrying a rod, which is said to have its origin in the tale of The Ox and the Evil Farmer. He is also depicted with a set of scales.\r\n\r\nThe Ox and the Evil Farmer\r\nThe tale behind the rod he carries has its origin states that one day an evil farmer decided to kill all of his animals and have a big party. As The story unfolds, animal after animal is killed and prepared for a big meal. Lastly the farmer comes to the ox and prepares to slit its throat. The ox, not wishing to be anybody's dinner, prayed very vocally (in the form of a moo) to Ius. Then, Ius appeared carrying a rather large set of balance weights and, without explanation, ate the farmer and vanished. Ever since that day, Ius has always been portrayed as carrying a large set of scales with him. Local Ius worshipers are said to neither know nor care about the scales' reason.\r\n\r\nSecond Myth\r\nOf validity unknown, this myth states that, before the age of Pelagius Septim III, there lived a wombat who was the pet of Lady Greelina (daughter of the Lord Prufrock of Rockcreek). Greelina and her wombat loved one another, but it was a time of great sorrow in Rockcreek. A pestilence had come through the town, destroying all their cash crops (which consisted of raspberries and \"odd weeds\"). The plague had come, inflicting nearly every cobbler with chronic \"hiccoughs\"; finally a witch had cursed the townspeople so the only words any could utter were \"Hmmm. Precisely.\" All the businesses, stores, and guilds fled from the town.\r\n\r\nLady Greelina saw her father despairing the loss the town was suffering, so she brought her wombat in and told him, \"Father, my wombat can save us all, for it is sacred to the god Ius, God of Animals. The only reason I didn't tell you earlier is because I am an early adolescent going through that period when I don't like to communicate. But please, ask a wish of my wombat, and Ius will fulfill it, for my wombat loves me.\" The king thought this was fairly flakey, but had nothing to lose, so he uttered a modest wish to the wombat: \"All I want is for one business to come to Rockcreek that will never leave no matter the calamity.\"\r\n\r\nDue to years of abuse in the hands of the king (who used to lick it and try to make it stick to walls), the wombat had Ius create an equipment store in front of the palace gate that would never go away. The royal family ended up going mad and eating one another (and ironically, the wombat was one of the first to go). It is said that, to this day, an equipment store still blocks the palace gate in Rockcreek.", + "display_name": "lus", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ja-Kha'jay is a god in the Khajiiti pantheon. He is also known as the Lunar Lattice. His motions supposedly protect Nirni from Ahnurr's anger, as he cannot cross the lattice. Some sources state that Nirni dances along with the Ja-Kha'jay, as evidenced by the tide's ebb and flow moving in accordance with the moons. \r\n\r\nOne aspect of him is Jode (Big Moon God). Jode is also known as Masser or Mara's Tear. Another aspect is Jone (Little Moon God): Aldmeri god of the Little Moon. Jone is also called Secunda or Stendarr's Sorrow. The phases and positions of Ja-Kha'jay's two aspects determine what type of Furstock(shape) a Khajiit will take when they are born.", + "display_name": "ja-kha'jay", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mafala, also known as Teaching Mother, or the Elder Spirit is the ancient Khajiit goddess of lies, secrets and sex, and is closely associated with the Daedric Prince Mephala. Ancient sermons claim that she served as the recorder of hidden guilt and eternal shame. She was considered an ancestor spirit and a teacher of the old ways; however, her worship fell out of favor after the event known as the \"Sinner Suicides\". Mafala, along with Azurah and Boethra, are said to be the only ones capable of summoning an obscure spirit of vengeance, as only they know its true name. The spirit appears as a black panther, a warrior in ebony armor, or a hidden sword. Mafala is purportedly one of the \"strongest of the recognizable spirits\" that emerged soon after Alkosh formed and time began. Malfala's enemies include Reymon Ebonarm and Peryite. The ancient Khajiit considered her an ally to Azurah, Boethra, and Lorkhaj, they also believed that she was Boethra's lover. Her summoning day coincides with the Witches Festival, which falls on the 13th of Frostfall.\n\nRajhin stole the Ring of Khajiiti from Mafala prior to his ascension to godhood. During this period in Elsweyr's history, there was no such thing as a Mane. The moons were new on the night of the crime, thus shined no light upon Nirn. The darkness gave Rajhin access to Oblivion, where he found Mafala, Azurah, and a third Daedric Prince arguing over who claimed dominion over the night. Rajhin listened to their argument for a while before revealing his presence. He offered to settle their debate, as there is no one more familiar with the night than a thief. At first, Mafala regarded Rajhin with malice, and sought to eat him. However, Azurah stopped her. Each Prince told Rajhin why they deserved to be chosen, and the thief caught sight of the Ring of Khajiiti on Mafala's eighth arm. He seduced Mafala by appealing to her vanity, and stole the ring off her arm while they made love. He spotted the Ebony Blade as he was leaving, and made off with both artifacts. Rajhin used the Ring of Khajiiti's powers to make himself as invisible, silent, and quick as a breath of wind. Using the Ring, he became the most successful burglar in the history of Elsweyr, eventually being elevated to the Thief God of the Khajiit.", + "display_name": "mafala", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Reymon Ebonarm (also called Ebonarm or the Black Knight) is the God of War and the companion and protector of all warriors. He is said to ride a golden stallion named War Master, and is accompanied by a pair of huge ravens. Ebonarm's name refers to the Ebony sword fused to his right arm due to the wounds he suffered in titanic battles of the past, and he is never seen without a full suit of ebony armor. He is described as bearded, tall, muscular, and having flowing reddish blonde hair and steel blue eyes. Emblazoned on his ebony tower shield is the symbol of a red rose, a flower known for blooming on battlefields where he appears. According to legend, he appears on the battlefield to reconcile opposing sides and prevent bloodshed.\r\n\r\nIn the tale of King Edward, Ebonarm was the one who gave the mortal Sai the gift of immortality when he died in battle in return for taking on the role of the God of Luck. Sai did Ebonarm's bidding for many years, but when he fell in love with a woman named Josea, he became lax in his duty. A host of gods visited him, Ebonarm taking the form of a black knight, and demanded he leave his family. Ebonarm demanded he fix the problems he had caused by staying in one area for too long, which took Sai one hundred and fifty years to do.\r\n\r\nHe is an enemy of all of the traditional Daedric Princes except Sheogorath, as well as the Temple of Stendarr and the Cabal, a sub faction of the Mages Guild. He is allied with none, although he does lead the Citadel of Ebonarm, consisting of mosques and a knightly order known as the Battlelords. Holy anvils dedicated to Ebonarm can be found throughout the Iliac Bay region, and most Fighters Guild guildhalls in the Alik'r Desert serve as mosques dedicated to him. Dunmer often swear upon the \"soul of the Black Knight.\"\r\n\r\nThere is a large, bare field in Hammerfell where Ebonarm appeared before a great battle. He used his divine power to make both warring leaders end their fight and return home. It is said in the nearby village of Granitsta that the only piece of foliage on the field, a rose bush, was where he stood that day.\r\n\r\nThe Khajiit acknowledge an unnamed dark spirit, born from Azurah's grief after the death of Fadomai and Lorkhaj, that sometimes appears in songs as a black panther, a warrior in ebony armor, or a hidden sword.", + "display_name": "reymon_ebonarm", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Some ancient Khajiit tribes knew him as Molagh, one of the twelve Demon Kings and the Elder Spirit of Domination and Supreme Law. In some forms of Khajiiti mythos, Molagh has a wife who freed Merrunz to weaponize his destructive nature. Molagh was the first to attempt an assault on the Lunar Lattice with intent alongside Merrunz and Merid-Nunda. Boethra fought him to a standstill before the Lattice, and Azurah brought him down. A pre-ri'Datta text known as The Bladesongs of Boethra describe the battle at the Lattice in greater detail, alleging that Molagh taunted Boethra with the severed head of Lorkhaj to lure her away from guarding the Lunar Lattice, allowing Dagon and Merid-Nunda to break through the moonlight barrier. Amun-dro's writings say that he is to be faced along the Path and overcome by the Will Against Rule, a concept associated with Boethra. Molag Bal is among those the Epistles of Amun-dro refer to as the Adversarial Spirits.", + "display_name": "molagh", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nir is the source of Creation as mentioned in the Anuad creation myth. Anthropomorphized as feminine, she is said to have formed through the interaction of the primal forces of Stasis and Change, who are represented by Anu and Padomay respectively. Given this, Nir is understood to be a personification of the Possibility and Patterns of Aurbis itself. In this story, while both are said to have fallen in love with Nir, she chose Anu over Padomay and became pregnant. When Nir rejected Padomay's confession of love he became enraged and attacked her. Afterwards, she gave birth to Creation but soon died from her injuries.\r\n\r\nThis can be compared and contrasted with Fadomai in the Khajiiti creation myth who shares an equivalent place within their respective mythologies. According to Varieties of Faith in Tamriel, the goddess Mara is sometimes associated with Nir. Londa-Vera, Magnus' daughter, was said to embody the beauty of Nir.", + "display_name": "nir", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The “Vestige” is the title assigned to the soulless mortal who rose during the Planemeld of the Second Era. Because their soul was stolen by Molag Bal and then restored through the power of the Amulet of Kings, their life became a nexus of mythic forces: bound to Coldharbour, anchored by Meridia’s intervention, and spiritually resonant with the Dragonfires. Several Psijic commentators classify the Vestige as a “mythic echo,” a soul-stain that could manifest across multiple concurrent narratives without violating the flow of time—an effect similar to, but weaker than, a Dragon Break.\n\nThrough Records of the Abbey of Blades, the Psijic Order, and the surviving Moth Priest transcriptions of the Elder Scrolls, a single consistent theme emerges: the Vestige existed, but their deeds appear multiplied in mythic retellings. They are attributed with assisting every alliance, slaying multiple Daedric Princes’ lieutenants, purifying the Soul Shriven, reassembling the Amulet of Kings, and ending the Planemeld itself.", + "display_name": "vestige", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Azra Nightwielder is the first recorded shadowmage and the originator of Shadow Magic as a formal discipline. Active during the late First Era and early Second Era, Azra discovered that shadows are not mere darkness but the projections of alternate possibilities—echoes from other potential worlds shaped by conflict. His early experiments attempted to merge or communicate with these divergent selves, a practice that nearly destroyed him. These experiments drew the attention of multiple factions, including the Septim Empire’s predecessors, the Remanate remnants, and Daedric agents interested in the implications of multiversal manipulation.\r\n\r\nAzra’s mastery of shadow manipulation enabled feats later considered impossible: forging shadow-constructs, stepping between shadow-realms, and linking minds via “umbric connections.” His work was violently interrupted when he became trapped within ice during one of his experiments, only later freed by the Soul of Conflict and a Shadowkey. The surviving fragments of Azra’s research—scattered through Skyrim, Hammerfell, and High Rock—remain foundational to modern shadow studies. Psijic scholars regard him as one of the few mortals to touch the edges of possibility-space without fully unmaking himself.", + "display_name": "azra_nightwielder", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "n Khajiiti tradition, Khunzar-ri—also called the Laughing Lion, the Luminous Lion of Elsweyr, and the Imprisoner of Dragons—is a mytho-historical hero said to have lived during the Merethic Era. Khunzar-ri He is most famous for opposing the dragons of Elsweyr, whom Khajiiti myth refers to as “demons,” led by the great dragon Kaalgrontiid. Rather than defeating them through direct combat, Khunzar-ri gathered a company of champions—a Kra’Jun—and used deception and cunning to imprison the dragons within the Halls of Colossus, ending what would later be remembered as A Rage of Dragons.\r\n\r\nKhunzar-ri’s nature is deliberately ambiguous in Khajiiti lore. Some accounts describe him as a mortal hero of the Pahmar-raht furstock, while others claim divine or supernatural origins, such as being formed from moonlight by Jone and Jode or elevated to a godlike status after death. His many tales—ranging from heroic battles to humorous exploits—emphasize wit, charm, and adaptability, presenting him as a cultural ideal of Khajiiti cleverness. Long after his passing, Khunzar-ri remains a figure of reverence and storytelling, his deeds preserved by Moon-Singers as both history and allegory, embodying the Khajiiti belief that cunning and unity can overcome even the greatest of threats.", + "display_name": "khunzar-ri", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Akatosh, the Dragon God of Time, is a powerful and honored deity in Tamriel, often seen as a golden dragon. He represents endurance, order, and the steady flow of time. Worshiped across the land, Akatosh is said to be the father of all dragons and played a key role in protecting the Empire through a divine bond with its first ruler, Alessia. His influence is felt in great events like the Oblivion Crisis, where his avatar defeated a Daedric prince to save the world. To many, he symbolizes stability, time’s guardianship, and the Empire’s divine right to rule.", + "display_name": "akatosh", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dibella, the Lady of Love, is the Goddess of Beauty, Love, and Art, inspiring mortals to find truth through beauty and cultivate love, friendship, and creativity. Her followers believe devotion to her brings charm and harmony, while she teaches the value of deep, pure relationships over fleeting ones. Worship of Dibella is common across Tamriel. Dibella is also tied to art and creation, with legends of artifacts like the Brush of Truepaint that bring artworks to life.", + "display_name": "dibella", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kynareth, the Goddess of the Heavens and Winds, is a beloved Divine who watches over nature, travelers, and sailors. She controls the winds, rain, and the elements, and is said to have helped create the world by supporting Lorkhan’s plans. In Nordic legends, Kyne, as she is called, is the Sky goddess who gave the gift of the thu'um, the dragon’s voice, to mortals. Her shrines are often found in nature, with her temple in Whiterun tending the sacred Gildergreen tree. Known by many names across Tamriel, Kynareth is seen as a life-giver and protector, guiding souls and blessing her faithful.", + "display_name": "kynareth", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mara, the Mother-Goddess, is the Divine of Love, Fertility, and Compassion, celebrated as a protector of family, marriage, and harmony. She blesses agriculture, nurtures families, and is often called upon during weddings to sanctify unions. Her teachings promote love, unity, and peace within communities. Her shrines, like the one in Riften, serve as places for blessings and marriage ceremonies, with her symbol, the Amulet of Mara, representing love and human connection.", + "display_name": "mara", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stendarr, the Divine of Mercy and Justice, is a compassionate god who protects the weak and punishes the wicked. He teaches kindness, charity, and the defense of the vulnerable, making him a patron of knights, rulers, and healers. Worshiped widely across Tamriel, his followers, like the Vigil of Stendarr, fight against abominations like daedra and vampires. Stendarr’s blessings include healing and protective magic, and his temples provide aid to those in need.", + "display_name": "stendarr", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Arkay, the Divine of birth, death, and the seasons, governs the natural cycle of life and death. Known as the Lord of the Wheel of Life, he is revered for his role in funerals, burial rites, and preventing necromancy through Arkay's Law, which protects the dead from being raised as undead. Worship of Arkay is widespread, with cultures like the Bretons believing he was once mortal, the Nords replacing Orkey with him, and the Redguards viewing him as a soul guide. Temples dedicated to Arkay, such as the Great Chapel in Cyrodiil, uphold his teachings, perform sacred rites, and house relics like the Sword of the Crusader, while his followers fiercely oppose necromancy and safeguard the passage of souls.", + "display_name": "arkay", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Zenithar, the God of Work and Commerce, is a Divine associated with labor, trade, and honest enterprise. He represents virtues like hard work, integrity, and prosperity achieved through peaceful means. Symbolized by a blacksmith’s anvil, Zenithar is worshipped across Tamriel, especially in regions with strong mercantile traditions like Leyawiin and Kambria. His temples, known as Resolutions, promote honest labor and success, while prayer beads and artifacts like the Mace of the Crusader and the Golden Anvil symbolize his blessings. Zenithar's influence spans various cultures, connecting to deities like the Bosmeri Z'en, embodying his role as the provider of reward through diligence.", + "display_name": "zenithar", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Julianos, the God of Wisdom and Logic, is a Divine revered for his association with knowledge, law, history, and intellectual pursuits. Known as a patron of scholars, wizards, and legal minds, he emphasizes learning, logic, and the pursuit of truth. His symbol, a triangle, represents the structure of his teachings, while his temples, such as the Schools of Julianos, serve as centers of education and preservation of knowledge, including the Elder Scrolls. Originally worshipped by the Nords as Jhunal, he became part of the Divines as Julianos, a protector of justice and wisdom. Artifacts like the Shield of the Crusader further symbolize his role, and his celestial presence as JHUNAL marks the eye of the Mage constellation in Mundus.", + "display_name": "julianos", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lorkhan, the Missing God, is a complex figure in Tamrielic myth, known as the Creator, Trickster, and Tester of mortals. He is credited with initiating the creation of Nirn by convincing the et'Ada to shape the mortal realm, disrupting the cosmic order. His divine essence was removed after Nirn's creation, an act seen as either punishment or a willing sacrifice. Perceptions of Lorkhan vary widely: Elves view him as a deceiver who trapped them in mortality, while humans, such as Nords and Imperials, honor him as a heroic figure, with the Nords worshipping him as Shor. Redguards, Khajiit, and Reachmen each interpret him through their own cultural lenses, associating him with sacrifice, trickery, and cosmic struggle. Lorkhan symbolizes both the hardships and the potential of the mortal world he helped create.", + "display_name": "lorkhan", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Trinimac, the Warrior and Paragon, was a revered god among the early Aldmer, known for his strength, honor, and leadership as the champion of Auri-El. He played a key role in opposing Lorkhan and was worshipped by the Altmer, Ayleids, and early Orcs. His transformation into Malacath, a Daedric Prince, is central to his legend. Boethiah consumed Trinimac to spread new teachings, resulting in his followers becoming the Orsimer (Orcs) and Trinimac being reborn as Malacath. Despite this, some Orcs later revived Trinimac’s worship, viewing him as a symbol of unity and civilization. His story highlights the cultural divergence between the Chimer and Orsimer and remains central to Orcish identity.", + "display_name": "trinimac", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Talos, also known as Tiber Septim, was the first Emperor of a unified Tamriel and later ascended to godhood, becoming the ninth Divine. Born in Atmora and originally named Talos, meaning \"Stormcrown,\" he founded the Third Empire through military conquest, including subjugating the Aldmeri Dominion, earning him veneration as the \"Hero-God of Mankind.\" Revered for his strength, courage, and leadership, Talos symbolizes unity and the virtues of warriors and rulers. However, his divine status is contested, particularly by the Altmer, and worship of Talos was banned in the Fourth Era under the White-Gold Concordat, sparking the Skyrim Civil War. Despite opposition, Talos remains a powerful symbol of human resilience and faith, especially among the Nords.", + "display_name": "talos", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Azura, the Queen of Dawn and Dusk, is a revered Daedric Prince associated with twilight, fate, prophecy, mystery, and magic. Especially venerated by the Dunmer and Khajiit, Azura is considered more benevolent than other Daedric Princes, caring deeply for her mortal followers and seeking their love and emotional connection. Her teachings emphasize devotion and self-love, with followers, known as Azurites, believing she shares their pain in times of self-loathing. Often depicted as a female symbolizing beauty and transition, Azura’s realm, Moonshadow, is a breathtakingly beautiful place said to overwhelm mortals with its splendor.", + "display_name": "azura", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Boethiah, the Prince of Plots, is a fearsome Daedric Prince associated with deceit, treachery, conspiracy, and the overthrow of authority. Known for inspiring mortals through acts of cruelty and violence, Boethiah views destruction and death as tools for transformation and change. A shapeshifter, Boethiah appears as male or female, adapting forms as suits her purposes. Her realm, Attribution’s Share, is a chaotic landscape of betrayal and endless challenges, reflecting her focus on strength, cunning, and treachery. Often testing mortals in deadly contests, Boethiah fosters a ruthless culture where survival and dominance are seen as blessings of her favor.", + "display_name": "boethiah", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Clavicus Vile, the Daedric Prince of Trickery and Bargains, is known for making pacts with mortals, granting their desires in ways that often lead to unintended consequences. Accompanied by Barbas, a shapeshifting Daedra who may be an extension of himself, Clavicus resides in the Fields of Regret, a deceptive yet tranquil realm. His deals are sophisticated and calculating, sometimes benefiting mortals but always serving his own interests. Notable artifacts tied to him include the Masque of Clavicus Vile, which enhances charm, and the Umbra Sword, a soul-trapping blade with sentient power. Clavicus Vile is seen as a neutral figure among the Daedric Princes, offering rewards that often come with hidden costs.", + "display_name": "calvicus_vile", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hermaeus Mora, the Daedric Prince of Forbidden Knowledge, is a powerful entity dedicated to collecting and safeguarding all knowledge, fate, and hidden truths. Known as the Demon of Knowledge or Gardener of Men, Mora entices mortals with the promise of forbidden knowledge, often at the cost of their sanity or identity. His realm, Apocrypha, is an endless library of black books containing hidden secrets, guarded by grotesque servants like Seekers and Lurkers. Mortals who navigate this perilous realm may gain great insight if they survive. Mora's notable artifact, the Oghma Infinium, holds immense knowledge. While subtle and calculating, Hermaeus Mora is a dangerous manipulator who uses knowledge to serve his own enigmatic purposes.", + "display_name": "hermaeus_mora", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hircine, the Huntsman and Lord of the Hunt, is the Daedric Prince of the hunt, beasts, and the thrill of the chase. Known as the Father of Manbeasts, he is the progenitor of lycanthropy, claiming the souls of lycanthropes as his \"children\" to join him in his realm, the Hunting Grounds. This endless forest is filled with fierce creatures and eternal hunts in a cycle of death and rebirth. Hircine is revered by those who embrace primal forces or seek power through lycanthropy, including the Reachfolk and Glenmoril Wyrd. He values fairness in the hunt and is associated with powerful artifacts like the Ring of Hircine and Savior’s Hide. His summoning day is the 5th of Mid Year, marking his enduring presence in Tamrielic lore.", + "display_name": "hircine", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Malacath, also known as Mauloch, Orkey, and the Blue God, is the Daedric Prince of betrayal, curses, and the patron of outcasts. Once the Aedra Trinimac, he was transformed into Malacath after being humiliated or devoured by Boethiah. Revered by the Orsimer (Orcs), Malacath is their patron deity and embodies their values of honor, vengeance, and strength through the Code of Mauloch, which governs Orcish strongholds. While most Orcs honor Malacath, some believe Trinimac still exists as a separate entity, creating cultural tension. Malacath remains a symbol of defiance and strength for the betrayed and spurned.", + "display_name": "malacath", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mehrunes Dagon, the Daedric Prince of Destruction, Change, Revolution, and Ambition, embodies chaos and cataclysmic transformation. Known as the Lord of Change and Prince of Disaster, he governs destructive forces like fire, floods, and earthquakes, inspiring ambition and rebellion. Dagon rules the Deadlands, a fiery Oblivion realm of lava and storms, populated by destructive Daedra such as Dremora. His followers, including the Mythic Dawn, have unleashed devastation, most notably during the Oblivion Crisis. Dagon’s infamous artifact, Mehrunes' Razor, is a dagger with the power to instantly slay foes, symbolizing his relentless and destructive influence.", + "display_name": "mehrune_dagon", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mephala, the Webspinner, is a Daedric Prince of murder, lies, deception, secrets, and intrigue. Often depicted as androgynous and referred to as the Spinner or Spider, she weaves intricate plots that manipulate mortals and lead to conflict and betrayal. Revered as one of the \"Good Daedra\" in Morrowind, Mephala is credited with shaping the Great Houses and founding the assassin group Morag Tong, with some legends linking her to the Dark Brotherhood. Her artifacts, like the Ebony Blade, empower their wielders through betrayal and violence. A master of hidden knowledge, Mephala’s influence thrives wherever secrets and strife take hold.", + "display_name": "mephala", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Meridia, the Lady of Infinite Energies, is a Daedric Prince associated with life, light, and the energies of living things. Known for her hatred of the undead and necromancy, she rewards those who combat decay and false-life. Though not malevolent, she is sometimes viewed as obsessively orderly and called the Lady of Greed. Meridia's realm, the Colored Rooms, is inhabited by her Auroran servants. Believed to have been one of the Magne-Ge before her fall, she often allies with mortals against rivals like Molag Bal. Her notable artifacts include Dawnbreaker, a sword imbued with holy light, and the Ring of Khajiiti, bestowed upon her champions.", + "display_name": "meridia", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Molag Bal, the God of Schemes and Lord of Domination, is a Daedric Prince whose sphere encompasses domination, enslavement, and the harvesting of mortal souls. Ruling from his Oblivion plane, Coldharbour—a twisted, despair-filled mirror of Nirn—he seeks to bring the mortal realm under his control. Known for his cruelty and cunning, Molag Bal thrives on suffering, using manipulation and deceit to expand his power. He is closely associated with necromancy, often raising the dead to serve his will, and remains a symbol of corruption and malevolence across Tamriel.", + "display_name": "molag_bal", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Namira, the Lady of Decay, is a Daedric Prince associated with darkness, death, rot, and rebirth. She embodies the inevitable decline of all living things and is revered as the patron of vermin, squalor, and revulsion. Worshiped by the downtrodden and outcast, her followers often live in filth, practicing rituals like cannibalism to honor her. In Khajiiti lore, she is known as Namiira, the Great Darkness, who corrupts souls and drags them into her void. Namira’s artifacts, such as the Ring of Namira, grant power through decay and consumption, reflecting her dominion over the darker aspects of existence.", + "display_name": "namira", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nocturnal, the Mistress of Shadows, is a Daedric Prince associated with night, darkness, mystery, and secrecy. Revered by thieves and those operating in the shadows, she is the patron of groups like the Nightingales, who guard the Ebonmere, a portal to her realm, Evergloam. Known for her connection to shadow magic, Nocturnal subtly manipulates mortals, offering protection and luck in exchange for loyalty. Her notable artifacts include the Skeleton Key, which unlocks anything, and the Gray Cowl of Nocturnal, which erases the wearer’s identity. Ever enigmatic, Nocturnal’s influence lies in the unseen, guiding and empowering her followers while keeping her true intentions hidden.", + "display_name": "nocturnal", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Peryite, the Taskmaster and Lord of Pestilence, is a Daedric Prince associated with disease, contamination, and the natural order. Though considered one of the weaker Princes, his plagues have the power to devastate populations, which his followers, including cults like the Scalecaller and the Afflicted, regard as divine blessings. Depicted as a green, four-legged dragon, his form is often seen as a mockery of Akatosh. Peryite's sphere focuses on maintaining balance through decay and cleansing. His most notable artifact, Spellbreaker, is a shield capable of deflecting physical and magical attacks. Peryite’s influence is tied to legendary plagues, such as the Knahaten Flu, embodying his role as a force of both destruction and natural equilibrium.", + "display_name": "peryite", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sanguine, the Daedric Prince of revelry and indulgence, embodies excess, pleasure, and wild abandon. Known as the Lord of Revelry, he encourages mortals to pursue hedonistic desires, from drunken celebrations to darker perversions. Depicted as a crimson, portly figure with a mischievous grin, Sanguine rules the Myriad Realms of Revelry, chaotic planes dedicated to endless pleasure that often trap mortals. While his carefree nature may seem less malicious, his influence leads followers to dangerous extremes. Celebrations in his honor, found across Tamriel, range from lively festivals to secretive, hedonistic cults. His notable artifact, the Sanguine Rose, summons Daedra to spread chaos, reflecting his power to seduce mortals into abandoning restraint for destructive indulgence.", + "display_name": "sanguine", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sheogorath, the Daedric Prince of Madness, chaos, and creativity, rules the Shivering Isles, a realm divided into Mania and Dementia. Known for his unpredictable and cruel sense of humor, Sheogorath often treats mortals and even other Daedric Princes as playthings. Once Jyggalag, the Daedric Prince of Order, he was cursed to embody chaos, leading to the recurring Greymarch. Revered and feared across Tamriel, especially by the Khajiit and Dunmer, Sheogorath drives mortals to madness through his pranks and chaotic influence. His notable artifacts include the Wabbajack, a staff that unpredictably transforms targets, and the Fork of Horripilation, a cursed utensil used for torment.", + "display_name": "sheogorath", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vaermina, the Daedric Prince of Nightmares, Dreams, and Dark Omens, controls dreams and nightmares, tormenting mortals with visions of fear and despair. Her realm, Quagmire, is a shifting, horrifying landscape. Vaermina feeds on the memories and fears of mortals and is known for her dark prophecies. Worshiped by cults that perform sacrifices and use dark magic, she grants followers the ability to enter a dream-state known as the Dreamstride. Vaermina’s artifact, the Skull of Corruption, creates dark duplicates of victims and feeds on their memories. Though malevolent, she is also seen as a weaver of truth in dreams, though often bringing madness.", + "display_name": "vaermina", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skald is the Jarl of Dawnstar, a strong supporter of the Stormcloak rebellion, and loyal to Ulfric Stormcloak. His unwavering stance on the Stormcloak cause has made him unpopular with many in the town, who see him as arrogant and zealous. If the Imperial Legion succeeds, Skald is likely to be replaced by Brina Merilis, who has more support among the people.", + "display_name": "skald", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Siddgeir is the Jarl of Falkreath and a supporter of the Imperial Legion. He is the nephew of the former Jarl, Dengeir of Stuhn, and his other uncle, Thadgeir, is a seasoned warrior. Siddgeir claims he removed Dengeir due to his uncle's age, though Dengeir believes Imperial influence was involved. Siddgeir is often seen as lazy and self-serving, enjoying the privileges of his title without fulfilling the responsibilities of leadership.", + "display_name": "siddgeir", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Igmund is the Jarl of Markarth, a Nord barbarian, and rules with the aid of his steward and uncle, Raerek. He supports the Imperial Legion in the ongoing civil war in Skyrim.", + "display_name": "igmund", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Idgrod Ravencrone is the elderly Jarl of Hjaalmarch, known for her mystical visions, which she believes are granted by the Eight Divines and influence her decisions. She rules alongside her husband, Aslfur, and her housecarl, Gorm. The mother of Idgrod the Younger and Joric, she is seen as a moral leader who avoids crime. While some townsfolk are skeptical of her reliance on visions, she maintains an essential position in both the spiritual and political life of Morthal.", + "display_name": "idgrod", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Laila Law-Giver is the Jarl of Riften, residing in Mistveil Keep. Although she holds the title of Jarl, her actual authority over the citizens of the Rift is often questioned.", + "display_name": "laila", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elisif the Fair is the Jarl of Solitude and the widow of High King Torygg. She aspires to become High Queen of Skyrim but believes the time is not yet right to express her ambitions. Elisif has doubts about General Tullius's leadership in the war, feeling he may not fully represent Skyrim's needs, though she sees no better alternatives.", + "display_name": "elisif", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Balgruuf the Greater is the Jarl of Whiterun and a direct descendant of King Olaf One-Eye. A skilled Nord warrior, he respects the Greybeards and made the pilgrimage to High Hrothgar in his youth. Balgruuf has a longstanding rivalry with Ulfric Stormcloak, rooted in their shared upbringing.", + "display_name": "balgruuf", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ulfric Stormcloak is the Jarl of Windhelm and the leader of the Stormcloak Rebellion, fighting against Imperial rule in Skyrim. He is a member of the Stormcloak Clan and has become a highly divisive figure, advocating for political independence and the freedom to worship Talos. Ulfric’s leadership is marked by his charisma and determination, earning both loyal supporters and strong opposition from those who favor the Empire. His actions have significantly shaped Skyrim's political landscape.", + "display_name": "ulfric_stormcloak", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Korir is the Jarl of Winterhold, residing in the Jarl's Longhouse alongside his wife, Thaena, and their son, Assur.", + "display_name": "korir", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dagoth Ur, originally Voryn Dagoth, was the immortal Lord High Councilor of House Dagoth, also known as the Sharmat, Awakened Lord of the Sixth House, and Father of the Mountain. In Tribunal lore, he is seen as the embodiment of evil and the False Dreamer. In the First Era, his discovery of the Heart of Lorkhan led to his betrayal, and he was defeated in the Battle of Red Mountain. Though largely erased from history, Dagoth Ur survived beneath Red Mountain, awakening in the late Second Era to unleash the Blight and Corprus monsters. His reign ended when the Nerevarine defeated him in the late Third Era.", + "display_name": "dagoth_ur", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Nerevarine, the reincarnation of the legendary Chimeri warlord Indoril Nerevar, arrived in Morrowind in 3E 427 as a prisoner, fulfilling a prophecy to defeat Dagoth Ur and restore the glory of Resdayn. The Nerevarine ended the Blight and earned various titles such as Nerevar Reborn and Redeemer of the False Gods. They faced formidable enemies, including gods and champions of Hircine in Solstheim. By the end of the Third Era, rumors spread of the Nerevarine's journey to Akavir, with their fate remaining a mystery.", + "display_name": "nerevarine", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Uriel Septim VII was the Emperor of the Third Empire and the Septim Dynasty, ruling from 3E 368 until his assassination in 3E 433. He married Princess Caula Voria and had four legitimate heirs: Ariella, Geldall, Enman, and Ebel. Uriel also fathered two sons outside marriage—Calaxes, who was publicly acknowledged, and Martin, who was kept secret. Martin later became the last of the Septim bloodline, playing a key role in the Oblivion Crisis.", + "display_name": "uriel_septim_seventh", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Uriel Septim VII was the Emperor of the Third Empire and the Septim Dynasty, ruling from 3E 368 until his assassination in 3E 433. He married Princess Caula Voria and had four legitimate heirs: Ariella, Geldall, Enman, and Ebel. Uriel also fathered two sons outside marriage—Calaxes, who was publicly acknowledged, and Martin, who was kept secret. Martin later became the last of the Septim bloodline, playing a key role in the Oblivion Crisis.", + "display_name": "uriel_septim_7th", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Uriel Septim VII was the Emperor of the Third Empire and the Septim Dynasty, ruling from 3E 368 until his assassination in 3E 433. He married Princess Caula Voria and had four legitimate heirs: Ariella, Geldall, Enman, and Ebel. Uriel also fathered two sons outside marriage—Calaxes, who was publicly acknowledged, and Martin, who was kept secret. Martin later became the last of the Septim bloodline, playing a key role in the Oblivion Crisis.", + "display_name": "uriel_septim_vii", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Almalexia, also known as Almalexia the Lover and Ayem, was one of the three God-Kings of the Tribunal, along with Vivec and Sotha Sil. She was revered for her compassion and earned titles like \"Healing Mother\" and \"Lady of Mercy.\" After her husband, Lord Indoril Nerevar, died, she became Vivec's Consort. Almalexia and the Tribunal initially swore to never use the Heart of Lorkhan's power, but they eventually did, achieving godhood and transforming the Chimer into the Dunmer. Over time, her powers faded, and she succumbed to madness, leading to the murder of Sotha Sil and her own death in a failed attempt to kill the Nerevarine in 3E 427.", + "display_name": "almalexia", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sotha Sil, also known as Seht, was the wizard-mystic god of the Dunmer and one of the Tribunal's most enigmatic figures. Revered for his magical prowess and wisdom, he did not consider himself a god like Vivec and Almalexia. Instead, he focused on creating the Clockwork City and believed in a vision for a new Nirn. Sotha Sil also negotiated the Coldharbour Compact with the Daedric Princes, although this was not always respected. His craftsmanship led to the creation of many artifacts and prosthetics. In the Fourth Era, he and the Tribunal were reclassified as saints, and the worship of the Good Daedra was restored in Dunmeri faith.", + "display_name": "sotha_sil", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vivec, also known as Vehk, is the Warrior-Poet deity of the Dunmer and a central figure in the pantheon of Morrowind. As the Guardian God-King of Vvardenfell, he protected against the dark forces of Red Mountain. With a dual heritage as both Dunmer and Chimer, he symbolizes the complexity of the Dunmeri spirit. Vivec was known for his artistic prowess, producing the \"36 Lessons\" for the prophesied Nerevarine. Throughout his reign, he wielded artifacts like his spear Muatra, balancing martial skill and poetry. At the end of the Third Era, he sacrificed his divinity, leading to his disappearance and the collapse of the Tribunal Temple. In the New Temple, he is reinterpreted as Saint Vivec, far from his former divine status.", + "display_name": "vivec", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pelinal Whitestrake is a legendary figure, revered as a demigod and champion of Queen Alessia during the Alessian Slave Rebellion. Known for his combat prowess, he fought against the Ayleid oppressors using the Crusader's Relics bestowed by the Eight Divines. His name, Pelin-El, meaning \"Star-Made Knight,\" reflects his celestial nature. Pelinal is remembered by titles such as Pelinal the Bloody and the Divine Crusader. He had a deep connection to Queen Alessia, and some Khajiiti tales call him the White Snake. Though a hero, Pelinal’s legacy is marked by both the hope of liberation and the destruction he caused.", + "display_name": "pelinal_whitestrake", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ysgramor, also known as Ysgramor the Invader and \"the harbinger of us all,\" is a legendary figure in Nordic history, celebrated as the first human ruler and king of Skyrim. He arrived from Atmora, fleeing a civil war, and became central to the early human-Elf struggles. The Night of Tears, where the Snow Elves massacred humans in Saarthal, is often linked to Ysgramor, who survived with his sons. He later returned with the Five Hundred Companions, defeating the Elves and driving them from Skyrim. Ysgramor is credited with being the first human historian and is revered by the Companions as their true leader, with his legacy enduring in the spirit of Nordic kings.", + "display_name": "ysgramor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alduin, the World-Eater, is a powerful black dragon in Nord mythology, known as the harbinger of the end times. Believed to destroy the world periodically, Alduin is considered the First-Born of Akatosh and represents a malevolent aspect of the deity tied to time and dragons. His name, \"Alduin,\" translates to \"Destroyer Devour Master\" in the Dragon Language, highlighting his destructive nature. He commands dragons, dragon priests, and draugr, with his return signaling the end of the world and the start of a new cycle. Nords view him both as a deity and a force of annihilation.", + "display_name": "alduin", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alessia, also known as Queen Alessia, Saint Alessia, and Lady of Heaven, was the first Empress of Cyrodiil and the founder of the Alessian Empire. She led the Alessian Slave Rebellion in the early First Era, liberating the Nedes from Ayleid enslavement. Her reign from 1E 243 to 1E 266 saw the creation of the Eight Divines, a new religion blending Nordic and Aldmeri pantheons. On her deathbed, Alessia was canonized by Akatosh, and her soul was placed in the Amulet of Kings, creating a divine covenant to protect Tamriel from Oblivion.", + "display_name": "alessia", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Morihaus, also known as Morihaus-Breath-of-Kyne and the Winged Bull, is a revered demigod in Cyrodiil and Skyrim. The son of the divine Kyne (Kynareth) and consort of Saint Alessia, he played a key role in the establishment of the Alessian Empire. Known for his exceptional archery skills, Morihaus is often depicted as a winged bull with golden wings and horns. He is connected to the Lord's Mail, an artifact created by Kyne. Though his arrogance led to the armor being reclaimed by his mother, he is still celebrated for his strength and connection to the constellation The Lord. He is also known for his heroic deeds, including hunting beasts with Fa-Nuit-Hen.", + "display_name": "morihaus", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Tiber Septim, also known as Talos Stormcrown, Hjalti Early-Beard, and Tiberius Imperator, was a crucial military leader who unified Cyrodiil and later all of Tamriel. He served as General Talos under King Cuhlecain and established the Third Empire in 2E 896. Tiber Septim ruled as Emperor from 2E 854 to 3E 38, leading for 81 years and becoming one of the greatest emperors in history. After his death, he was venerated as a god, worshipped as Talos, one of the Nine Divines, with his name meaning \"Stormcrown\" in the ancient Ehlnofey language.", + "display_name": "tiber_septim", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Jagar Tharn was the Imperial Battlemage who ascended to the throne through deception, secretly imprisoning Emperor Uriel Septim VII in Oblivion and using Illusion magic to impersonate him. He ruled as Emperor from 3E 389 to 3E 399 during the Imperial Simulacrum, a period of political turmoil. Although Tharn held power, the details of his ambitions and achievements remain largely unclear, and his actions significantly influenced the political landscape of Tamriel. The full extent of his goals and motivations has been lost to history.", + "display_name": "jagar_tharn", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Eternal Champion, reputedly known as Talin, played a pivotal role in ending the Imperial Simulacrum in 3E 399. Born in 3E 370, he is remembered for gathering the fragments of the Staff of Chaos, allowing him to defeat the impostor emperor, Jagar Tharn. His quest led to the rescue of the true emperor, Uriel Septim VII, and General Talin Warhaft, who had been imprisoned for a decade. This act restored the rightful leadership of the Empire and ended Tharn's reign.", + "display_name": "eternal_champion", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Saint Jiub, also known as Jiub the Magnificent and Eradicator of the Winged Menace, is a revered figure in both the Tribunal Temple and the New Temple. Once a Dunmer assassin with a troubled past, he sought redemption by eradicating the cliff racers of Vvardenfell, a feat that earned him sainthood from Vivec. In 3E 433, during the Oblivion Crisis, Jiub was trapped in the Soul Cairn, unaware of his death, until he encountered the Last Dragonborn in 4E 201. Jiub’s transformation from a fallen assassin to a saint embodies themes of redemption and legacy.", + "display_name": "saint_jiub", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Agent, known as the Hero of Daggerfall, was a covert operative of the Blades sent by Emperor Uriel Septim VII in 3E 375. Tasked with exorcising King Lysandus' spirit and recovering a letter for Queen Mynisera, the Agent became involved in political struggles in the Iliac Bay. Their actions led to the activation of the Numidium in 3E 417, causing the Warp in the West, which drastically changed the region. Afterward, the Agent mysteriously vanished, and it is believed they perished during the Warp, becoming part of the chaotic legacy of that moment.", + "display_name": "hero_of_daggerfall", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Hero of Kvatch, also referred to as the Champion, is a significant figure in the history of Tamriel, known for their pivotal role during the Oblivion Crisis in the Third Era. Their identity remains shrouded in mystery, with their race and gender unknown to most.", + "display_name": "hero_of_kvatch", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Martin Septim, the illegitimate son of Uriel Septim VII, played a crucial role during the Oblivion Crisis. Raised as a Priest of Akatosh in Kvatch and unaware of his royal lineage, his life changed when the Mythic Dawn assassinated his father and half-brothers, making him the heir to the Ruby Throne. Protected by Blades agents, Martin reluctantly rose to power. In his final act, he sacrificed himself to defeat the Daedric Prince Mehrunes Dagon and save Tamriel. His legacy is defined by his bravery, humility, and the weight of his royal heritage.", + "display_name": "martin_septim", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "High King Torygg was the ruler of Skyrim and the Jarl of Solitude until his death in 4E 201. The son of Istlod, he was named his successor by the Moot, despite Ulfric Stormcloak's growing calls for Skyrim's independence. Torygg respected Ulfric’s views and sought dialogue, unaware that Ulfric came to challenge him for the throne. The confrontation ended when Ulfric used his thu'um to kill Torygg, an act many, including the Empire, considered regicide. After his death, his widow, Elisif the Fair, became Jarl of Solitude and sought to claim the title of High Queen with the Empire’s support.", + "display_name": "high_king_torygg", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "General Tullius is an Imperial military leader assigned to suppress the Stormcloak Rebellion in Skyrim. He was appointed as Military Governor and saw Ulfric Stormcloak as a major threat to the Empire. Although initially dismissive of Nordic culture, Tullius eventually came to respect it. In 4E 201, he nearly executed both Ulfric and the Last Dragonborn before Alduin's attack on Helgen. Tullius continued his campaign, securing Balgruuf the Greater's loyalty in exchange for reinforcements to defend against a Stormcloak siege.", + "display_name": "general_tullius", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Jyggalag, the Daedric Prince of Order, governs logical order, deduction, and the cosmos's structure. Once ruling a realm of perfect symmetry, his Great Library predicted every event. Fearing his power, other Daedric Princes cursed him into becoming Sheogorath, the Madgod, creating a paradox. Each era saw Jyggalag briefly reclaim his form during the Greymarch before returning to Sheogorath. This cycle ended when the Hero of Kvatch defeated Jyggalag, breaking the curse. His legacy persists through the Sword of Jyggalag, a claymore that reveals the flow of time. His return could signal a new era of order across Oblivion.", + "display_name": "jyggalag", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Magnus, the God of Magic and the Great Architect, is credited with creating the schematics for Mundus during the Dawn Era. He collaborated with other et'Ada but abandoned the project when he realized the sacrifice required, creating the sun and stars in the process. Magnus's followers, the Magna Ge, are believed to have left remnants of his being in the stars. He is known for powerful artifacts like the Staff of Magnus and the Eye of Magnus. Worshiped by the Altmer, Bretons, and Khajiit, Magnus is viewed as a symbol of magical power and mysticism.", + "display_name": "magnus", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mannimarco, known as the God of Worms, is infamous for founding the Order of the Black Worm and becoming the first lich, known as the \"King of Worms.\" Originally an Altmer and a member of the Psijic Order, he was expelled due to his dark fascination with necromancy. His Worm Cult spread across Tamriel, and he created dark artifacts like the Necromancer's Amulet and the Staff of Worms. Mannimarco's pursuit of power led to his apotheosis during the Warp in the West, transforming him into the Revenant. Though his mortal form was destroyed, his influence remains, symbolizing the dangers of necromancy and the quest for immortality.", + "display_name": "mannimarco", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Leki, also known as the Saint of the Spirit Sword, is a revered goddess of swordsmanship and the divine daughter of Tall Papa, the chief deity of Yokudan mythology. She introduced the Ephemeral Feint, a sword technique that broke the stalemate among Yokuda's swordmasters, leading to the war with the Aldmer. Leki is celebrated for her innovation in martial arts, symbolizing skill, adaptability, and divine ingenuity in combat. Her influence is deeply woven into Redguard culture, with her legacy carried on by warriors like Sai Sahan, who embody her connection to swordsmanship. Leki remains a symbol of honor and mastery in both combat and spirit.", + "display_name": "leki", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Satakal, the Worldskin, is the Yokudan god of creation, destruction, and the eternal cycles of existence. Known as the First Serpent, Satakal represents the fusion of Anu and Padomay, symbolizing both chaos and order. In Yokudan mythology, Satakal devours worlds, shedding its skin to give birth to new ones. Worshiped by Redguard nomads in the Alik'r Desert, Satakal's followers practice rituals of \"shedding skin\" as a symbol of transcendence. His influence extends to the city of Satakalaam and traditions like those of the Pyre Watch and Hunding’s sword-singers. Despite its profound impact on Redguard culture, Satakal’s worship often conflicts with Imperial beliefs, reflecting the tension between eternal cycles and structured order.", + "display_name": "satakal", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ruptga, also known as Tall Papa, is the chief deity in the Yokudan and Redguard pantheon. He is revered as the god who led spirits to escape the endless cycles of creation and destruction by Satakal, guiding them to the Far Shores. Ruptga placed the stars in the sky to serve as a map for other spirits and punished Sep, the Second Serpent, for leading spirits into the mortal world. Worship of Ruptga features star motifs and the color purple. His influence is central to Redguard culture, reflected in their oaths and spiritual practices, embodying guidance, judgment, and perseverance.", + "display_name": "ruptga", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "HoonDing, also known as the Make Way God, is a revered Yokudan spirit symbolizing perseverance and the will to overcome obstacles. His first avatar, Diagna, defeated the Sinistral Mer with orichalc weapons and led warriors against the Orsimer during the Siege of Orsinium. HoonDing's influence continued through figures like Frandar Hunding, A'tor, and Cyrus, linking him to key events such as the Tiber War and the Soul Sword. He remains a central figure in Redguard mythology, embodying their resilience and ability to overcome adversity.", + "display_name": "hoonding", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hevnoraak must of been one of those Dragon Priests buried around Skyrim. You really don't know much more apart from that.", + "display_name": "hevnoraak", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Krosis must of been one of those Dragon Priests buried around Skyrim. You really don't know much more apart from that.", + "display_name": "krosis", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Morokei, must of been one of those Dragon Priests buried around Skyrim. You really don't know much more apart from that.", + "display_name": "morokei", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nahkriin must of been one of those Dragon Priests buried around Skyrim. You really don't know much more apart from that.", + "display_name": "nahkriin", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Otar the Mad must of been one of those Dragon Priests buried around Skyrim. You really don't know much more apart from that.", + "display_name": "otar_the_mad", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rahgot must of been one of those Dragon Priests buried around Skyrim. You really don't know much more apart from that.", + "display_name": "rahgot", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vokun must of been one of those Dragon Priests buried around Skyrim. You really don't know much more apart from that.", + "display_name": "vokun", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Volsung must of been one of those Dragon Priests buried around Skyrim. You really don't know much more apart from that.", + "display_name": "volsung", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vahlok the Jailor must of been one of those Dragon Priests buried around Solstheim. You really don't know much more apart from that. You have a hunch he must of been being a jailor for someone important, but don't know what.", + "display_name": "vahlok_the_jailor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ahzidal must of been one of those Dragon Priests buried around Solstheim. You really don't know much more apart from that.", + "display_name": "ahzidal", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dukaan must of been one of those Dragon Priests buried around Solstheim. You really don't know much more apart from that.", + "display_name": "dukaan", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Zahkriios must of been one of those Dragon Priests buried around Solstheim. You really don't know much more apart from that.", + "display_name": "zahkriisos", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Y'ffre, the God of Song and Forest, is the central deity of the Bosmer pantheon and played a crucial role in the creation of the world, establishing the laws of nature through stories and songs. His influence extends through his priests, the Spinners, who use narrative magic to shape life and the physical world. Y'ffre's teachings guide the natural world, and his power is felt in the changing seasons and in his selection of key figures like the Silvenar. Spinners also have the ability to alter identities, symbolizing Y'ffre’s continued influence over the Bosmer and beyond.", + "display_name": "yffre", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Z'en is a god worshipped by the Bosmer, associated with toil, vengeance, agriculture, and cosmic balance. His influence extends beyond crops, guiding the resolution of conflicts, and his worship includes symbols like a cap worn by devotees to signify renunciation of love and devotion to vengeance.", + "display_name": "zen", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Baan Dar, the Bandit God or Man of a Thousand Faces, is a trickster spirit worshipped by the Khajiit of Elsweyr and influential in Valenwood. He embodies cleverness and defiance, helping the Khajiit outwit their oppressors. His domain, the Five Fingers Dance, symbolizes his power to shape lives and lands through unconventional means.", + "display_name": "baan_dar", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sithis is a primordial force of chaos and change, worshiped mainly by the Dark Brotherhood, who believe that the souls of those killed in his name are sent to the Void. He is the personification of the Void and plays a key role in creation myths, including the birth of the world and Lorkhan.", + "display_name": "sithis", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vittoria Vici is an influential Imperial from Solitude, cousin to Emperor Titus Mede II, and oversees the East Empire Company's holdings in the city. She is having a wedding in Solitude at somepoint.", + "display_name": "vittoria_vici", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Miraak is rumored to be a dragon priest on Solstheim who is hypnotizing people on the Island of solstheim. You do not really know much more about him.", + "display_name": "miraak", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The All-Maker, also known as the All-Father, is an ancient and mysterious deity revered by the Skaal of Solstheim, representing the wellspring of creation. It is believed that the All-Maker resides in the spirit world, where the souls of the dead return to be shaped into new life.", + "display_name": "all-maker", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alkosh is the Khajiit version of Akatosh, the ruler of the eight(nine) Divines, and the Dragon God of Time.", + "display_name": "alkosh", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Khajiit call Azura by a different name, Azurah, and view her as a benevolent creator-goddess, from which the Khajiit race was born. Different from the Reclaimation that the Dunmer venerate, or the dreaded Daedric Prince the other races of Tamriel view her as.", + "display_name": "azurah", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ja'darri is one of the great heros of Khajiiti legend, she founded an ancient monastery in the Tenmar forest called Pridehome, and the Pride of Alkosh, a organization that protected Elsweyr in the first and second Eras, perhaps even until the current day, as both Pridehome and the Pride of Alkosh are fabled to exist beyond the constraints of linier time.", + "display_name": "ja'darri", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kaalgrontiid was the dragon that the foremost mortal hero of Khajiiti myth, Khunzar-ri, defeated with the help of his band of heros: Nurarion the Perfect, Flinthild Demon-Hunter, Anequina Sharp-Tongue, and Cadwell the Betrayer. Kaalgrontiid had plans to become equal to Alkosh by becoming a third moon in the sky, obtaining lunar godhood.", + "display_name": "kaalgrontiid", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Laatvulon was a dragon that threatened Elsweyr in both the first and second eras, defeated once by the legendary hero Ja'darri, with a dragon horn, given to her by her friend, the dragon Nahfahlaar. Unleashed from beneath the Doomkeep in the Second Era, again he was defeated, this time by the Vestige during the chaos of the Three Banners War.", + "display_name": "laatvulon", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lorkhaj is the Khajiiti name for Lorkhan, who is refered to as Shor in Nord mythology.", + "display_name": "lorkhaj", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nahfahlaar was a dragon that the Legendary Khajiiti hero Ja'darri befriended. He helped her defeat Laatvulon, a Black dragon that once terrorized Elsweyr. The struggle would go on to become one of the classical legends of the Khajiiti people.", + "display_name": "nahfahlaar", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rid-Thar-ri'Datta was the Mane of Elsweyr during the early-mid Second Era. Rid-Thar-ri'Datta is referred to as the first Mane, a spiritual leader of Elsweyr that paved the way for a moon-based culture and veneration for the deity of cosmic order, the Riddle'Thar.", + "display_name": "rid-thar-ri'datta", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Reman Cyrodiil (sometimes enumerated as Reman I), called the Worldly God, was a cultural god-hero of the Second Empire, and the greatest hero of the Akaviri Trouble of the First Era. His name, Reman, means \"Light of Man\". Popular belief is that the province of Cyrodiil was named after him.", + "display_name": "reman_cyrodiil", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rumor whispers of a pale ghost of a man, who appears in times of trouble thought the tapestry of Tamriel's history, it is unknown who this figure is, as his name has been stricken from all records. The figure has the appearance of an elderly Imperial man, who dresses in rags, and dons armor made from common kitchen utensils.", + "display_name": "cadwell", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Masser, also known as Jode, Mara's Tear and Zennji in Ta'agra, is the greater of Nirn's two moons and is acknowledged as one of the attendant spirits of the mortal plane. As such, it is both temporal and subject to the bounds of mortality. As with all astral bodies seen from Nirn, the moons and dominion planets, Masser is said to actually be a separate plane in its own right, infinite in size and mass, with its appearance as a sphere being only a visual phenomenon caused by mortal mental stress. Masser has long since perished and its death has led to mortals perceiving its previously pure white and featureless sphere as having its current texture and reddish hue, the moon's \"skin\" withering away.", + "display_name": "masser", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "General: Secunda, the lesser of Nirn's two moons, is acknowledged as one of the attendant spirits of the mortal plane, and is said to actually be a separate plane in its own right. Its appearance as a sphere in an illusion caused by moral's mental stress, and it's death long ago means mortals perceive the moon's \"skin\", with a grayish hue, withered and scarred.\n\nFor Bretons: Secunda(also known as Shandar's Sorrow (also spelled Stendarr's Sorrow)) is the name of an ancient goddess of the moons. The Bretons of Glenumbra Moors honor her through the Moon Festival, which is held on the 8th of Sun's Dusk when the nights grow longer.\nFor Bosmer: The Bosmer regard Jone and Jode as spirits of fortune, both good and bad.\nFor Khajiit: Secunda is known as Jone, and Zennrili in the khajiiti language of Ta'agra, and is culturally significant because walking the Path of Jone and Jode is a necessary step for a Lunar Champion seeking to become the Mane.", + "display_name": "secunda", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Anu, or Anu the Everything, is thought to be the quintessential form of Stasis and Order, the anthropomorphization of two primal forces (the other being Padomay, Change and Chaos). Anu or his equivalent under a different name is present in every culture's traditions; for instance, the Khajiit refer to him as Ahnurr, and he is a \"littermate\" to Fadomai. He is known as Satak to the Redguards. He is known as the Light to the Bretons. He also shares similarities to the Argonian figure Atak. Other names for Anu include Ak, Bird, and Good.", + "display_name": "anu", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Padomay is a representation of the primordial state of chaos. One of the two primal forces, the other being Anu, Padomay is the personification of the primordial force of Chaos and Change who dwells in the Void beyond time itself.", + "display_name": "padomay", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shezarr was known as the \"God of Man\" in Cyrodiilic culture, the Imperial's version of Lorkhan, but the use of that name has become less common over time. He is recognized as Shor in Nord culture, and in the modern era, most of Cyrodiil calls the missing god by that name.", + "display_name": "shezarr", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Riddle'Thar is the philosophy, god and martial code that most Khajiit follow to one day be ferried by Khenarthi to a paradise in death, The Sands Beyond the Stars(known as Llesw'er in Khajiit's native language of Ta'agra). It is thought that claws are the reason the majority of Khajiit are dangerous in un-armed combat, but the reality is that most Khajiit-raised children are taught a form of martial arts called the Two-Moons Dance.", + "display_name": "riddle'thar", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Khenarthi, God of Winds, the Gatherer of Waters, and the Elder Spirit of the Heavens, is the Khajiiti goddess of weather and the sky, the most powerful of the Sky Spirits, and is the Khajiiti interpretation of Kynareth. When a Khajiit dies, it is Khenarthi who guides their soul either to Azurah for judgment, or to Llesw'er, the Sands Behind the Stars. And it is her clarion call that will summon the \"eternal united spirit of all Khajiit\" to defend creation at the end of time. She is typically represented as a great hawk, or as a winged cat, a \"Sphinx\". Khenarthi is thought by those of other races to be the Khajiiti interpretation of the wider known Cyrodiilic goddess, Kynareth.", + "display_name": "khenarthi", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "In the writings of Rid-Thar-ri'Datta, the father of modern-day Khajiiti theology, Alkosh holds the title of First Cat, chief of all the gods, and makes no mention of how he came to be.", + "display_name": "akha", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alkhan, the Scaled Prince, is the firstborn of the Khajiiti deity Akha and a demon of fire and shadow. It is said that he devours the souls of his victims to grow to an immense size. Alkhan was slain by Lorkhaj and his companions, but will someday return from the Many Paths. His enemies include Alkosh, Khenarthi, and Lorkhaj. The Nords of Skyrim refer to Alkhan as Alduin, the World Eater.", + "display_name": "alkhan", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Boethra, the Warrior of the East and West, is a sharp-tongued Khajiiti deity, an ancestor spirit and a teacher of the old ways, and the patron of warriors and rebellious exiles. Most outside of the Khajiiti diaspora believe she is simply the Khajiit interpretation of Boethiah.", + "display_name": "boethra", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hermorah is the Khajiiti interpretation of the Daedric Prince Hermaeus Mora, to the ancient Khajiit, he was a god of the tides, and forbidden knowledge, often hosting the goddess Azurah, and teaching her his secrets, such as how to maintain the motion of the moons, Jone and Jode.", + "display_name": "hermorah", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ius, God of Animals, also known as Ius the Agitated and Ius the Extremely Agitated, is a deity worshiped in Valenwood, Hammerfell, and Elsweyr. He is represented throughout these three lands as a misshapen humanoid carrying a rod, which is said to have its origin in the tale of The Ox and the Evil Farmer. He is also depicted with a set of scales.", + "display_name": "lus", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Khajiit see the moons, Jode(Masser) and Jone(Secunda), as two aspects of a single entity known to them as the Lunar Lattice, or Ja-Kha'jay.", + "display_name": "ja-kha'jay", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mafala, also known as Teaching Mother, or the Elder Spirit is the ancient Khajiit goddess of lies, secrets and sex, and is closely associated with the Daedric Prince Mephala. Ancient sermons claim that she served as the recorder of hidden guilt and eternal shame. She was considered an ancestor spirit and a teacher of the old ways; however, her worship fell out of favor after the event known as the \"Sinner Suicides\".", + "display_name": "mafala", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Reymon Ebonarm (also called Ebonarm or the Black Knight) is a living God of War to the Redguards, and in some parts of High Rock, and the companion and protector of all warriors. He is said to ride a golden stallion named War Master, and is accompanied by a pair of huge ravens.", + "display_name": "reymon_ebonarm", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Some ancient Khajiit tribes knew Molag Bal as Molagh, one of the twelve Demon Kings and the Elder Spirit of Domination and Supreme Law. In some forms of Khajiiti mythos, Molagh has a wife who freed Merrunz to weaponize his destructive nature.", + "display_name": "molagh", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nir is the source of all creation according to the Anuad, Ayleid creation myth, a root from which all the faiths of Mer branch.", + "display_name": "nir", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Vestige is remembered in tavern-songs and dusty tomes as the hero who ended the Planemeld long ago, when Molag Bal tried to pull Nirn into Coldharbour. Most folk only know the legend: a mortal without a soul who fought their way back from Oblivion, gathered allies across the world, and restored the Empire’s heart with the Amulet of Kings. Scholars argue over the details, but the stories agree on this—without the Vestige, Tamriel would have been chained to Coldharbour forever.", + "display_name": "vestige", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Azra Nightwielder was a legendary mage said to be the first to understand and control Shadow Magic. Tales describe him experimenting with the power of shadows in dangerous ways, even trying to reach other versions of himself in different worlds. He vanished for many years—some say trapped in ice—before being freed during the Interregnum. Today he is remembered as the greatest shadowmage who ever lived.", + "display_name": "azra_nightwielder", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Khunzar-ri is a legendary hero of the Khajiit, remembered in story and song as a cunning trickster, warrior, and champion of Elsweyr. To most who know his name, he is a figure of myth rather than history—a larger-than-life adventurer said to have outwitted monsters, humbled giants, and performed impossible feats through wit as much as strength. Tales portray him as bold, charismatic, and irreverent, a hero who laughs in the face of danger and triumphs through cleverness rather than brute force.", + "display_name": "khunzar-ri", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + } + ], + "entry_count": 228, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Figures & Gods", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/Oghma_-_Groups_Books.sknpack b/oghma-sknpack/Oghma_-_Groups_Books.sknpack new file mode 100644 index 0000000..572b9a0 --- /dev/null +++ b/oghma-sknpack/Oghma_-_Groups_Books.sknpack @@ -0,0 +1,5745 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Tamrielic lore from CHIM's Oghma Infinium — groups lore. Merges educated and common-knowledge entries graded by importance.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "The Companions are a renowned group of warriors based in the city of Whiterun in Skyrim, with their headquarters located in the mead hall of Jorrvaskr. They trace their origins back to Ysgramor and his Five Hundred Companions, who accompanied him in his legendary return to Skyrim from Atmora, seeking vengeance against the elves during the Merethic Era. The modern Companions operate as mercenaries, accepting contracts from the public while maintaining a tradition of honor and neutrality, avoiding entanglement in political conflicts. The group is led by a Harbinger, an honorific title passed down from leader to leader, with Ysgramor himself regarded as the first Harbinger.\n\nWithin the Companions, the most elite members belong to the Circle, a governing body founded to uphold the ancient traditions of the group. However, the Circle harbored a dark secret: its members had accepted the curse of lycanthropy, turning them into werewolves under an ancient pact with the Glenmoril witches. While some, like Harbinger Kodlak Whitemane, sought to rid the Companions of this curse, others embraced it. The Companions have played a significant role in Skyrim’s history, holding a revered place as impartial warriors who value honor above all else.", + "display_name": "companions", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Thieves Guild is a secretive organization in Skyrim dedicated to criminal activities, including burglary, pickpocketing, and smuggling. Despite its criminal nature, the guild often functions as a \"crime regulator,\" maintaining order among thieves and ensuring a balance in illicit activities. Its headquarters, the Ragged Flagon, is hidden beneath the city of Riften within the network of tunnels known as the Ratway. The guild's influence has spread across Skyrim, with members adhering to a code that discourages murder, unnecessary violence, and the targeting of the poor. Over the years, local authorities have tolerated the guild, benefiting from bribes and the guild's role in regulating crime.\n\nThe guild offers many benefits to its members, such as specialized training, access to rare items, and opportunities to rise in rank. Those who advance within the guild may even become Nightingales, sworn to serve Nocturnal, the Daedric Prince of Night and Darkness. The guild's reach extends into major cities like Solitude, Windhelm, Whiterun, and Markarth, where it restores its influence through special assignments.", + "display_name": "thieves_guild", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dark Brotherhood is a clandestine guild of assassins in Skyrim, renowned for carrying out murders for hire. Historically powerful, the guild has seen a significant decline in recent years. Unlike the more legally sanctioned Morag Tong in Morrowind, the Dark Brotherhood operates entirely outside the law, often feared and loathed by the general population. The organization was traditionally led by the Night Mother, but in Skyrim, Astrid has assumed control. The Brotherhood's operations are based out of their Sanctuary, hidden deep within the wilderness, and they maintain a connection with the Thieves Guild in Riften.", + "display_name": "dark_brotherhood", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Imperial Legion is the primary military force of the Empire of Tamriel, tasked with preserving peace, enforcing the rule of law, and protecting the Emperor and Imperial Province. Known for its discipline, vast numbers, and specialized troops, the Legion operates both as a garrison force during peacetime and an overwhelming invasion force during conflicts. Its recruits come from all races and regions, contributing to the Legion’s diverse but highly trained and loyal ranks. The Legion's versatile structure includes archers, cavalry, battlemages, and healers, making it one of the most formidable armies in Tamriel’s history. In addition to military duties, the Legion acts as the Empire’s enforcer, providing guardsmen and maintaining order across the provinces.\n\nThe Legion's history stretches back to the First Era, with its origins tied to the Alessian Empire. It played a key role in expanding and consolidating Imperial power under various rulers, including Tiber Septim during the creation of the Third Empire. Over the centuries, the Legion has fought in numerous wars and conflicts, from the Alessian conquest of Cyrodiil to the Great War against the Aldmeri Dominion. Despite facing challenges in later eras, such as the Great War and the Skyrim Civil War, the Imperial Legion remains a symbol of the Empire's military strength and resilience.", + "display_name": "imperial_legion", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Stormcloaks are a rebel faction in Skyrim, led by Jarl Ulfric Stormcloak of Windhelm. They seek to overthrow the Imperial Legion's control over Skyrim and establish it as an independent kingdom, free from the influence of the Empire. Their rebellion was sparked by the Empire's enforcement of the White-Gold Concordat, particularly the ban on Talos worship, which the Nords view as an affront to their traditions and sovereignty. The Stormcloaks aim to restore Skyrim’s ancient customs and resist what they see as Imperial and Thalmor oppression.\n\nMost of the eastern regions of Skyrim are under Stormcloak control, including their stronghold in Windhelm. The central hold of Whiterun remains a strategic focus for both sides, though it starts as neutral but friendly to Imperial interests. The conflict between the Stormcloaks and the Imperial Legion divides Skyrim, with towns, cities, and holds aligning with one side or the other as the civil war progresses. The faction's ultimate goal is to install Ulfric as High King of an independent Skyrim.", + "display_name": "stormcloaks", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Bards College is a prestigious institution located in Solitude, dedicated to the arts of music, poetry, and storytelling. Aspiring bards from across Skyrim come to the college to train in the skills of song and tale-telling. It is situated near Proudspire Manor and the Blue Palace within the city. Its influence extends throughout Skyrim, with many of the province’s bards having trained there.", + "display_name": "bards_college", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Tribunal Temple was the dominant religion of the Dunmer in Morrowind, centered around the worship of three god-like figures: Almalexia, Sotha Sil, and Vivec, collectively known as the Tribunal or Almsivi. The Temple played a key role in the defense of Morrowind, particularly through the creation of the Ghostfence, a magical barrier designed to contain the Blight spreading from Red Mountain. Strong ties existed between the Temple and the Dunmer Great Houses, especially House Indoril and House Redoran, who actively supported the Tribunal and its religious order, including its military arm, the Ordinators.\n\nFollowing the collapse of the Tribunal and the events of the Red Year, the Temple reformed into what became known as the New Temple, abandoning the worship of the Tribunal and returning to the veneration of the Dunmer's ancestral faith, focusing on the \"Three Good Daedra\": Azura, Mephala, and Boethiah. However, some heretical groups continued to secretly worship the Tribunal, even building hidden temples such as Ashfall's Tear on Solstheim. These underground cults were considered illegal by the New Temple and faced persecution for their beliefs.", + "display_name": "tribunal_temple", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Volkihar Vampire Clan is an ancient and powerful group of vampires led by Lord Harkon, located in Skyrim. Known as one of the most formidable vampire courts in the region, the Volkihar reside in Volkihar Keep, a remote castle situated on an island off the coast of Haafingar. This clan is distinguished by its ancient lineage and pure-blooded members, making it a feared presence in the realm.", + "display_name": "volkihar", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Blades are an elite organization originally formed from the Akaviri Dragonguard, tasked with protecting and serving the Dragonborn emperors of Tamriel. Their origins trace back to the Reman Dynasty, where they began as the personal bodyguard of Emperor Reman I. Over time, the Blades expanded into an Imperial intelligence network, operating in secret as spies, diplomats, and military leaders. They played key roles in shaping major events across Tamriel, such as the reassembly of Numidium and the defeat of Dagoth Ur. The Blades are best known for their loyalty to the Dragonborn emperors, including their service to Tiber Septim and Uriel Septim VII.\n\nWith the rise of the Aldmeri Dominion and the outbreak of the Great War, the Blades were disbanded and targeted for elimination by the Thalmor. Many Blades were hunted down and killed, and the organization went into hiding. Their headquarters, such as the famous Cloud Ruler Temple, became sacred sites, and their members continued to operate in secret, awaiting the arrival of a new Dragonborn to serve.", + "display_name": "blades", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Blood Horkers are a notorious group of pirates operating in the Sea of Ghosts under the command of a battlemage named Haldyn. Known for their ruthless raids along the northern coastline of Tamriel, they have exploited the chaos of the Civil War in Skyrim to intensify their attacks without fear of reprisal from the major factions. The group has a secret stronghold, Japhet's Folly, where Haldyn employs powerful magic to shroud the island in fog, ensuring its location remains hidden.", + "display_name": "blood_horkers", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Forsworn, also known as the Madmen of the Reach, are a faction of insurgent Reachmen who claim to be the rightful rulers of the Reach in western Skyrim. Their rebellion began after the Markarth Incident in 4E 176, when the Empire, distracted by the Great War, left the region vulnerable. The Reachmen briefly took control of Markarth but were ousted by a Nord militia led by Ulfric Stormcloak. Following this, the surviving Reachmen fled into the wilderness, forming the Forsworn, a guerrilla faction committed to driving out the Nords and restoring their independence.\n\nThe Forsworn are known for their primitive, tribal appearance and society, with their warriors clad in fur, feathers, and bones. They follow hagravens, matriarchal witches who perform dark rituals, including the creation of Briarhearts—Forsworn warriors who undergo a ritual where their hearts are replaced by Briar Hearts, giving them unnatural strength. The Forsworn reject all attempts at peace, instead waging a relentless campaign of violence against Nords and the Empire, seeking vengeance for their lost land.", + "display_name": "forsworn", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Greybeards are a reclusive and ancient order of monks who reside at High Hrothgar, a monastery on the slopes of the Throat of the World, the highest mountain in Skyrim. They are masters of the Voice, or Thu'um, a form of powerful speech that can be used as a weapon. Founded by Jurgen Windcaller after the Battle of Red Mountain, the Greybeards follow the Way of the Voice, a philosophy that advocates peaceful meditation and the belief that the power of the Thu'um should only be used in times of \"True Need.\" They dedicate their lives to spiritual study and silence, with the only exception being their reverence for the gods, which they express through their shouts.", + "display_name": "greybeards", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Penitus Oculatus is an elite Imperial organization responsible for the security of the Emperor and conducting espionage and counter-intelligence operations on behalf of the Empire. Following the disbandment of the Blades, the Penitus Oculatus took over as the primary protective force for the Emperor, carrying out covert operations and, when necessary, assassinations to ensure the Empire's stability and security. Their influence and authority extend across Imperial territories, though their main focus remains in Cyrodiil.\n\nIn Skyrim, their presence is limited, with a small outpost located in Dragon Bridge. This outpost operates primarily to safeguard Imperial interests in the province during the ongoing civil war. While they are relatively discreet, the Penitus Oculatus is a formidable force known for its loyalty to the Emperor and the Empire.", + "display_name": "penitus_oculatus", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Psijic Order is the oldest monastic group in Tamriel, devoted to the study and practice of Mysticism, which they refer to as the \"Old Ways.\" Founded on the Isle of Artaeum in the Summerset archipelago, the Psijics are highly reclusive and known for their deep understanding of magic, spirituality, and the natural forces that govern change in the world. Their members, primarily Altmer, but also select individuals from other races, are chosen for their magical abilities through a complex ritual. The Order believes in guiding the world through periods of change, considering it the most sacred force, and their counsel has often been sought by rulers, though they avoid direct involvement in politics.", + "display_name": "psijic_order", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Silver Hand is an organized group of criminals, originally formed as werewolf hunters. Over time, however, their purpose became corrupted, and they now engage in indiscriminate violence, targeting anyone they perceive as enemies. Their actions are often brutal, with a history of capturing, torturing, and killing civilians.", + "display_name": "silver_hand", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Skaal are a distinct tribe of Nords residing in northeastern Solstheim, known for their strong connection to the land and their self-sufficient way of life. Their village, located along the Felsaad Coast near Lake Fjalding, is home to a hospitable people who welcome strangers without suspicion. The Skaal believe that Solstheim was once part of Skyrim and became an island following a great conflict between Dragon Cult loyalists, from whom they claim descent, and rebels. Their isolation allowed them to form a unique culture over time, one rooted in oral traditions and a deep spiritual bond with the natural world.\n\nThe Skaal's way of life revolves around their environment, as they rely solely on the land for their needs and rarely engage in trade with outsiders. Their history includes a splinter group, led by Hrothmund the Red, that founded Thirsk Mead Hall to return to the old ways of unrestrained hunting and combat. In the Fourth Era, the Skaal faced challenges as the aftermath of the Red Year led to ashfall from Red Mountain, which poisoned the land and drove desperate wildlife into their territory. Despite these hardships, the Skaal maintain their traditions and strong sense of community.", + "display_name": "skaal", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Synod is one of two prominent magical organizations that arose following the dissolution of the Mages Guild at the start of the Fourth Era, the other being the College of Whispers. The Synod is known for its more restrictive approach to magical knowledge and its rivalry with the College of Whispers. Unlike its rival, the Synod has continued the Mages Guild’s ban on necromancy and has imposed restrictions on certain forms of conjuration. The organization places significant emphasis on controlling access to knowledge, with members needing to pay dues and work within the organization for years to gain access to advanced spells.", + "display_name": "synod", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Thalmor are the ruling government of the Third Aldmeri Dominion, a political and military alliance between the Altmer (High Elves) and Bosmer (Wood Elves). They promote a supremacist ideology, seeking to establish Mer (Elves) as racially superior to Men and to extend their control across Tamriel. By 4E 201, the Thalmor have a significant presence in Skyrim, where they enforce the White-Gold Concordat, a peace treaty signed after the Great War between the Empire and the Aldmeri Dominion. One of the treaty's key provisions is the banning of Talos worship, a point of great contention between the Thalmor and many Nords.\n\nIn Skyrim, the Thalmor operate from their embassy in Haafingar, north of Solitude, and use Northwatch Keep as a detention center for political prisoners. Thalmor Justiciars, who act as enforcers of their policies, can often be seen traveling Skyrim's roads, sometimes escorting prisoners. While they may not initially show hostility, questioning them about Talos or other sensitive topics can provoke aggressive responses. The Thalmor's activities and their enforcement of the ban on Talos worship have fueled resentment among Skyrim's populace, particularly among Stormcloak rebels who oppose both the Empire and the Dominion.", + "display_name": "thalmor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Vigil of Stendarr is a devout order of holy warriors dedicated to the eradication of Daedra, vampires, werewolves, witches, and other so-called \"abominations\" in the name of the god Stendarr, the Divine of Mercy. Vigilants of Stendarr are often found patrolling the roads of Skyrim in their quest to rid the land of these creatures. They offer healing services, including curing diseases, to those they encounter on their travels. The order's main base in Skyrim is the Hall of the Vigilant, located south of Dawnstar, though they also maintain a presence at Stendarr's Beacon in The Rift.", + "display_name": "vigil_of_stendarr", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Argonians, known to themselves as Saxhleel or \"People of the Root,\" are the reptilian natives of Black Marsh, a vast swampy province in southeastern Tamriel. Their unique physiology grants them a natural resistance to poison and disease, making them well-suited to their treacherous homeland. They are agile swimmers, able to breathe underwater, and are known for their skills in stealth and guerrilla warfare, which they have employed for centuries to defend their borders from invaders. Their connection to the Hist, a race of sentient trees, is central to their culture and way of life, and their alien nature often makes them seem mysterious to outsiders.\n\nArgonians are often misunderstood and referred to derogatorily by other races as \"lizards\" or \"beasts.\" They are known for their reserved and expressionless demeanor, making it difficult for other races to relate to them. Some Argonians who have left Black Marsh for other regions, such as Cyrodiil, adopt Imperial customs and names to better integrate into foreign societies. Despite their reputation for being difficult to know, those who take the time to understand Argonian culture often gain a deep respect for this resilient and noble people.", + "display_name": "argonian", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bretons are a race of both human and elven ancestry, primarily inhabiting the province of High Rock and the Systres Archipelago. Their origins stem from centuries of interbreeding between the Nedic peoples and Aldmer settlers, particularly Clan Direnni. This mixed heritage has given Bretons a natural affinity for magic, with many excelling in spellcraft, enchantment, and alchemy. Despite their human lifespans, which limit their study time compared to their elven peers, Bretons are known for their intelligence and magical resistance, making them formidable in both intellectual and combative pursuits.\n\nCulturally, Bretons are shaped by a feudal society, with a deep-rooted obsession with nobility, status, and lineage. They have a strong tradition of knighthood and chivalry, which forms a key part of their identity. Their lands are politically fragmented, with frequent internal conflicts, but Bretons share common traditions of bardic storytelling and heroic tales. They are also known for their unique druidic roots, with some Bretons seeking to reconnect with the natural world through these ancient traditions. Overall, Bretons balance their human and elven heritage, blending aspects of both into a distinct culture that values magic, honor, and adventure.", + "display_name": "breton", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dunmer, also known as Dark Elves, are the grey-skinned, red-eyed elven people of Morrowind. While \"Dark Elf\" is the common term used by outsiders, the Dunmer and their Aldmeri kin prefer the term \"Dunmer,\" with \"dark\" symbolizing their somber, shadowed history and often unfortunate fate. Known for their powerful intellects and agile physiques, Dunmer make excellent warriors and sorcerers, seamlessly blending swordplay, archery, and destructive magic in combat. Their long lifespans, often extending beyond two centuries, enable them to hone their abilities, with some of the oldest Dunmer mages living for over five hundred years or more through mystical rituals.\n\nDunmer society is typically seen as grim, aloof, and harsh by outsiders, who often perceive them as clannish and ruthless. Loyalty to family and clan is of utmost importance in their culture, and they have a reputation for quick tempers and a deep-seated distrust of other races. Despite these negative perceptions, Dunmer value honor, and their vengeful nature stems from a long history of betrayal and conflict. Those raised in Morrowind tend to be less approachable compared to Dunmer who have integrated into Imperial culture. Their homeland's harsh conditions also make them more vulnerable to skin diseases, commonly referred to as \"corprus,\" though this differs from the infamous Divine Disease of the same name.", + "display_name": "dark_elf", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dunmer, also known as Dark Elves, are the grey-skinned, red-eyed elven people of Morrowind. While \"Dark Elf\" is the common term used by outsiders, the Dunmer and their Aldmeri kin prefer the term \"Dunmer,\" with \"dark\" symbolizing their somber, shadowed history and often unfortunate fate. Known for their powerful intellects and agile physiques, Dunmer make excellent warriors and sorcerers, seamlessly blending swordplay, archery, and destructive magic in combat. Their long lifespans, often extending beyond two centuries, enable them to hone their abilities, with some of the oldest Dunmer mages living for over five hundred years or more through mystical rituals.\r\n\r\nDunmer society is typically seen as grim, aloof, and harsh by outsiders, who often perceive them as clannish and ruthless. Loyalty to family and clan is of utmost importance in their culture, and they have a reputation for quick tempers and a deep-seated distrust of other races. Despite these negative perceptions, Dunmer value honor, and their vengeful nature stems from a long history of betrayal and conflict. Those raised in Morrowind tend to be less approachable compared to Dunmer who have integrated into Imperial culture. Their homeland's harsh conditions also make them more vulnerable to skin diseases, commonly referred to as \"corprus,\" though this differs from the infamous Divine Disease of the same name.", + "display_name": "dunmer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Altmer, commonly known as High Elves, are a tall, golden-skinned race originating from the Summerset Isles. Renowned for their mastery of the arcane arts, they are considered the most gifted in magic among all races of Tamriel. The Altmer possess long lifespans, living two to three times longer than humans, which allows them to dedicate many years to the study of magic and scholarly pursuits. Known for their intelligence and cultured way of life, the Altmer have contributed greatly to Tamriel's language, laws, arts, and sciences, with much of the Empire’s customs derived from their traditions.\n\nDespite their contributions, the Altmer are often viewed with suspicion and resentment by other races, who see them as proud, elitist, and aloof. This perception is reinforced by the Altmer's own belief in their cultural superiority, which has caused friction between them and the other inhabitants of Tamriel. Nevertheless, the Altmer's influence, particularly in magic and intellectual endeavors, remains a defining aspect of their legacy in the continent.", + "display_name": "high_elf", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Altmer, commonly known as High Elves, are a tall, golden-skinned race originating from the Summerset Isles. Renowned for their mastery of the arcane arts, they are considered the most gifted in magic among all races of Tamriel. The Altmer possess long lifespans, living two to three times longer than humans, which allows them to dedicate many years to the study of magic and scholarly pursuits. Known for their intelligence and cultured way of life, the Altmer have contributed greatly to Tamriel's language, laws, arts, and sciences, with much of the Empire’s customs derived from their traditions.\n\nDespite their contributions, the Altmer are often viewed with suspicion and resentment by other races, who see them as proud, elitist, and aloof. This perception is reinforced by the Altmer's own belief in their cultural superiority, which has caused friction between them and the other inhabitants of Tamriel. Nevertheless, the Altmer's influence, particularly in magic and intellectual endeavors, remains a defining aspect of their legacy in the continent.", + "display_name": "altmer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Khajiit are a feline race native to the province of Elsweyr, known for their agility, intelligence, and distinctive cat-like appearance. They are skilled in acrobatics, stealth, and make excellent thieves, but they are also capable warriors and traders. Although Khajiit are rarely mages, their unique physical traits, such as fur, tails, and digitigrade walking, set them apart from both men and mer. These differences have led to their classification as one of Tamriel's \"beast races,\" alongside Argonians and Imga. The Khajiit are known for their love of moon sugar, an integral part of their culture and economy, which is often refined into the addictive substance skooma.\n\nKhajiit society is structured around clans and their relationship with the phases of Nirn's moons, Masser and Secunda, which influence their physiology and determine their form upon birth. The Khajiit exhibit a wide variety of shapes, from bipedal, human-like figures to quadrupedal, more animalistic forms. Their homeland of Elsweyr is a land of deserts and jungles, where they have developed a rich cultural heritage with distinct architecture, art, and traditions. Despite facing racial prejudice across Tamriel, Khajiit are proud of their heritage and the unique contributions they bring to Tamrielic society.", + "display_name": "khajiit", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nords, also known as the Children of the Sky, are a race of tall, fair-haired humans from the province of Skyrim, renowned for their resistance to cold and magical frost. Known as fierce and powerful warriors, Nords excel in all forms of combat, often serving as soldiers, mercenaries, or adventurers across Tamriel. Their culture is deeply martial, and their history is filled with tales of conquests and warfare, dating back to their migration from the northern land of Atmora. Though once famed for their seafaring prowess, the Nords have since established their homeland of Skyrim, where they are fiercely protective of their traditions and independence.\n\nNordic society is built around a strong sense of honor, loyalty, and ancestor worship. Their religion, known as the Old Ways, venerates a pantheon of gods, including Kyne, the goddess of the sky, and Shor, the god of the underworld. Nords also revere the Thu’um, the power of the Voice, a mystical force used by legendary warriors known as Tongues. Nords have a distinct architectural style, marked by wooden longhouses and fortresses, and their funerary customs emphasize ancestor worship, with burial sites treated as sacred places. Their cultural heritage and warrior spirit define much of their identity, making them one of Tamriel’s most formidable and respected peoples.", + "display_name": "nord", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcs, also known as Orsimer (meaning \"Pariah Folk\" in Aldmeris), are a race of elves primarily from the mountainous regions of Wrothgar, Dragontail, and Skyrim, as well as their stronghold city of Orsinium. Though they share elven ancestry, Orcs are often considered distinct from other Mer and are sometimes grouped with goblin-kin or even classified as beastfolk. Historically, Orcs were feared and regarded as savage barbarians by other races of Tamriel, but over time they have won respect, particularly for their martial prowess and skilled craftsmanship. Their armorers are among the best in Tamriel, and their warriors, known for their berserker rage, are highly valued in Imperial Legions.\n\nOrc society is structured around strongholds and clans, each led by a chief. They follow a strict martial tradition and place great value on honor, strength, and endurance. Orcs worship Malacath, the Daedric Prince of Outcasts, whom they believe was once the elven god Trinimac before being transformed. Malacath is viewed as the protector of the Orcs, and his teachings form the foundation of their cultural and moral code. Despite their rough reputation, Orcs are a disciplined and honorable people who value fairness and justice within their communities.", + "display_name": "orc", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Redguards are a human race native to Hammerfell, with ancestral ties to the lost continent of Yokuda. They are renowned across Tamriel for their martial prowess, tactical brilliance, and adaptability in combat. Their homeland, once called the Deathlands due to its harsh, arid climate and dangerous creatures, has shaped Redguard culture into one that values strength, endurance, and survival. Hammerfell’s desert terrain is reflected in the Redguards’ resilience, including their natural resistance to poison and their impressive agility and strength. Many Redguards can be found traveling as adventurers, sailors, and mercenaries throughout Tamriel.\n\nPhysically, Redguards are distinguished by their tall, muscular builds, and skin tones that range from light brown to nearly black, often with a red tint. They typically have curly or wavy hair and are known for their love of tattoos and body piercings. Redguard society is deeply rooted in their martial traditions, particularly the legendary Sword-Singers, warriors capable of creating magical blades with their mastery of swordsmanship. This warrior culture, combined with a love for exploration and the sea, defines much of the Redguard identity.", + "display_name": "redguard", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Bosmer, commonly known as Wood Elves, are the native Elven people of Valenwood, a forested region in southwestern Tamriel. Unlike their Altmeri cousins, the Bosmer embrace a simpler, more natural lifestyle, living in harmony with their forested environment. Agile and nimble, they are renowned for their skill as archers and scouts, often regarded as the best bowmen in Tamriel. Many Bosmer are also adept at stealth and possess the unique ability to command animals or blend seamlessly into the forest. Despite their wild and free-spirited nature, they are also known for their quick wit and often succeed in scholarly or mercantile pursuits.\n\nBosmer society is shaped by the Green Pact, a unique belief system that prohibits harming Valenwood’s plant life, leading many Bosmer to live as strict carnivores, even practicing ritual cannibalism in accordance with their religious customs. Though less politically influential than other Elven races, the Bosmer are prolific and have spread across Tamriel, living two to three times as long as humans. Despite being perceived by some as unruly or naive, their deep connection to the wilderness and survival skills make them a formidable people.", + "display_name": "wood_elf", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Bosmer, commonly known as Wood Elves, are the native Elven people of Valenwood, a forested region in southwestern Tamriel. Unlike their Altmeri cousins, the Bosmer embrace a simpler, more natural lifestyle, living in harmony with their forested environment. Agile and nimble, they are renowned for their skill as archers and scouts, often regarded as the best bowmen in Tamriel. Many Bosmer are also adept at stealth and possess the unique ability to command animals or blend seamlessly into the forest. Despite their wild and free-spirited nature, they are also known for their quick wit and often succeed in scholarly or mercantile pursuits.\n\nBosmer society is shaped by the Green Pact, a unique belief system that prohibits harming Valenwood’s plant life, leading many Bosmer to live as strict carnivores, even practicing ritual cannibalism in accordance with their religious customs. Though less politically influential than other Elven races, the Bosmer are prolific and have spread across Tamriel, living two to three times as long as humans. Despite being perceived by some as unruly or naive, their deep connection to the wilderness and survival skills make them a formidable people.", + "display_name": "bosmer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dark Seducers, also known as Mazken, are Daedric beings aligned with the Daedric Prince Sheogorath. They are humanoid in appearance and are typically adorned in dark, serpentine-themed armor. Known for their enigmatic and alluring nature, Dark Seducers display a level of politeness and patience when dealing with mortals, which contrasts with the more prideful and rigid demeanor of their counterparts, the Golden Saints.", + "display_name": "dark_seducer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dremora, also known as the Kyn, are a Daedric race closely tied to the Daedric Prince of Destruction, Mehrunes Dagon. They are a warlike and highly intelligent race, often serving powerful Daedric Princes and other entities, including Molag Bal. The Dremora take immense pride in their structured hierarchies, seeing their rigid order and service to stronger beings as a testament to their strength of will. Unlike many Daedric races, they exhibit a remarkable sense of discipline and order, viewing their oaths as eternal, and adhering to them with uncompromising dedication.\n\nThough they look down upon other Daedra and mortals, Dremora are frequently summoned to Nirn through spells or rituals. In these instances, they serve as warriors, torturers, taskmasters, or even emissaries, guarding Daedric shrines or assisting powerful conjurers. Their disdain for mortals, combined with their adherence to hierarchical service, makes them formidable opponents and loyal servants to those who can command their respect. Dremora are known for their sharp memories and tendency to hold grudges, often referring to dishonorable actions as \"hornless,\" a great insult within their culture.", + "display_name": "dremora", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Golden Saints, also known as the Aureal, are a race of golden-skinned Daedra aligned with the Daedric Prince Sheogorath. They are known for their striking golden appearance, often donning avian-themed armor and wielding powerful weapons. Highly intelligent and formidable in combat, the Golden Saints are both proud and fiercely loyal to their master. However, their pride can make them arrogant, and they are known for being quick to anger and harsh in their judgments.", + "display_name": "golden_saint", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Golden Saints, also known as the Aureal, are a race of golden-skinned Daedra aligned with the Daedric Prince Sheogorath. They are known for their striking golden appearance, often donning avian-themed armor and wielding powerful weapons. Highly intelligent and formidable in combat, the Golden Saints are both proud and fiercely loyal to their master. However, their pride can make them arrogant, and they are known for being quick to anger and harsh in their judgments.", + "display_name": "gold_saint", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Snow Elves, also known as the Ancient Falmer or Ice Elves, were a proud and highly magical race of mer who once inhabited much of Skyrim and parts of High Rock. Known for their pale skin, white hair, and long lifespans, Snow Elves possessed a natural resistance to frost, allowing them to thrive in cold, remote regions. Their civilization was advanced, rivalling even the Altmer of the Summerset Isles. However, the Snow Elves were gradually displaced by the Nords during the late Merethic Era and early First Era.", + "display_name": "snow_elf", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dawn Era, also referred to as the Dawn Age, the Beginning Times, or the Chaos Times, represents a primordial period in the history of Tamriel characterized by a fluid and nonlinear understanding of time. During this era, the fundamental laws of nature were not yet established, allowing for a unique temporal experience where conflicts could simultaneously represent both ideological differences and tangible wars.\n\nThe narrative of the Dawn Era is often regarded as elusive due to the lack of fixed dates and the chaotic nature of events. Some historical occurrences, such as the Velothi dissident movement, are debated among scholars regarding their proper classification within this period or the subsequent Merethic Era. The complexities of this time have left a lasting impact on later eras, manifesting as phenomena known as Dragon Breaks, wherein remnants of the chaos from the Dawn Era can still be felt throughout history.", + "display_name": "dawn_era", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Merethic Era, also known as the Merethic Age, Mythic Age, Mythic Era, Mythic Times, and the Era of Myths, is a historical period marked by an abundance of myth and legend, with few established dates or timelines. This era is traditionally dated backward from Year Zero of the First Era, which corresponds to the founding of the Camoran Dynasty. The specific events and their chronological order during this time remain uncertain, and some occurrences may be inaccurately placed within the broader narrative.", + "display_name": "merethic_era", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The First Era of Tamriel, sometimes referred to as the First Age, is a significant period in the history of Nirn, characterized by the rise and fall of various kingdoms and the establishment of political structures that shaped subsequent eras. This era began with the founding of the Camoran Dynasty by King Eplear in 1E 0 and marked a time of conflict, expansion, and cultural development among the various races of Tamriel, particularly the Nords, Bretons, and Ayleids.\n\nDuring the First Era, notable events included the consolidation of Nordic power under High King Harald, who established the first Moot and became a pivotal figure in Nordic history. The era also saw the rise of the Alessian Empire following the Alessian Slave Rebellion, which overthrew the Ayleid rulers of Cyrodiil. The political landscape shifted with the expansion of the Nords into Morrowind and High Rock, culminating in a series of conflicts, including the War of the First Council between the Chimer and the Dwemer. The First Era concluded with the assassination of Emperor Reman III in 1E 2920, paving the way for the rise of the Akaviri Potentate and the beginning of the Second Era.", + "display_name": "1st_era", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The First Era of Tamriel, sometimes referred to as the First Age, is a significant period in the history of Nirn, characterized by the rise and fall of various kingdoms and the establishment of political structures that shaped subsequent eras. This era began with the founding of the Camoran Dynasty by King Eplear in 1E 0 and marked a time of conflict, expansion, and cultural development among the various races of Tamriel, particularly the Nords, Bretons, and Ayleids.\n\nDuring the First Era, notable events included the consolidation of Nordic power under High King Harald, who established the first Moot and became a pivotal figure in Nordic history. The era also saw the rise of the Alessian Empire following the Alessian Slave Rebellion, which overthrew the Ayleid rulers of Cyrodiil. The political landscape shifted with the expansion of the Nords into Morrowind and High Rock, culminating in a series of conflicts, including the War of the First Council between the Chimer and the Dwemer. The First Era concluded with the assassination of Emperor Reman III in 1E 2920, paving the way for the rise of the Akaviri Potentate and the beginning of the Second Era.", + "display_name": "first_era", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Second Era of Tamriel, often referred to as the Common Era (CE), is a period marked by significant political upheaval, the decline of the Second Empire, and the rise of powerful factions and alliances. The era began in 2E 1 with the official assumption of stewardship by Potentate Versidue-Shaie, following the fall of the Reman Dynasty. This period is characterized by the power struggles and fragmentation of Tamriel's kingdoms, alongside the emergence of notable organizations such as the Mages Guild and the Dark Brotherhood.\n\nThroughout the Second Era, various events shaped the political landscape, including the establishment of the Elsweyr Confederacy in 2E 309 and the founding of the Mages Guild in 2E 230. The assassination of Versidue-Shaie in 2E 324 marked a turning point, leading to the dissolution of the Second Empire and the fragmentation of Imperial authority.\n\nA notable conflict during this era was Varen's Rebellion in 2E 576, sparked by Emperor Leovic's controversial legalization of Daedra worship. Varen Aquilarios, the leader of the rebellion, eventually took the throne but was lost in the chaos of the Soulburst in 2E 578, an event that unleashed Daedric forces upon Nirn.\n\nThe Second Era also saw the formation of the Aldmeri Dominion, the Ebonheart Pact, and the Daggerfall Covenant, which clashed in the Three Banners War for control of the Ruby Throne. The era concluded with Tiber Septim's unification of Tamriel in 2E 896, marking the rise of the Third Empire and the end of the Second Era. This period set the stage for the events of the Third Era, establishing the complex political landscape and alliances that would continue to evolve in the following ages.", + "display_name": "2nd_era", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Second Era of Tamriel, often referred to as the Common Era (CE), is a period marked by significant political upheaval, the decline of the Second Empire, and the rise of powerful factions and alliances. The era began in 2E 1 with the official assumption of stewardship by Potentate Versidue-Shaie, following the fall of the Reman Dynasty. This period is characterized by the power struggles and fragmentation of Tamriel's kingdoms, alongside the emergence of notable organizations such as the Mages Guild and the Dark Brotherhood.\n\nThroughout the Second Era, various events shaped the political landscape, including the establishment of the Elsweyr Confederacy in 2E 309 and the founding of the Mages Guild in 2E 230. The assassination of Versidue-Shaie in 2E 324 marked a turning point, leading to the dissolution of the Second Empire and the fragmentation of Imperial authority.\n\nA notable conflict during this era was Varen's Rebellion in 2E 576, sparked by Emperor Leovic's controversial legalization of Daedra worship. Varen Aquilarios, the leader of the rebellion, eventually took the throne but was lost in the chaos of the Soulburst in 2E 578, an event that unleashed Daedric forces upon Nirn.\n\nThe Second Era also saw the formation of the Aldmeri Dominion, the Ebonheart Pact, and the Daggerfall Covenant, which clashed in the Three Banners War for control of the Ruby Throne. The era concluded with Tiber Septim's unification of Tamriel in 2E 896, marking the rise of the Third Empire and the end of the Second Era. This period set the stage for the events of the Third Era, establishing the complex political landscape and alliances that would continue to evolve in the following ages.", + "display_name": "second_era", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Third Era, often referred to as the Septim Era, marks a significant period in Tamriel's history, beginning in 3E 0 with the proclamation of the era by Emperor Tiber Septim following the unification of the provinces. This era is characterized by the reign of the Septim dynasty, whose emperors oversaw a time of both prosperity and turmoil. The political landscape was shaped by various conflicts, including the War of the Red Diamond and the rise of influential figures such as the Wolf Queen, Potema, and the historian Destri Melarg.\n\nThroughout the Third Era, notable events include the establishment and dissolution of knightly orders, like the Knights of the Nine, and the expansion of the Empire's influence across Tamriel. However, the era concludes with the devastating Oblivion Crisis in 3E 433, initiated by the secretive Mythic Dawn cult. The invasion of Daedric forces culminated in a fierce battle in the Imperial City, leading to the defeat of Mehrunes Dagon and the transformation of Martin Septim into the Avatar of Akatosh. This pivotal conflict not only marks the end of the Third Era but also sets the stage for the subsequent challenges faced by Tamriel.", + "display_name": "3rd_era", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Third Era, often referred to as the Septim Era, marks a significant period in Tamriel's history, beginning in 3E 0 with the proclamation of the era by Emperor Tiber Septim following the unification of the provinces. This era is characterized by the reign of the Septim dynasty, whose emperors oversaw a time of both prosperity and turmoil. The political landscape was shaped by various conflicts, including the War of the Red Diamond and the rise of influential figures such as the Wolf Queen, Potema, and the historian Destri Melarg.\n\nThroughout the Third Era, notable events include the establishment and dissolution of knightly orders, like the Knights of the Nine, and the expansion of the Empire's influence across Tamriel. However, the era concludes with the devastating Oblivion Crisis in 3E 433, initiated by the secretive Mythic Dawn cult. The invasion of Daedric forces culminated in a fierce battle in the Imperial City, leading to the defeat of Mehrunes Dagon and the transformation of Martin Septim into the Avatar of Akatosh. This pivotal conflict not only marks the end of the Third Era but also sets the stage for the subsequent challenges faced by Tamriel.", + "display_name": "third_era", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Fourth Era of Tamriel began in 4E 1, following the conclusion of the Oblivion Crisis, which saw the banishment of the Daedric Prince Mehrunes Dagon and the end of the Septim bloodline. In the absence of an emperor, the High Chancellor Ocato and the Elder Council struggled to maintain order as the provinces began to exploit the Empire's weakened state. Major events included the catastrophic eruption of Red Mountain in 4E 5, leading to the devastation of Vvardenfell and the subsequent invasion of Morrowind by Argonians, which significantly weakened House Telvanni and House Dres.\n\nAs the Fourth Era progressed, the Empire faced further decline and challenges, including the assassination of Potentate Ocato and the rise of the Aldmeri Dominion. This period was marked by conflict, such as the Great War in 4E 171, where Aldmeri forces invaded Imperial provinces, culminating in the sacking of the Imperial City in 4E 174. The war ended in 4E 175 with the White-Gold Concordat, which imposed harsh terms on the Empire and led to Hammerfell's secession. The era continued to be defined by unrest and rebellion, notably the rise of the Stormcloak Rebellion, igniting tensions between the Empire and the provinces, particularly Skyrim.", + "display_name": "4th_era", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Fourth Era of Tamriel began in 4E 1, following the conclusion of the Oblivion Crisis, which saw the banishment of the Daedric Prince Mehrunes Dagon and the end of the Septim bloodline. In the absence of an emperor, the High Chancellor Ocato and the Elder Council struggled to maintain order as the provinces began to exploit the Empire's weakened state. Major events included the catastrophic eruption of Red Mountain in 4E 5, leading to the devastation of Vvardenfell and the subsequent invasion of Morrowind by Argonians, which significantly weakened House Telvanni and House Dres.\n\nAs the Fourth Era progressed, the Empire faced further decline and challenges, including the assassination of Potentate Ocato and the rise of the Aldmeri Dominion. This period was marked by conflict, such as the Great War in 4E 171, where Aldmeri forces invaded Imperial provinces, culminating in the sacking of the Imperial City in 4E 174. The war ended in 4E 175 with the White-Gold Concordat, which imposed harsh terms on the Empire and led to Hammerfell's secession. The era continued to be defined by unrest and rebellion, notably the rise of the Stormcloak Rebellion, igniting tensions between the Empire and the provinces, particularly Skyrim.", + "display_name": "fourth_era", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonborn, known as Dovahkiin in the Dragon Language, is a mortal endowed with the blood and soul of a dragon by Akatosh, the Father of Dragons. This rare blessing grants individuals an extraordinary ability to harness the power of the thu'um, or dragon shouts, enabling them to absorb the knowledge of these powerful vocalizations directly from the souls of slain dragons. As a result, Dragonborn evoke both fear and animosity among dragons, since their unique ability to consume a dragon's soul disrupts the creature's immortality and shields them from necromantic influences.", + "display_name": "dragonborn", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Knights of the Nine was a knightly order founded in 3E 111 by Sir Amiel Lannus, a hero of the War of the Isle, with the aim of recovering the lost Relics of Pelinal Whitestrake, the Divine Crusader. Initially celebrated for their victories, including the recovery of the Cuirass, Gauntlets, Greaves, and Sword, the order became the most prestigious in Cyrodiil after the arrival of the noble Berich Vlindrel. However, their success led to personal pride and internal conflict. In 3E 121, the order fractured during the War of the Red Diamond when Sir Berich stole relics, leading to a deadly confrontation with Sir Caius. Many knights left to join the war, and the order gradually dissolved, with only a few knights continuing quests for the remaining relics.\n\nThe order's decline continued with individual knights meeting tragic fates. Sir Ralvas failed to claim the Mace of the Crusader, while Sir Juncan died shortly after discovering the Boots' location. Sir Torolf and Sir Gregory perished in the War, and Sir Henrik hid the Shield of the Crusader before dying in defense of it. Sir Casimir's arrogance led to his downfall when he killed a beggar in the Chapel of Stendarr, resulting in a curse and his eventual death. By 3E 131, the Knights of the Nine were officially disbanded, and Sir Berich became a political figure with resentment towards the order. In 3E 153, Sir Amiel embarked on a final quest but never returned. In 3E 433, the Hero of Kvatch restored the Knights by recovering the Relics and slaying Umaril the Unfeathered, regaining the order’s lost honor.", + "display_name": "knights_of_the_nine", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonborn, known as Dovahkiin in the Dragon Language, is a mortal endowed with the blood and soul of a dragon by Akatosh, the Father of Dragons. This rare blessing grants individuals an extraordinary ability to harness the power of the thu'um, or dragon shouts, enabling them to absorb the knowledge of these powerful vocalizations directly from the souls of slain dragons. As a result, Dragonborn evoke both fear and animosity among dragons, since their unique ability to consume a dragon's soul disrupts the creature's immortality and shields them from necromantic influences.", + "display_name": "dovahkiin", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Great War, also known as the First War Against the Empire by the Thalmor, was a significant conflict that occurred from 4E 171 to 175 between the Third Empire and the Third Aldmeri Dominion. The war began with a Thalmor invasion of Imperial territory, motivated by the desire to assert dominance following the destabilization of Summerset after the Oblivion Crisis. The Thalmor seized control of the Summerset Isles in 4E 22 and later annexed Valenwood and Elsweyr, further consolidating their power.\n\nThe conflict escalated after the Thalmor demanded tributes, territorial concessions, and the disbandment of the Blades, along with a ban on the worship of Talos. When the Emperor rejected these demands, the Thalmor initiated hostilities, leading to the capture of the Imperial City. Although the Empire managed to reclaim the city, the war ended with the signing of the White-Gold Concordat, a peace treaty that imposed harsh terms on the Empire, including the suppression of Talos worship and the cession of large portions of southern Hammerfell. This war marked a pivotal moment in Tamriel's history, highlighting the decline of Imperial power and the rise of the Aldmeri Dominion.", + "display_name": "great_war", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Oblivion Crisis, also known as the Great Anguish, was a catastrophic conflict between the Daedric hordes of Mehrunes Dagon and the people of Tamriel, beginning in the year 3E 433. The crisis was ignited by the assassination of Emperor Uriel Septim VII and his heirs, leading to the opening of Oblivion Gates across the continent, through which Daedra emerged in overwhelming numbers. These gates were facilitated by the Mythic Dawn, a fanatical cult devoted to Mehrunes Dagon, resulting in widespread devastation throughout various provinces. Key regions such as Skyrim faced brutal sieges, while Kvatch in Cyrodiil was completely destroyed. The Argonians of Black Marsh, called upon by the Hist, mounted a successful counter-offensive against the Daedra, forcing them to close their gates in that region.\n\nDespite the turmoil, the Empire struggled to maintain order, with significant forces withdrawn from provinces like Morrowind, leaving Cyrodiil largely defenseless. Amidst this chaos, Martin Septim, the last heir of the Septim bloodline, emerged as a pivotal figure. He joined forces with a hero of destiny to confront the Daedric threat. In a climactic sacrifice, Martin transformed into an Avatar of Akatosh, utilizing the power of the Amulet of Kings to banish Mehrunes Dagon back to Oblivion, thus ending the crisis and marking the conclusion of the Third Era.", + "display_name": "oblivion_crisis", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Warp in the West, also known as the Miracle of Peace or the Second Numidian Effect, was a significant event that transpired between the 9th and 11th of Frostfall in 3E 417. It was triggered by the death of King Lysandus of Daggerfall, leading to an upheaval in the regions of Hammerfell and High Rock. This phenomenon is often likened to a Dragon Break, reminiscent of the Middle Dawn from the First Era, although its effects were localized to the Iliac Bay.\n\nCentral to the Warp was the Totem of Tiber Septim, an ancient artifact that allowed its wielder to control the colossal war machine known as Numidium. An unknown hero, believed to be an agent of the Blades, acquired the Totem, igniting a fierce competition among various factions, including Sentinel, Wayrest, Daggerfall, and Orsinium, all vying for its power. Following a series of mysterious cataclysms, the political landscape of the Iliac Bay dramatically shifted from forty-four city-states to just four, all of which pledged loyalty to the Emperor. The Warp also had far-reaching consequences, with figures like Mannimarco utilizing the Totem for personal ascendance, while the Underking reclaimed his lost heart from Numidium, creating an expansive anti-magic zone around the area. Rumors persist that the Blades agent was ultimately killed in the effort to activate Numidium.", + "display_name": "warp_in_the_west", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Numidium, also referred to as Anumidium, the Brass God, or the Walking Star, is a colossal construct of Dwemer origin, designed by the renowned Tonal Architect, Lord Kagrenac. Created to serve as a new deity for the Dwemer, Numidium was intended to harness the Heart of Lorkhan, enabling the Dwemer to reclaim Resdayn from the Chimer and attain immortality. However, the Dwemer mysteriously vanished from Tamriel before they could activate the Brass God, a disappearance thought to be linked to their ambitious project.", + "display_name": "numidium", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dwemer, often referred to as Deep-Elves or Deep Folk, are a legendary race of Mer originating from Dwemereth, predominantly located in modern-day Morrowind. They are known for their remarkable technological advancements and elaborate underground cities, constructed near mountain ranges, including the Velothi Mountains and Red Mountain. The term \"Dwemer\" translates to \"the Deep\" or \"Deep-Counseled,\" reflecting their secretive nature. While they were regarded affectionately by the Giant races, who referred to them as \"Dwarves,\" the Dwemer's true nature was far more complex, characterized by their intelligence, reclusiveness, and often ruthless demeanor.\n\nHistorically, the origins of the Dwemer remain shrouded in mystery, with some legends suggesting a shared ancestry with the Chimer, while others assert their presence in the northeast of Tamriel predates the arrival of Veloth and his people. The Dwemer were known for their rigorous pursuit of knowledge in science, engineering, and the arcane, operating in clans that valued free thought. Their society, however, came to an abrupt end around 1E 700, leading to numerous theories about their disappearance, none of which have been definitively proven. As a result, the legacy of the Dwemer persists through their enigmatic ruins and the artifacts they left behind, which continue to captivate scholars and adventurers alike.", + "display_name": "dwemer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dwemer, often referred to as Deep-Elves or Deep Folk, are a legendary race of Mer originating from Dwemereth, predominantly located in modern-day Morrowind. They are known for their remarkable technological advancements and elaborate underground cities, constructed near mountain ranges, including the Velothi Mountains and Red Mountain. The term \"Dwemer\" translates to \"the Deep\" or \"Deep-Counseled,\" reflecting their secretive nature. While they were regarded affectionately by the Giant races, who referred to them as \"Dwarves,\" the Dwemer's true nature was far more complex, characterized by their intelligence, reclusiveness, and often ruthless demeanor.\n\nHistorically, the origins of the Dwemer remain shrouded in mystery, with some legends suggesting a shared ancestry with the Chimer, while others assert their presence in the northeast of Tamriel predates the arrival of Veloth and his people. The Dwemer were known for their rigorous pursuit of knowledge in science, engineering, and the arcane, operating in clans that valued free thought. Their society, however, came to an abrupt end around 1E 700, leading to numerous theories about their disappearance, none of which have been definitively proven. As a result, the legacy of the Dwemer persists through their enigmatic ruins and the artifacts they left behind, which continue to captivate scholars and adventurers alike.", + "display_name": "dwarves", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Camoran Dynasty, often referred to as the Camorian Empire, was a prominent aristocratic lineage that ruled Valenwood for much of its history, traditionally founded by King Eplear, whose reign marks Year Zero of the First Era. Eplear is celebrated for uniting the disparate and wild Bosmer tribes, an achievement considered one of the greatest military feats in Tamrielic history. The dynasty maintained power for centuries, successfully resisting the expansions of the Alessian Empire until Valenwood was ultimately conquered by the Second Empire in 1E 2714, following prolonged warfare and the devastating Thrassian Plague. Though the Camorans survived, their influence diminished as the Empire granted independence to lesser nobles within Valenwood.", + "display_name": "camoran_dynasty", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dragon Cult, also known as the Atmoran Dragon Cult or Cult of the Dragon Priests, originated as a sect within the animal worship traditions brought by Atmorans to Tamriel. Initially, this sect revered dragons as divine beings, particularly associating their worship with Akatosh, the chief deity among the Divines. As a result, dragons held a position of supremacy over mankind, with dragon priests serving as their powerful intermediaries, enforcing laws and maintaining order in society. Temples were erected to honor these dragons, many of which remain as draugr-infested ruins today.\n\nHowever, over time, the Dragon Cult became increasingly oppressive, establishing their capital at Bromjunaar in what is now Hjaalmarch and effectively enslaving the Nordic populace. This shift in demeanor is believed to have been influenced by Alduin, the First-Born of Akatosh, who sought to dominate Mundus. The ensuing discontent led to the ancient Dragon War, in which humans, aided by some dragons, eventually triumphed over Alduin and his cult. The dragon priests were overthrown, and the dragons were driven into hiding. Despite their fall, the Dragon Cult adapted, preserving the practice of constructing dragon mounds for the remains of fallen dragons, as they awaited the day of their return. By the First Era, the arrival of the priests of the Eight Divines further diminished the cult's influence, leading to its eventual extinction, with the last holdouts perishing in mass suicide at Forelhost in 1E 140.", + "display_name": "dragon_cult", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ayleids, also known as the Heartland High Elves, Wild Elves, or Saliache, were the first race to establish an empire in Tamriel, ruling over what is now modern-day Cyrodiil for countless generations. Their physical appearance was characterized by a thin, lean build, pointed ears, and angular facial features. They possessed a complexion that ranged from light tan to dark bronze, with eye colors varying from white to turquoise.\n\nFluent in Ayleidoon, their language, the Ayleids created the Imperial City and were responsible for constructing the White-Gold Tower, originally known as the \"Temple of the Ancestors,\" in emulation of the Adamantine Tower. The Ayleid Empire ultimately collapsed during the early First Era, following the Alessian Slave Rebellion. While legends suggest that remnants of the Ayleids may still exist in the wilds of Tamriel, documented sightings have been extremely rare, with none reported in the Third or Fourth Eras.", + "display_name": "ayleids", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Alessian Empire, established in 1E 243, was founded by former Nede slaves who revolted against their Ayleid oppressors during the Alessian Slave Rebellion. Centered in the Imperial City, the empire was marked by its founding figure, Queen Alessia, who received the Amulet of Kings from Akatosh, a gift that promised to protect Tamriel from the Daedra as long as the Dragonfires remained lit. Over its long history, the empire expanded to include parts of Cyrodiil, Skyrim, and High Rock, enduring for over two thousand years and heavily influenced by the religious teachings of the Alessian Order.\n\nThe empire's governance transitioned from an absolute monarchy to a theocratic rule as the power of the Alessian Order grew, especially after its doctrines were adopted in 1E 361. However, internal strife and the rising influence of the Colovian Estates ultimately led to the empire's decline. By 1E 2331, the Alessian Empire had fragmented, resulting in the dissolution of the Order and the establishment of a puppet government in Cyrodiil, setting the stage for the eventual rise of the Second Empire under Reman I in 1E 2703.", + "display_name": "alessian_empire", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Colovia, also known as the Colovian West or Old Colovia, constitutes the western half of the province of Cyrodiil. Renowned for its strong-willed and industrious inhabitants, Colovia has a rich martial tradition, with many citizens serving in the Imperial Legion. The region is characterized by its rugged landscapes, which include hilly terrains along the Gold Road, dense forests in the Great Forest, and expansive grasslands within the Imperial Reserve, a well-known area for hunting.\n\nThe Colovians are known for their self-sufficiency and craftsmanship, particularly in timber, which is highly sought after for construction and weaponry. While most Colovians reside in major cities such as Anvil, Chorrol, Kvatch, and Skingrad, the nobility often inhabit private estates near the Gold Coast. Despite shifts in territorial borders over the eras, Colovia remains a vital part of Cyrodiil, blending a fierce frontier spirit with a deep appreciation for their agricultural and natural resources.", + "display_name": "colovian", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Nedes, also referred to as the Nedic peoples, were a group of human races that inhabited much of Tamriel during the Merethic and First Eras. Their society included the proto-Cyrodilians, ancestors of the Bretons, and aboriginal populations in regions such as Hammerfell and possibly Morrowind. The Duraki society within the Nedes, particularly in Hammerfell, practiced the Cult of the Stars, which focused on the worship and study of celestial constellations and beings known as the Celestials.\n\nOver time, Nedic culture experienced significant decline as they assimilated into other cultures, ultimately leading to their near extinction. The Yokudan invasion of Hammerfell marked a pivotal moment in their history, resulting in the extermination of the Nedes in that region. The legacy of the Nedic peoples is reflected in the various cultures that evolved from their original societies across Tamriel.", + "display_name": "nedes", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Aldmer, meaning \"First Folk\" or \"Elder Folk,\" are the original inhabitants of Tamriel, having settled in Summerset Isle and much of the mainland during the Merethic Era. They are regarded as the first technologically advanced beings on Nirn, although this claim is sometimes contested. The Aldmer are said to have originated from a mythical continent known as Aldmeris, though this is widely debated among scholars. As they spread across Tamriel, they evolved into various types of elves, leading to the distinct groups known today, including the Altmer, Bosmer, Dwemer, Chimer, Ayleids, Snow Elves, Maormer, and Orcs.\n\nAlthough specific details of Aldmer culture remain elusive, they were known for their chivalric high culture and musical traditions. Notable figures from Aldmer history include High Lord Torinaan, who established the Summerset Isles, and Topal the Pilot, who explored much of Tamriel. The modern Altmer are believed to closely resemble their Aldmer ancestors and strive to emulate their ways, even going so far as to selectively breed for traits associated with the original Aldmer. The term \"Aldmeri\" is often used to refer collectively to all elves or to denote members of the Aldmeri community.", + "display_name": "aldmeri", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Green Pact is a strict code followed by the Bosmer of Valenwood, focused on preserving the forest, known as \"the Green.\" It prohibits harming plants, eating plant-based foods, and mandates that enemies be consumed, typically within three days of their death. Bosmer who adhere to the Pact are fiercely protective of Valenwood and will attack anyone who threatens it. However, the Pact allows for some exceptions, such as eating dairy, honey, and insects. The Pact also involves a unique form of magic that enables Bosmer to shape their settlements within the forest using ritualistic practices, and the Wild Hunt, a transformative ritual allowing the Bosmer to shift into powerful beasts, is a key feature of their culture.\n\nIn return for their protection of Valenwood, the Bosmer are granted patronage from Y'ffre, the god of the Green. The Pact is enforced by the Spinners of Y'ffre, spiritual leaders who hold great influence. The Bosmer are known for their devotion to the Pact, even when it involves great personal sacrifice, such as allowing loved ones to die rather than break the rules. The Green Pact has led to conflicts with outsiders and tensions with other races, particularly over the felling of trees. Despite their fierce reputation, the Bosmer are highly intelligent and hospitable to those who respect their beliefs. Breaking the Pact is considered a severe crime, often punishable by sacrifice to the Green itself.", + "display_name": "greenpact", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Chimer, meaning \"People of the North,\" were a group of Aldmeri tribes that rejected the customs of Summerset Isle and undertook a significant exodus to Morrowind. This migration was led by the prophet Veloth, who conveyed the teachings of Boethiah, the Prince of Plots, along with two other Daedra. Embracing these teachings, the Chimer developed a distinct culture known as the High Velothi culture, marked by dynamic ambition and a strong emphasis on ancestor worship.\n\nCharacteristically, the Chimer possessed a dull golden skin tone and bright yellow eyes. They were known as the Changed Ones due to a transformation that occurred later in their history, leading to their eventual identification as the Dunmer, or Dark Elves. Despite this transformation, some figures from the Tribunal, such as Almalexia and Vivec, are noted to have retained elements of their Chimer heritage in their appearances. The Chimer's legacy is intertwined with their cultural shifts and religious practices that significantly influenced the history of Morrowind.", + "display_name": "chimer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Dragon Break is a significant and complex phenomenon in which linear time is disrupted, becoming non-linear and challenging the understanding of mortals. The term \"Dragon\" references Akatosh, the Dragon God of Time, indicating the involvement of divine forces in these events. A Dragon Break represents a catastrophic disruption of the continuity of time and space, often occurring in response to events that render normal reality untenable. This chaos mirrors the primordial disorder of the Dawn Era and can vary in its impact on different regions of Tamriel.", + "display_name": "dragon_break", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "In 1E 2200, the Thrassian Plague emerged in Tamriel, unleashed by infected sea creatures along the coastlines. This devastating disease spread with alarming speed, resulting in the deaths of hundreds of thousands and leaving behind grotesque corpses. Symptoms included painful boils, brittle bones, seepage from the eyes and ears, and an insatiable thirst that drove the afflicted to madness. An Altmer Kinlord documented the Plague’s overwhelming nature, describing it as a force that permeated every living being and drop of water, leading to widespread despair.", + "display_name": "thrassian_plague", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Sload, also known as Slugmen or slug-folk, are a race of slug-like beastfolk hailing from the Coral Kingdoms of Thras, located southwest of Tamriel. These semi-aquatic, corpulent beings can grow to significant sizes and are primarily known for their necromantic culture.\n\nDescribed by the Khajiit explorer Ja'dasha as some of the most dangerous sea creatures, the Sload are often mentioned alongside krakens and sea serpents. Their notoriety escalated dramatically in 1E 2260 when they released the Thrassian Plague upon Tamriel, a catastrophic event that resulted in the deaths of over half the continent's population, further solidifying their reputation as a significant threat in the region.", + "display_name": "sload", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Three Banners War, also known as the Alliance War or the Great War, was a significant conflict that erupted across Tamriel during the Interregnum, marked by the fragmentation of the continent into three powerful alliances: the Daggerfall Covenant, the Ebonheart Pact, and the Aldmeri Dominion. This war arose from a series of crises and tensions in the years leading up to 2E 580, culminating in a struggle for control over the Imperial City and the Ruby Throne, as various factions sought to overthrow the corrupt Imperial regime.\n\nThe war primarily unfolded in Cyrodiil, which became the central battleground for these alliances. Each alliance engaged in fierce combat, causing widespread devastation to towns and cities, displacing countless civilians throughout the continent. Although the exact outcome of the war remains unclear, it resulted in significant shifts in power, ultimately leading to the dissolution of the three alliances and the Empire of Cyrodiil by the ninth century of the Second Era. Symbolically, the conflict is represented by a three-headed ouroboros, with each head denoting one of the alliances: an eagle for the Aldmeri Dominion, a lion for the Daggerfall Covenant, and a dragon for the Ebonheart Pact.", + "display_name": "three_banners_war", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Planemeld was a significant Daedric invasion of Tamriel that occurred in 2E 582 during the Interregnum. Orchestrated by the Daedric Prince Molag Bal, the invasion aimed to pull Nirn into his realm of Coldharbour using Dark Anchors—massive Daedric machines designed for interplanar manipulation. These Dark Anchors created rifts of darkness across the continent, directly linking Tamriel to Coldharbour.", + "display_name": "planemeld", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "In 2E 882, Dagoth Ur awoke from his slumber and unleashed the Ash Blight upon Morrowind, a severe weather phenomenon originating from Red Mountain. This volcanic event manifested as ash-heavy storms that carried a tainted, crimson dust, significantly affecting the health of those exposed to it. These blight storms became increasingly common and widespread, particularly by 3E 400, leading to a rise in soul sickness in areas near Red Mountain. House Redoran, struggling under the strain, mobilized volunteer forces to combat the encroaching effects of the Blight.\n\nBy 3E 427, the blight storms reached their peak intensity, contributing to the Vvardenfell Crisis. As the infection spread, boats from Vvardenfell were turned away from the mainland due to fears of contamination, isolating the island from the capital, Mournhold. Deformed beings known as \"corprus men\" emerged from the slopes of Red Mountain, bringing death and disease in their wake. The landscape became increasingly dangerous, as mortals and animals twisted by the Blight roamed the Ashlands, complicating travel and threatening the safety of those who ventured into the region.", + "display_name": "ash_blight", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Following the fall of the Septim Dynasty at the end of the Third Era, High Chancellor Ocato became Potentate and led the Empire for over a decade until his assassination. This event triggered a tumultuous period known as the Stormcrown Interregnum, characterized by intense power struggles over the Ruby Throne. The interregnum concluded in 4E 22 when Titus Mede, a Colovian warlord, seized the Imperial City from the unpopular Nibenese battlemage Thules the Gibbering. Supported by Hierem, an influential figure from an old Nibenese family, Mede was crowned Emperor, establishing the Mede Dynasty.\n\nDespite his efforts to restore order, the aftermath of the Oblivion Crisis had weakened Imperial control over its provinces, leading to widespread secession. Between 4E 1 and 4E 29, Black Marsh, Elsweyr, and Summerset Isle (renamed Alinor) broke away from the Empire. Morrowind faced devastation from the eruption of Red Mountain and an Argonian invasion, effectively ending its status as an Imperial province. The situation worsened under the reign of Titus Mede II, culminating in the Great War when the Aldmeri Dominion invaded in 4E 171. The conflict concluded in 4E 175 with the White-Gold Concordat, which forced Titus II to relinquish Hammerfell. By 4E 201, the Empire had shrunk to Cyrodiil, High Rock, and Skyrim, the latter of which was engulfed in two significant rebellions: the Stormcloak Rebellion and the Forsworn Rebellion.", + "display_name": "mede_dynasty", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Second Treaty of Stros M'Kai, signed in 4E 180, marked a significant turning point in the relationship between the Aldmeri Dominion and the Redguards of Hammerfell. This treaty concluded a decade-long conflict that arose from the Dominion's attempts to conquer Hammerfell, which had reached a stalemate. As part of the treaty's conditions, the Aldmeri Dominion was required to withdraw all military forces from the region, solidifying Hammerfell's status as an independent nation, albeit a diminished one.\n\nThe treaty's aftermath left lingering tensions between Hammerfell and the Empire. Many Redguards viewed Emperor Titus Mede II's earlier acceptance of the White-Gold Concordat, which had concluded the Great War, as a betrayal. This agreement had required the cession of significant territory in Hammerfell to the Dominion and ultimately led to the Empire renouncing Hammerfell as a province when it protested the treaty's terms. In response to these events, a clandestine organization known as the Remnants was formed in Hammerfell, tasked with ensuring that the Aldmeri Dominion adhered to the treaty and investigating any potential violations.", + "display_name": "second_treaty_of_stros_mkai", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "CHIM, known as the \"secret syllable of royalty,\" is an advanced state of being said to allow a person to defy all limitations. This concept, believed to be from the ancient Ehlnofex language, represents royalty, splendor, and starlight. Reaching CHIM involves a profound realization of the universe’s nature and one's place within it, leading to an understanding of the entire scope of existence while maintaining a firm grasp on individuality. Those who achieve CHIM are rumored to possess the ability to reshape the world, with some legends claiming that Tiber Septim used this power to transform Cyrodiil from an endless jungle into a temperate land.\n\nThe process of attaining CHIM is one of the six \"Walking Ways\" to divinity. Vivec, a revered figure in Dunmer history, wrote extensively on CHIM, attributing its discovery to Lorkhan, who allegedly used this knowledge to enlist the Aedra in creating Mundus. Though his attempt at CHIM failed, some suggest this failure served as a cautionary example for others. CHIM is often seen as a step toward the ultimate state known as Amaranth, a union with the Godhead that resembles lucid dreaming, where two beings are required to \"mantle\" the Godhead, experiencing a dreamlike creation beyond all constraints.", + "display_name": "chim", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Hist are ancient, sentient spore trees found primarily in the swamps of Black Marsh, revered by the Argonians as both their creators and spiritual guides. Often referred to as \"people of the root,\" Argonians share a profound bond with the Hist, symbolized through rituals involving the consumption of their sap, which grants visions and strengthens this connection. The Hist are believed to predate all mortal races, surviving the catastrophic wars of the Ehlnofey. Their collective consciousness spans across Nirn, allowing them to act as one entity, though rogue Hist, like the one in Lilmoth, occasionally sever this bond. The Hist are pivotal to Argonian life, nurturing their eggs during hatching rituals and guiding their culture through mystical communion, dreams, and visions. Marsh-born Argonians wield Hist-specific magic and are deeply tied to their roots, whereas those hatched outside Black Marsh, known as lukiul, often struggle to hear the Hist's voice.\n\nLegends surrounding the Hist highlight their role in major historical events, such as the Oblivion Crisis, where they rallied Argonians to invade Mehrunes Dagon's realms, leading to a decisive victory. The Hist are also known for their strange artifacts and manifestations, such as the Dreaming Tree, which preserved the souls of an Argonian tribe during an Ayleid invasion, and the Sleeping Tree in Skyrim, speculated to be a \"cousin\" of the Hist from Oblivion. Hist sap, a potent and mystical substance, is capable of altering living beings, enhancing combat abilities, and even creating dangerous bloodlust when consumed improperly. Despite their enigmatic nature, the Hist remain central to Argonian identity and culture, embodying the balance between their primal origins and spiritual purpose within the greater world of Tamriel.", + "display_name": "hist", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Morag Tong, or \"Foresters Guild\" in Dark Elvish, is an ancient guild of assassins based in Morrowind, operating under the patronage of the Daedric Prince Mephala. Founded in the First Era, the Morag Tong gained prominence as a means to settle disputes within Morrowind's Great Houses, preventing open warfare through sanctioned killings known as Honorable Writs of Execution. These writs allowed assassins to carry out legal executions with complete immunity, cementing their role in Dunmeri politics. Despite their lawful standing in Morrowind, their methods and allegiance to Mephala stirred controversy. Some legends suggest the guild originally worshipped Sithis and even influenced the formation of the Dark Brotherhood, a splinter group that rose to prominence outside of Morrowind. Over centuries, the Morag Tong oscillated between shadowy obscurity and political power, adapting to the changing tides of history.\n\nThe guild's practices reflect Mephala's principles of subtlety and precision, with their assassins employing shortblades, light armor, and archery as their tools of choice. Their deadly arsenal is meticulously crafted, blending functionality with intimidating designs that evoke chitinous creatures. The Morag Tong's influence waned during periods of upheaval, such as after the assassination of the Akaviri Potentate Versidue-Shaie, but they resurfaced in times of need, maintaining their ancient role as arbiters of Dunmeri vendettas. Despite their decline after the Red Year, the Morag Tong remains active, taking contracts on Solstheim and mainland Morrowind, and often clashing with their sworn enemies, the Dark Brotherhood. Bound by their strict code and enduring reverence for Mephala, the Morag Tong continues to embody the dark yet lawful traditions of Morrowind’s political and spiritual heritage.", + "display_name": "morag_tong", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Glenmoril Wyrd, also known as the Glenmoril Coven or Glenmoril Witches, is a loose network of female-dominated Bretonic covens scattered across Tamriel. Revering nature and often associating with Daedric Princes like Hircine, the Wyrd enforces laws of nature known only to them, frequently leaning into its darker aspects. Their members, while primarily human, sometimes include beastfolk like hagravens and lamias, who often hold leadership roles. These covens are known for their unique practices, such as curing lycanthropy and vampirism, and their ability to transform into animals, including wolves and ravens. Historically linked to the Druids of Galen, the Glenmoril Wyrd broke away due to differing philosophies, choosing to live as reclusive protectors of the wilds. They see themselves as part of nature itself, drawing their power from the land and maintaining a delicate balance between life and death.\n\nThe covens are spread across regions such as High Rock, Skyrim, and Bangkorai, each with distinct beliefs and practices. While many covens venerate Hircine, others align with Daedric Princes like Namira or Molag Bal, creating both alliances and rivalries with groups like the Reachmen. The Glenmoril Wyrd has been influential in major events throughout history, such as assisting in the Bloodmoon Prophecy on Solstheim and making a pact with the Companions of Whiterun that introduced lycanthropy into their ranks. Over time, some covens have dwindled, such as the hagraven-led Glenmoril witches in Falkreath Hold, who became the last of their kind in Skyrim by the Fourth Era. Despite their mysterious and often dark reputation, the Glenmoril Wyrd remains a significant force in Tamriel, embodying the raw, untamed power of nature and its enduring connection to the supernatural.", + "display_name": "glenmoril_witches", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "\"The Glenmoril Wyrd, also known as the Glenmoril Coven or Glenmoril Witches, is a loose network of female-dominated Bretonic covens scattered across Tamriel. Revering nature and often associating with Daedric Princes like Hircine, the Wyrd enforces laws of nature known only to them, frequently leaning into its darker aspects. Their members, while primarily human, sometimes include beastfolk like hagravens and lamias, who often hold leadership roles. These covens are known for their unique practices, such as curing lycanthropy and vampirism, and their ability to transform into animals, including wolves and ravens. Historically linked to the Druids of Galen, the Glenmoril Wyrd broke away due to differing philosophies, choosing to live as reclusive protectors of the wilds. They see themselves as part of nature itself, drawing their power from the land and maintaining a delicate balance between life and death.\n\nThe covens are spread across regions such as High Rock, Skyrim, and Bangkorai, each with distinct beliefs and practices. While many covens venerate Hircine, others align with Daedric Princes like Namira or Molag Bal, creating both alliances and rivalries with groups like the Reachmen. The Glenmoril Wyrd has been influential in major events throughout history, such as assisting in the Bloodmoon Prophecy on Solstheim and making a pact with the Companions of Whiterun that introduced lycanthropy into their ranks. Over time, some covens have dwindled, such as the hagraven-led Glenmoril witches in Falkreath Hold, who became the last of their kind in Skyrim by the Fourth Era. Despite their mysterious and often dark reputation, the Glenmoril Wyrd remains a significant force in Tamriel, embodying the raw, untamed power of nature and its enduring connection to the supernatural.\"", + "display_name": "witches", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Camonna Tong is a notorious Dunmer criminal syndicate rooted in Morrowind, infamous for its opposition to foreign influence and its ruthless criminal activities. As one of Tamriel's oldest criminal organizations, the Tong has operated since at least the Second Era, engaging in smuggling, extortion, slavery, and murder, often targeting outlanders to protect what they see as Dunmeri sovereignty. Members of the Tong take pride in their dark history, promoting a vision of Morrowind where outsiders are either enslaved or expelled. Despite their xenophobic ideology, the Tong occasionally collaborates with foreigners when profit outweighs prejudice. Throughout its history, the Camonna Tong has clashed with abolitionist groups, Great Houses, and rival factions like the Dark Brotherhood and Thieves Guild while maintaining its power in Morrowind’s criminal underworld.\n\nBy the Third Era, the Camonna Tong wielded significant influence through its alliance with House Hlaalu, operating openly in towns like Balmora, Hla Oad, and Vivec City. Under Orvas Dren, the Tong became intertwined with House Hlaalu's leadership, controlling councilors and influencing major decisions while secretly allying with the Sixth House during the Nerevarine prophecy. The Tong’s collaboration with corrupt Fighters Guild leaders further extended its reach, using the guild to eliminate competitors like the Imperial Thieves Guild. However, its dominance waned as the Nerevarine dismantled its power base, and its future after the Oblivion Crisis, Red Year, and Argonian Invasion remains uncertain. With the decline of House Hlaalu and the devastation of Morrowind, the Camonna Tong likely faced significant challenges, though its enduring legacy as a symbol of xenophobia and criminal enterprise in Dunmeri society remains indelible.", + "display_name": "camora_tong", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Black-Briars are a powerful and influential family faction based in Riften, Skyrim, with far-reaching control over the city's affairs and beyond. Led by the ruthless Maven Black-Briar, the family dominates local politics, industry, and the criminal underworld. Maven, the matriarch, is known for her cunning and willingness to use whatever means necessary to expand her wealth and influence, including leveraging the Thieves Guild, the Dark Brotherhood, and even the Thalmor. Through manipulation and bribery, she keeps Riften's guards and Jarl Laila Law-Giver in her pocket, ensuring the family’s dominance in the region. The family’s primary business, Black-Briar Meadery, is a significant source of their power, with aspirations of expanding its reach across Tamriel.\n\nThe Black-Briar family consists of four main members, each with their own ambitions and flaws. Hemming Black-Briar, Maven's loyal son, is pompous and ambitious, aiming to spread the family's meadery empire far and wide. Sibbi Black-Briar, the disgraced son, tarnishes the family name with his crimes, including murder and adultery, and currently resides in a luxurious prison cell in Mistveil Watch. Ingun Black-Briar, the eccentric daughter, distances herself from the family’s scheming, focusing instead on her passion for alchemy, fascinated by the delicate balance between life and death. Together, the Black-Briars represent a dark yet formidable force within Skyrim, their alliances and cunning ensuring their influence extends well beyond the walls of Riften.", + "display_name": "black_briar", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Blackwood Company was a notorious mercenary faction operating in Cyrodiil during the late Third Era, particularly around the Oblivion Crisis. Comprised mainly of Argonians and Khajiit, the Company originated from soldiers who had failed to reclaim Black Marsh for the Empire. They set up operations in Leyawiin and the surrounding Blackwood Forest, naming themselves after the region and Khajiiti lore of \"black charcoal warriors.\" Unlike the Fighters Guild, the Blackwood Company had no ethical constraints, taking on morally dubious contracts and accepting recruits without regard for criminal records or reputation. Their willingness to undercut competitors and employ reckless methods led to significant tensions with the Fighters Guild, culminating in a dangerous rivalry that nearly dismantled the Guild.\n\nThe Company’s rise to power was tied to their use of Hist sap, extracted from a sick Hist tree smuggled out of Black Marsh. This sap granted their members increased combat prowess but caused dangerous hallucinogenic bloodlust in non-Argonians. The Hero of Kvatch, infiltrating the Company on behalf of the Fighters Guild, uncovered this secret after being drugged and manipulated into slaughtering innocent townsfolk at Water’s Edge, believing them to be goblins. The Hero later destroyed the Hist tree and its extraction mechanism, killing the remaining Blackwood Company members in the process. With the Blackwood Company dismantled, the Fighters Guild was saved from collapse, and the Hero of Kvatch was named Guildmaster, marking the end of the Blackwood Company’s chaotic legacy.", + "display_name": "blackwood_company", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Mythic Dawn, a secretive and zealous cult, worshiped Mehrunes Dagon, the Daedric Prince of Destruction. Founded centuries before its rise to infamy, the cult became widely known for its pivotal role in the Oblivion Crisis of 3E 433. Under the leadership of the enigmatic and \"mad\" Mankar Camoran, the cult orchestrated the assassination of Emperor Uriel Septim VII and his heirs, collapsing the divine barrier known as the Dragonfires and enabling Dagon’s forces to invade Tamriel. With sleeper agents scattered throughout the Empire and their main shrine hidden near Lake Arrius, the cult thrived in secrecy. Their ultimate defeat came through the intervention of the Hero of Kvatch, who dismantled the cult, killed Camoran and his children, and banished Mehrunes Dagon from Nirn, thus ending the Third Era.\n\nIn the centuries following their downfall, remnants of the Mythic Dawn persisted in legend and occasional resurgence. By 4E 201, the cult saw a partial revival through individuals like Silus Vesuius, who established a museum in Dawnstar to preserve their history, and Vonos, a high priest drawn to an ancient Oblivion Gate in the Velothi Mountains.", + "display_name": "mythic_dawn", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Maormer, also known as Sea Elves or Pyandoneans, are an elusive race of Mer native to Pyandonea, a mist-shrouded island south of the Summerset Isles. Their unique appearance, ranging from pearlescent white to blue skin, with fin-like ears and occasionally gills, reflects their adaptation to a life at sea. Under the rule of their immortal leader King Orgnum, a deathless sorcerer said to grow younger with age, the Maormer have relentlessly sought to conquer the Summerset Isles, driven by their hatred for the Altmer. Their mastery of snake magic allows them to tame sea serpents as mounts and war beasts, and their storm mages wield the elements of water, wind, and lightning to devastating effect in naval warfare.\n\nDespite their isolation, the Maormer have clashed with Tamrielic nations throughout history, most notably in the War of the Isle in 3E 110, where their armada was defeated by the combined forces of the Psijic Order, Summerset's navy, and the Empire. Known for their clan-based society and a culture deeply tied to the sea, the Maormer are infamous for their acrobatic sailors, serpent-like warbeasts, and vicious storm rituals. Though their ambitions have waned in recent centuries, their mysterious homeland and enduring enmity towards the Altmer ensure that the Maormer remain a haunting presence on Tamriel’s seas.", + "display_name": "sea_elves", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Maormer, also known as Sea Elves or Pyandoneans, are an elusive race of Mer native to Pyandonea, a mist-shrouded island south of the Summerset Isles. Their unique appearance, ranging from pearlescent white to blue skin, with fin-like ears and occasionally gills, reflects their adaptation to a life at sea. Under the rule of their immortal leader King Orgnum, a deathless sorcerer said to grow younger with age, the Maormer have relentlessly sought to conquer the Summerset Isles, driven by their hatred for the Altmer. Their mastery of snake magic allows them to tame sea serpents as mounts and war beasts, and their storm mages wield the elements of water, wind, and lightning to devastating effect in naval warfare.\n\nDespite their isolation, the Maormer have clashed with Tamrielic nations throughout history, most notably in the War of the Isle in 3E 110, where their armada was defeated by the combined forces of the Psijic Order, Summerset's navy, and the Empire. Known for their clan-based society and a culture deeply tied to the sea, the Maormer are infamous for their acrobatic sailors, serpent-like warbeasts, and vicious storm rituals. Though their ambitions have waned in recent centuries, their mysterious homeland and enduring enmity towards the Altmer ensure that the Maormer remain a haunting presence on Tamriel’s seas.", + "display_name": "maormer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Falmer, also called Snow Ghosts or Betrayed, are blind, degenerated descendants of the ancient Snow Elves who now dwell in Skyrim's dark depths. Once a proud and prosperous race of Mer, the Snow Elves were driven underground after centuries of war with the invading Nords. Seeking refuge with the Dwemer, they were forced into servitude, fed toxic fungi that blinded them, and subjected to generations of cruelty that twisted them into the creatures now feared as Falmer. Pale, hunched, and goblin-like, they have become a symbol of tragic corruption, stalking intruders in the underground labyrinths of Dwemer ruins and beyond. Nordic folklore even attributes their disfigurement to Ysgramor cutting their noses off to distinguish them from other Elves.\n\nDespite their degeneration, Falmer have adapted to subterranean life with remarkable resilience. They cultivate fungi, fish the underground waterways, and breed the fearsome Chaurus, whose chitin they use to craft weapons, armor, and even dwellings. Their society is tribal and brutal, relying on raiding surface dwellers for slaves and resources, and they harbor an enduring hatred for all but their own. While they are often dismissed as monsters, some—including Knight-Paladin Gelebor, the last known uncorrupted Snow Elf—view them as tragic figures. Gelebor holds hope that they may one day reclaim their former identity, though the Falmer's increasing aggression suggests their future may be one of conquest rather than redemption.", + "display_name": "falmer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dragon War was a pivotal conflict in the Merethic Era, marking a violent upheaval between dragons and the human population of Skyrim. When Ysgramor and his people arrived in Tamriel, they brought with them a faith that worshipped animals, including the dragon, which held a central role as a god-king figure. Grand temples were constructed to honor the dragons, and dragon priests were granted power in exchange for ruling humanity on their behalf. However, this balance of power shifted as the dragon priests grew tyrannical, enslaving the population and demanding absolute obedience. When rebellion broke out, the dragons retaliated with devastating force, sparking the Dragon War.\n\nInitially, humanity suffered immense losses, but the tide shifted when certain dragons sided with men. It is said that from these traitorous dragons, men learned powerful magics, possibly with the intervention of Akatosh, allowing them to combat their former overlords. Over time, the dragon priests were overthrown, and dragons were hunted to near extinction. The remnants of the dragon cult preserved their belief in the dragons' eventual return, entombing fallen dragons in dragon mounds and maintaining their faith. The war not only shaped Skyrim's ancient history but left a legacy evident in its ruins, myths, and the fearsome reputation of dragons.", + "display_name": "dragon_wars", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Alessian Slave Rebellion was a landmark conflict in Tamrielic history, spanning from 1E 242 to 1E 243. Led by the Slave-Queen Alessia, the rebellion marked the liberation of the Nedic people from their Ayleid overlords, who had dominated Cyrodiil through a brutal regime of Daedra worship, enslavement, and ritual cruelty. With divine guidance from the Eight Divines and the aid of key allies like Pelinal Whitestrake and Morihaus, Alessia united human slaves and sympathetic Ayleid factions in a desperate uprising. The rebellion culminated in the Siege of White-Gold Tower, where Pelinal slew the demigod Umaril the Unfeathered but fell in battle. This victory dismantled the Ayleid Empire and laid the foundation for the Alessian Empire, ushering in the dominance of men over mer in Cyrodiil.\n\nThe rebellion not only freed the Nedic slaves but also began the Ayleids' gradual decline. Many Daedra-worshipping Ayleids fled to Valenwood and High Rock, while their remaining city-states either integrated into the new Empire as vassals or were annihilated by the Alessian forces. The rebellion’s aftermath saw Alessia crowned as the first Empress of Cyrodiil, the establishment of the Amulet of Kings to protect Mundus from Oblivion, and the rise of the Imperial Pantheon, blending elements of Nordic and Elven faiths. However, centuries later, the rise of the Alessian Order would erase much of the Ayleid presence from Cyrodiil, ensuring the once-mighty Heartland High Elves faded into obscurity. The rebellion marked a critical turning point in Tamriel’s history, redefining its religious, cultural, and political landscape.", + "display_name": "alessian_slave_rebellion", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "In 16 Accords of Madness, written by Shalidor recounts vivid tales of Sheogorath's chaotic encounters with other Daedric Princes, highlighting his unparalleled cunning and penchant for disorder. One such tale details a contest between Sheogorath and Hircine, where each was to groom a beast for battle. While Hircine bred a monstrous Daedroth imbued with lycanthropy, Sheogorath introduced a tiny, colorful bird. Despite its size, the bird's antics drove the Daedroth into a self-destructive frenzy, humiliating Hircine. Another account describes a wager between Sheogorath and Vaermina, testing their influence over a mortal bard, Darius Shano. Vaermina subjected the bard to horrific dreams that fueled his notoriety, while Sheogorath withdrew her presence, letting bitterness and madness consume him. Ultimately, Sheogorath claimed Darius's soul, demonstrating the intricate interplay of madness and creation.\n\nIn another tale, Sheogorath's manipulations involve the Orc champion Emmeg Gro-Kayra, who receives a cursed blade, Neb-Crescen, from a mysterious figure. The blade drives Emmeg to commit an unspeakable act, killing another Orc in a frenzied state. This crime draws Malacath, who, seeking vengeance, unknowingly slays his own son. Sheogorath appears to claim the fallen champion's severed head and weapon, leaving Malacath in despair. These stories exemplify Sheogorath's talent for sowing chaos, exposing the vulnerabilities of even the mightiest beings, and illustrating the destructive yet oddly creative nature of his madness.", + "display_name": "16_accords_of_madness", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Children's Anuad: The Anuad Paraphrased, written by an unknown author, is a simplified recounting of the Anuad creation myth, describing the origins of Nirn and the interplay of cosmic forces. The myth begins with Anu and Padomay, primordial brothers whose interactions in the Void created Nir, who gave birth to Creation after a tragic conflict. Anu and Padomay clashed over Nir, leading to her death and the shattering of the twelve worlds of Creation. In the aftermath, Anu reformed the remnants into Nirn, only to be mortally wounded by Padomay, and both were cast outside Time. Their mingled blood gave rise to the Aedra, while Padomay’s blood formed the Daedra, and Anu’s blood became the stars.\n\nThe myth continues with the descendants of Creation’s survivors, the Ehlnofey and Hist, who shaped the world through war and migration. The Old Ehlnofey became the ancestors of Mer, giving rise to elves like the Altmer, Bosmer, and Dunmer in Tamriel, while the Wandering Ehlnofey spread across other continents to become Men, such as the Nords and Redguards. The great Ehlnofey war reshaped Nirn, forming its continents and oceans, while the Hist were largely destroyed, surviving only in Black Marsh. The tale ends with the Nords returning to Tamriel under Ysgramor’s leadership, marking the end of the Mythic Era and the start of recorded history.", + "display_name": "a_children's_anuad", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Dance in Fire, written by Waughin Jarth, is a seven-chapter compilation chronicling the misadventures of Decumus Scotti, a middling clerk from the Imperial City, as he navigates the political chaos and wild dangers of Valenwood. Following a dismissal from his stable position at the Atrius Building Commission, Scotti receives an ill-fated invitation from a former colleague, Liodes Jurus, to exploit post-war rebuilding opportunities in Valenwood. Through a series of increasingly perilous events—including encounters with mercenaries, natural disasters, predatory wildlife, and betrayals—Scotti stumbles his way through the Bosmer province, eventually landing an audience with the enigmatic Silvenar, the spiritual leader of Valenwood. The text explores themes of survival, greed, cultural misunderstanding, and the absurdity of imperial ambitions in a foreign land.\n\nThe book, divided into seven parts, combines a satirical critique of imperial bureaucracy with an adventurous narrative rich in cultural detail. Scotti’s journey mirrors the chaotic nature of Valenwood itself, with its dense jungles, mystical traditions, and ongoing conflicts with neighboring territories like Elsweyr and Summerset Isle. Despite his lack of skill or heroism, Scotti’s inadvertent cunning allows him to secure contracts that benefit himself and the Imperial Building Commission, albeit at the cost of moral compromise. The story also highlights the absurdities of colonialism, as outsiders profit from a war-torn province’s misfortunes while failing to understand or respect its people. Ultimately, Scotti returns to the Imperial City, only to find that his success comes with eerie consequences, leaving readers to ponder the price of ambition and the dissonance between civilized ideals and the savage reality of conquest.", + "display_name": "a_dance_in_fire", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Game at Dinner, written by an anonymous spy, recounts the harrowing experience of a spy embedded in the court of Prince Helseth, the cunning and paranoid heir to the throne of Morrowind. Framed as a letter to a shadowy superior, the story revolves around a tense dinner where the Prince uses a macabre test of loyalty to identify disloyal advisors and spies. Guests discover that their cutlery, not the food, is poisoned, leaving them uncertain of their fate as they navigate the Prince's mind games. Themes of betrayal, paranoia, and the ruthlessness of political ambition permeate the narrative, painting Helseth as a figure who thrives on manipulation and fear.\n\nThe book stands alone as a vivid exploration of the deadly politics within Morrowind’s royal court. Through the spy's perspective, the reader experiences the psychological torment of Helseth's machinations, culminating in a gruesome and public display of power. The story underscores the precariousness of loyalty and the personal toll of espionage, leaving the spy pleading for release from their role. With its blend of suspense and moral ambiguity, the book highlights the dangerous interplay of trust and deception in the pursuit of power.", + "display_name": "a_game_at_dinner", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Hypothetical Treachery, written by Anthil Morvir, is a one-act play depicting the darkly humorous and treacherous dynamics between a group of adventurers seeking to escape Eldengrove with the prized Ebony Mail. The main characters—a High Elf battlemage (Malvasian), a Dark Elf battlemage (Inzoliah), a Cyrodiil healer (Dolcettus), and an Argonian barbarian (Schiavas)—succumb to paranoia and betrayal as they navigate the perilous forest. The play masterfully blends tension, irony, and wit, showcasing the characters’ moral ambiguities and self-serving motivations. The narrative crescendos with a double-cross where scheming battlemages eliminate one another in pursuit of power, ending with Inzoliah’s ruthless triumph.\n\nThematically, the play explores trust, ambition, and the seductive allure of power, highlighting how alliances crumble under greed and suspicion. It cleverly critiques human (and mer) nature through its satirical portrayal of manipulative and self-serving characters, ultimately leading to their downfall. The epilogue reinforces the futility of treachery, as even the victor’s success is marred by unforeseen consequences. This stand-alone work captivates with its layered dialogue, moral complexity, and biting humor, making it a quintessential commentary on betrayal in the guise of an adventurous tale.", + "display_name": "a_hypothetical_treachery", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Kiss, Sweet Mother, written by an anonymous author, serves as a chilling manual for invoking the Dark Brotherhood, Skyrim's infamous assassins' guild. The book describes the profane ritual of the Black Sacrament, a ceremony that calls upon the Night Mother to send an assassin to carry out a contracted killing. The instructions detail constructing an effigy from human remains, encircling it with candles, and stabbing it with a Nightshade-coated dagger while reciting a specific incantation. The text's macabre tone underscores the weight of summoning such dark forces and the blood-bound nature of the resulting contract.\n\nThematically, the book delves into the interplay of desperation, vengeance, and moral corruption. It reflects the lengths individuals might go to seek justice or retribution, blurring the lines between justice and cruelty. The narrative's emphasis on ritualistic precision and patience also underscores the consequences of entering a pact with shadowy, amoral entities.", + "display_name": "a_kiss_sweet_mother", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Minor Maze: Shalidor & Labyrinthian, written by an anonymous author, explores the history of Labyrinthian, a foreboding ruin with ties to Skyrim's ancient Dragon Cult and later, the Archmage Shalidor. Originally built as a temple and evolving into the city of Bromjunaar, it was once the seat of the Dragon Cult's power. Following the cult's collapse, the site lay abandoned until Shalidor repurposed it as a rigorous testing ground for aspiring archmages. Labyrinthian's mazes, designed to challenge both intellect and survival skills, embodied Shalidor's philosophy of blending academic and practical mastery in the magical arts.\n\nThematically, the book reflects on the legacy of power, ambition, and the relentless pursuit of knowledge. It contrasts the brutal rites of the Dragon Cult with the calculated trials of Shalidor, both of which left enduring marks on the ruins and their history. The site gained renewed fame in the Third Era as a pivotal location in the overthrow of Jagar Tharn during the Imperial Simulacrum. Though the labyrinth now lies deserted, its enigmatic past as a crucible for leadership and magical prowess continues to captivate the imagination of scholars and adventurers alike. This is a standalone work.", + "display_name": "a_minor_maze", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Tragedy in Black, written by an anonymous author, recounts a grim folk tale from the time of the Oblivion Crisis, illustrating the dangers of naivety and hubris in dealing with Daedric forces. The story follows a young, overconfident aspiring mage who summons a Dremora to create a magical gift for his mother. Despite his bravado and belief in his knowledge, the boy falls victim to the Dremora's cunning, resulting in his soul being trapped in a black soul gem—a cruel reminder of the perilous consequences of meddling with forces beyond his understanding.\n\nThematically, the tale explores hubris, innocence, and the inherent dangers of ambition unchecked by wisdom. It underscores the manipulative nature of Daedra and the harsh lessons of overconfidence. This standalone work serves as both a cautionary tale and a chilling narrative, warning against the recklessness of summoning Daedric entities without understanding their true nature.", + "display_name": "a_tragedy_in_black", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Locked Room, written by an unnamed thief, is a brief, practical guide to lockpicking, interwoven with the author’s candid self-assessment of their skills as a thief rather than a writer. The book shares straightforward tips for overcoming various lock designs, such as using bent or copper lockpicks for angled keyholes and heating locks to standardize spring tension. Despite its simplicity, it offers useful advice to aspiring thieves while cautioning them about potential dangers.\n\nThematically, the book highlights resourcefulness, adaptation, and the transfer of niche expertise through practical experience. This standalone work serves as both a how-to guide and an insight into the mind of a thief, illustrating the ingenuity required in their craft.", + "display_name": "advances_in_lockpicking", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An Accounting of the Scrolls, written by Quintus Nerevelus, Former Imperial Librarian, is a reflective exploration of the mysteries surrounding the Elder Scrolls and the author's personal journey into the Cult of the Ancestor Moth. The book begins with Nerevelus's attempt to catalog the Scrolls to prevent theft or loss, only to confront their unquantifiable nature. His efforts reveal contradictions and anomalies, culminating in a moment where the number of Scrolls in a repository seemingly changes before his eyes. This experience leads him to abandon his skepticism and join the Cult to seek deeper understanding.\n\nThematically, the book delves into the limits of human comprehension, the allure of forbidden knowledge, and the transition from intellectual curiosity to spiritual surrender. This standalone work portrays the Elder Scrolls as enigmatic artifacts that defy conventional logic, underscoring their connection to fate, prophecy, and metaphysical truths beyond mortal grasp.", + "display_name": "an_accounting_of_the_scrolls", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Adabal-a, written by Morihaus, is an ancient and revered text traditionally believed to be the memoirs of Morihaus, the winged-bull demigod and consort of Alessia, the Slave Queen. It recounts pivotal moments in early Cyrodiilic history, including Pelinal Whitestrake's final words before his death, Alessia's suffering and defiance during the Ayleid enslavement, and the origins of her many titles. The work paints a vivid picture of the brutal oppression under Ayleid rule and the resilience of Alessia as she rose to lead her people to freedom. Themes of divine intervention, mortal struggle, and the cost of liberation permeate the text, highlighting the blend of myth and history that defines Cyrodiilic lore.\n\nThis singular work also explores the mystical bond between Morihaus and Alessia, offering insight into her numerous names and their significance. Her transformation from a slave to the first Empress of Cyrodiil is framed as a divine journey, with Morihaus providing personal reflections on her courage and legacy. The Adabal-a serves as both a historical document and a spiritual narrative, emphasizing themes of sacrifice, justice, and the enduring power of human resolve in the face of tyranny.", + "display_name": "the_adabal-a", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Aedra and Daedra, written by an anonymous author, provides an accessible explanation of the fundamental differences between Aedra, Daedra, and their associations with gods and demons. The book clarifies that the terms \"Aedra\" and \"Daedra\" are precise in Elvish, with Aedra meaning \"ancestor\" and Daedra translating to \"not our ancestors.\" This distinction is particularly important to the Dunmer, reflecting their ideological and mythical divide. Aedra are tied to stasis, creation, and the mortal world, bound to the Earth Bones and vulnerable to death, as illustrated by the fate of Lorkhan. In contrast, Daedra embody change and transformation, lacking the ability to create but possessing the power to influence and alter reality, and they can only be banished, not killed.\n\nThematically, the book explores concepts of permanence versus adaptability, creation versus influence, and the nature of divine authority in Tamriel. It also touches on cultural perspectives, such as the Dunmer's unique interpretation of these entities. This single-volume work is an essential primer for understanding the cosmology of The Elder Scrolls universe and the roles of these powerful beings.", + "display_name": "aedra_and_daedra", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Aetherium Wars, written by Taron Dreth, explores the collapse of the Dwemer city-states in Skyrim, proposing a groundbreaking theory that their downfall was not solely due to external conquest but internal strife over Aetherium, a rare and powerful crystal. Dreth describes how the discovery of Aetherium led to an alliance of four Dwemer cities, including Arkngthamz, to oversee its study and the construction of the legendary Aetherium Forge. The artifacts produced by the Forge were said to possess immense power, but the alliance quickly disintegrated into a bitter civil war over control of the Forge. This infighting left the Dwemer vulnerable, paving the way for their defeat by King Gellir's forces. The Forge's location remains unknown, shrouded in mystery alongside the Dwemer's enigmatic fate.\n\nThematically, the book delves into the dangers of greed, ambition, and the pursuit of power, illustrating how the Dwemer's technological brilliance ultimately contributed to their ruin. It also touches on the enduring allure of ancient knowledge and the costs of innovation without unity. This work is a single volume and serves as a cautionary tale of the Dwemer's tragic legacy.", + "display_name": "the_aetherium_wars", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Story of Aevar Stone-Singer, written by an anonymous Skaal storyteller, recounts the myth of Aevar, a young and unassuming member of the Skaal, who restores the stolen Gifts of the All-Maker to his people. The tale follows Aevar's journey as he retrieves essential elements of life—water, earth, beasts, trees, the sun, and winds—from the clutches of the malevolent Greedy Man, an embodiment of the Adversary. Guided by the All-Maker, Aevar overcomes trials that test his courage, resourcefulness, and perseverance, ultimately restoring balance and harmony to the Skaal's world. His deeds highlight themes of humility, selflessness, and the power of determination in the face of overwhelming odds.\n\nThematically, the story emphasizes the Skaal’s belief in living in harmony with nature and the dangers of complacency. It also serves as a cautionary tale about greed and the disruption it causes. While framed as a singular tale, its cyclical nature reflects the Skaal's cultural focus on preserving the balance between humanity and the natural world. The story, ending on an ambiguous note, leaves the listener to ponder Aevar’s fate, reinforcing the myth’s moral teachings over its resolution.", + "display_name": "aevar_stone-singer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ahzidal's Descent, written by Halund Greycloak, tells the tragic tale of Ahzidal, a gifted enchanter whose relentless pursuit of knowledge and vengeance led to his downfall. Born in Saarthal, Ahzidal left his home to study under elven masters, only to return years later to find his city in ruins, destroyed by the elves. Consumed by grief and anger, he vowed revenge and devoted himself to mastering the magical arts, learning from the Dwemer, Ayleids, Falmer, and others. His skills proved instrumental in helping Ysgramor and the Companions reclaim Saarthal, fulfilling his oath of vengeance against the elves. However, his insatiable hunger for power drove him further, delving into forbidden knowledge of Dragon Priests and the realms of Oblivion, which ultimately consumed him.\n\nThematically, the story warns against the dangers of obsession and the cost of unchecked ambition. Ahzidal’s descent serves as a cautionary tale about losing oneself in the pursuit of perfection and vengeance. The legend, intertwined with historical and mythical elements, underscores the thin line between genius and madness. Though part of a single text, the account carries universal lessons, resonating with the recurring Skyrim theme of power’s corrupting influence.", + "display_name": "ahzidal's_descent", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ahzirr Traajijazeri, written by Anonymous, serves as the public manifesto of the Renrijra Krin, a Khajiit resistance group fighting against Imperial oppression and the Count of Leyawiin’s exploitation of their homeland. The text outlines the group’s philosophy and tactics, emphasizing their unorthodox approach to warfare and life. Themes of defiance, cultural identity, and survival are woven throughout. The Renrijra Krin advocate for bravery in the face of impossible odds, the necessity of strategic retreat, the importance of enjoying life despite struggle, and an unflinching willingness to kill and reclaim what was unjustly taken from them.\n\nThe book is structured around six core principles, expressed through Khajiiti proverbs, such as \"It Is Good to Be Brave\" and \"We Justly Take by Force,\" blending humor, pragmatism, and righteous anger. It reflects the Khajiiti ethos of resilience and cunning, prioritizing the reclamation of their ancestral lands while fostering a deep connection to their community. The manifesto emphasizes their role as both a political and military force, asserting that the fight for freedom is as much about preserving culture and identity as it is about winning battles. This single-volume work is a blend of wisdom, rebellion, and dark humor.", + "display_name": "ahzirr_traajijazeri", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alduin is Real, and He Ent Akatosh, written by Thromgar Iron-Head, is an impassioned, if poorly written, essay by a self-described \"prowd Nord\" seeking to clarify the distinction between Alduin, the World-Eater, and Akatosh, the Dragon God of Time. Thromgar's argument hinges on cultural and moral differences: Akatosh is revered as a protective and benevolent deity across Tamriel, while Alduin is an evil, flesh-and-blood dragon intent on destruction. The essay draws from Nordic oral traditions and Imperial legends, such as the tale of Martin Septim, to emphasize the vast divide between these two figures.\n\nThemes of cultural pride, skepticism toward Imperial perspectives, and the importance of oral tradition in preserving Nordic history are central to the work. Written in a single volume with intentional spelling errors reflecting Thromgar's lack of formal education, the text serves as both a declaration of Nordic identity and a critique of the Imperial conflation of their gods with other cultures' beliefs. Through humor and earnest conviction, it highlights the tension between Skyrim's fiercely independent traditions and Imperial influence.", + "display_name": "alduin_is_real", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Alduin_Akatosh Dichotomy, written by Alexandre Simon, High Priest of the Akatosh Chantry in Wayrest, explores the theological debate surrounding the relationship between Akatosh, the Great Dragon and Divine, and Alduin, the \"World-Eater\" of Nord legend. Simon examines the perspectives of different cultures—particularly the Altmer and the Nords—on these figures. While the Altmer identify Auri-El as Akatosh colored by their cultural beliefs, Nords differentiate Akatosh as a benevolent Divine from Alduin, whom they depict as a destructive dragon, a harbinger of doom and enemy of mankind. Simon concludes that Nord legends, shaped by oral tradition, have misrepresented Akatosh, transforming him into the monstrous Alduin due to misunderstandings over time.\n\nThemes of cultural interpretation, the reliability of oral history, and the pursuit of theological truth dominate the work. It is a single book that attempts to reconcile conflicting beliefs about these two figures, arguing that Alduin is a distorted version of Akatosh rather than a separate entity. Through his investigation, Simon underscores the enduring tension between faith, folklore, and scholarly inquiry.", + "display_name": "the_alduin_akatosh_dichotomy", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Amongst the Draugr, written by Bernadette Bantien of the College of Winterhold, explores the enigmatic nature of the draugr, their behaviors, and their ties to the ancient dragon cults. After months of cautious observation, Bantien discovers that the draugr exhibit complex, ritualistic behaviors centered around the worship of dragon priests. These undead warriors perform daily acts of homage and even transfer life energy to sustain their masters for eternity. Bantien theorizes that the draugr were originally buried as living humans, and over the centuries, their physical forms deteriorated into the grotesque undead creatures known today.\n\nThemes of religious devotion, the preservation of life force, and the interplay between life and undeath dominate the text. The work also emphasizes the intersection of scholarly curiosity and personal peril, as Bantien aims to uncover deeper truths about the draugr and their connection to Skyrim’s ancient history. This singular book captures a blend of academic inquiry and eerie folklore.", + "display_name": "amongst_the_draugr", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancestors and the Dunmer, written by an anonymous scholar, is a guide for outsiders seeking to understand the ancestor veneration and spirit magic practiced by the Dunmer of Morrowind. The text explores the sacred bond between the Dunmer and their ancestors, maintained through rituals at family shrines called Waiting Doors and fortified by ghost fences constructed from ancestral remains. These practices emphasize the importance of familial duty and the spiritual protection ancestors provide to their descendants. However, spirits bound against their will may become \"mad ghosts,\" used as guardians or manipulated for rituals. The book highlights how the Dunmer view Oblivion as interconnected with the mortal world, unlike the dualistic perspective of humans, and how foreign views often misinterpret ancestor worship as necromancy.\n\nThematically, the book delves into reverence, familial loyalty, and the clash of cultural perceptions, particularly regarding necromancy, which the Dunmer abhor outside their sacred traditions. The text also touches on the Empire’s policy of tolerance and the adaptation of ancestral practices in the wake of changes like the construction of the Great Ghostfence. This singular work offers insight into the spiritual foundations of Dunmer society and their intricate relationship with death and memory.", + "display_name": "ancestors_and_the_dunmer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Annals of the Dragonguard, written by Brother Annulus, chronicles the activities of the Dragonguard in the late First Era, particularly during the years 2800–2819. The records detail their role as protectors, dragon hunters, and builders of Alduin’s Wall, a monumental archive of dragon lore. Key events include their resistance to Emperor Kastav's unpopular policies, the siege of Sky Haven Temple during the Winterhold Rebellion, and their eventual recovery of prestige under Emperor Reman II. Highlights include the commencement and completion of Alduin’s Wall, a testament to the Dragonguard’s knowledge and legacy, as well as the consecration of the Blood Seal, an honor witnessed by the Dragonguard of Skyrim.\n\nThematically, the annals explore loyalty, duty, and the tension between political obedience and moral integrity. The Dragonguard's defiance of imperial orders, their strained relations with Skyrim’s populace, and their dedication to preserving dragon lore reveal a complex organization balancing its role as enforcers and scholars. This single volume captures a pivotal era in the Dragonguard’s history, showcasing their resilience and enduring contributions to Tamrielic culture and defense.", + "display_name": "annals_of_the_dragonguard", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Anticipations, written by Anonymous, provides an overview of the relationship between the Tribunal, the Daedra, and the ancient worship practices of the Dunmer. The text explains how the Chimer once worshiped Daedra but abandoned them after the apotheosis of the Tribunal (Almalexia, Vivec, and Sotha Sil), who became the Dunmer’s divine protectors. The Three Good Daedra—Boethiah, Azura, and Mephala—acknowledged the Tribunal's divinity and were integrated as \"Anticipations\" of the Tribunal. Meanwhile, the Rebel Daedra—Molag Bal, Malacath, Sheogorath, and Mehrunes Dagon—refused submission and became known as the Four Corners of the House of Troubles, symbolizing chaos and heresy.\n\nThematically, the book explores devotion, divine hierarchy, and the transformation of religious belief. It delves into the roles of the Three Good Daedra: Boethiah as the Anticipation of Almalexia, teaching enlightenment and victory over enemies; Mephala as the Anticipation of Vivec, guiding secretive and strategic survival; and Azura as the Anticipation of Sotha Sil, embodying magic, prophecy, and cultural identity. This single text illustrates the complex interplay between worship, power, and the evolution of Dunmer theology.", + "display_name": "the_anticipations", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Apprentice's Assistant, written by Aramril, provides practical advice for aspiring mages, delivered with a touch of arrogance and humor by Valenwood's most celebrated spellcaster. Framed as a guide to achieving fame and fortune through magical duels, the book outlines five key principles for success: understanding an opponent’s weaknesses, recognizing one’s own limitations, using wards judiciously, balancing spellcasting techniques, and strategically engaging with challenges. Aramril emphasizes both the technical and performative aspects of spellcasting, highlighting the importance of pleasing spectators to sustain a mage’s reputation and livelihood.\n\nThemes of self-awareness, strategy, and showmanship run throughout the text, underscoring the balance between practical survival skills and the theatrical nature of public dueling. Aramril’s tone combines playful egotism with genuine wisdom, making this single-volume work as much a reflection of the author’s personality as it is a manual for mastering the arcane arts.", + "display_name": "the_apprentice's_assistant", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Arcana Restored, written by Wapna Neustra, serves as a cryptic and esoteric manual for restoring magical artifacts to their full potency through a hazardous process involving a Mana Fountain. In this single-volume work, Neustra details the ritual’s steps, emphasizing the need for pure gold to prime the Mana Fountain, precise recitations from the manual to avoid catastrophic results, and swift healing after enduring the inevitable injuries caused by \"manacaust.\" The text is interspersed with vitriolic remarks against rival scholars, highlighting Neustra’s contentious personality and his claim to unmatched expertise.\n\nThe book’s themes revolve around the peril and precision of arcane restoration, the interplay between knowledge and risk, and the author's disdain for competing theories. While the instructions are presented with authority, their convoluted language and the author’s arrogance make the manual as much a critique of academic rivalries as it is a guide to arcane practice.", + "display_name": "arcana_restored", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Arcturian Heresy, written by The Underking, Ysmir Kingmaker, explores the early history of Tiber Septim and his rise as the first Emperor of Tamriel, presenting a controversial narrative that questions the accepted myths of the Empire. The text chronicles the Underking’s involvement with Tiber Septim, from aiding his military campaigns to enabling the unification of Tamriel through the construction of the Numidium. However, betrayal and manipulation underpin their relationship, culminating in the Underking’s death, Zurin Arctus’s treachery, and the ultimate ascension of Tiber Septim as Talos Stormcrown. Themes of divine ambition, mortal frailty, and the rewriting of history for political gain permeate the narrative, emphasizing the complexities of leadership and power.\n\nThis singular volume combines myth and history, casting doubt on official accounts of Tiber Septim’s reign, including his origins, military conquests, and the true nature of the Numidium. It delves into the interplay between mortals and gods, loyalty and betrayal, and the enduring enigma of Talos, whose legend remains central to the identity of the Empire.", + "display_name": "the_arcturian_heresy", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Argonian Account, written by Waughin Jarth, is a four-book compilation chronicling the misadventures of Decumus Scotti, a senior clerk for Lord Vanech's Building Commission, as he navigates the perilous and surreal landscape of Black Marsh. Sent to improve commerce in the region, Scotti faces the challenges of corrupt leadership, dangerous wildlife, cultural misunderstandings, and his own incompetence. From being paralyzed and swept into rivers to encountering cannibalistic creatures and bizarre Argonian tribes, Scotti's journey highlights the futility of imposing Imperial systems on Black Marsh, a land resistant to external control and thriving on its unique rhythms.\n\nThematically, the series explores the clash between Imperial ambition and local resilience, the absurdity of bureaucracy, and the unintended consequences of misguided interventions. Despite Scotti’s ineptitude and eventual embezzlement of funds, Black Marsh paradoxically benefits, returning to sustainable subsistence practices after years of exploitation. The books blend dark humor, political satire, and cultural critique, presenting Black Marsh as a place where external agendas crumble under the weight of its natural and social complexities.", + "display_name": "argonian_account", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Armorer's Challenge, written by Mymophonus, recounts a dramatic contest between two armorsmiths: the renowned Sirollus Saccus and the modest Argonian craftsman Hazadir. Set during the reign of Empress Katariah, the story begins with her proposal to use Hazadir's expertise to design armor suitable for the swampy terrain of Black Marsh, much to the disdain of the Imperial Council. To settle the matter, a competition is arranged: each armorer outfits a warrior-champion to duel, with the victor securing an Imperial commission. Despite Saccus’s technologically advanced forge and high-quality materials, Hazadir’s practical, swamp-optimized gear enables his champion to outwit and defeat his opponent.\n\nThe tale explores themes of practicality versus extravagance, the value of local knowledge, and the triumph of ingenuity over arrogance. Hazadir's victory underscores the importance of understanding environmental conditions and enemy tactics, while Saccus’s failure highlights the pitfalls of overconfidence. The story concludes with Hazadir gaining the commission and Saccus departing for Morrowind in pursuit of wisdom, marking a poignant contrast between their approaches to craftsmanship and adaptability. The book is a single work, blending action, strategy, and cultural insight into an engaging narrative.", + "display_name": "the_armorer's_challenge", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Art of War Magic, written by Zurin Arctus with commentary by other learned masters, explores the philosophy and strategy behind mastering warfare through a blend of arcane and mundane tactics. The book emphasizes the importance of preparation, balance, and psychological insight. Arctus advises that the most skilled battlemages ensure victory before battle through superior planning, understanding the enemy's vulnerabilities, and employing strategies that combine magic with practical considerations. It warns against relying solely on brute force or flashy tactics, highlighting that true mastery lies in achieving victory with minimal confrontation and preserving resources.\n\nThematically, the book delves into foresight, discipline, and the integration of intellect with power, asserting that the greatest victories come from unseen but decisive preparation. Through historical anecdotes and strategic principles, it teaches that the art of war magic is not about overwhelming destruction but achieving subtle and inevitable triumphs. This single-volume work combines wisdom, history, and commentary to guide aspiring battlemages in the higher art of conflict.", + "display_name": "the_art_of_war_magic", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Atlas of Dragons, 2E 373, written by Brother Mathnan, serves as a detailed glossary of dragons in Skyrim, documenting both deceased and living dragons from the Dragon War to the Second Era. The text categorizes dragons into those reportedly slain in ancient times, those definitively killed by the Dragonguard, and those known to still live. Notable entries include Paarthurnax, Alduin's lieutenant now residing under the Greybeards' protection, and Nahfahlaar, a dragon known for forming alliances with mortals to evade elimination. The book highlights the efforts of the Dragonguard and the ongoing challenges of confronting these powerful creatures.\n\nThematically, the work reflects the persistent struggle between mortals and dragons, emphasizing themes of perseverance, record-keeping, and the blend of myth and history. While it acknowledges the limitations of its records, the book offers a vital historical resource, preserving the legacies of legendary dragons and the heroes who battled them. This single-volume work is both an archival document and a testament to the enduring influence of dragons in Tamriel.", + "display_name": "atlas_of_Dragons", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Axe Man, written by X, recounts the chilling story of Minas Torik, a reserved member of the Morag Tong whose proficiency with an axe stemmed from his abusive upbringing. Torik’s childhood was defined by relentless servitude to his cruel uncle, performing tasks that demanded strength and repetitive motions. These grueling chores, such as ringing a heavy bell and sweeping with a long duster, unwittingly trained him for the physicality of wielding an axe. Torik’s transformation into an assassin began when his uncle, abandoning him without remorse, pushed Torik to retaliate. Using a Dwemer axe, Torik killed his uncle with the same motions he had perfected through years of servitude, marking the start of his lethal career.\n\nThematically, the book explores the interplay between oppression, survival, and the dark emergence of skill from trauma. It highlights how adversity and repetition can shape unexpected paths, even leading to mastery in violence. The story also reflects on the psychological toll of abuse and the cold detachment Torik adopts as he turns his hardships into tools for his survival and craft. This single-volume tale weaves elements of tragedy, irony, and transformation into the origins of a feared assassin.", + "display_name": "the_axe_man", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancient Tales of the Dwemer, Part XI: Azura and the Box, written by Marobar Sul, recounts a fable exploring Dwemer skepticism and divine power. The story follows Nchylbar, a wise Dwemer sage determined to test the limits of the gods' omniscience. Assisted by a reluctant Chimer priest named Athynic, Nchylbar summons the Daedric Prince Azura and presents her with a sealed wooden box, challenging her to identify its contents. Azura declares the box holds a red-petaled flower, but when it is opened, it is empty. Though Azura vanishes in fury, a single red petal later falls from Nchylbar’s robe. The sage, content with his newfound understanding, dies peacefully that night, leaving an enigmatic truth behind.\n\nThe tale's themes include the pursuit of knowledge, skepticism, and the complex relationship between mortals and divine beings. It reflects the Dwemer's characteristic irreverence for the gods, which may have contributed to their mysterious disappearance from Tamriel. The story also contrasts various cultural interpretations, with Dunmer and Aldmeri versions presenting different outcomes, from Azura’s wrath to an intricate magical illusion. This single book is part of a larger series that encapsulates the values and mysteries of the Dwemer civilization.", + "display_name": "azura_and_the_box", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Bear of Markarth, written by Arrianus Arius, Imperial Scholar, offers a critical examination of Ulfric Stormcloak's controversial conquest of the Reach during the Forsworn Uprising. From 4E 174 to 176, the Forsworn established a peaceful, independent kingdom while the Empire was preoccupied with the Great War. However, Ulfric’s militia stormed Markarth, claiming the city for Skyrim. The book condemns Ulfric’s actions during and after the siege, detailing his ruthless execution of Forsworn officials, brutal torture of civilians, and indiscriminate killings of Nords and Reachfolk who did not support him. This bloodshed forced the Empire to accept Ulfric's demands for free Talos worship, despite violating the White-Gold Concordat.\n\nThemes of the book include the complexities of war, the morality of rebellion, and the cost of political compromise. It portrays Ulfric as a polarizing figure, revered as a hero by some and reviled as a war criminal by others. This single-volume account highlights the tension between Nord nationalism and the broader obligations of the Empire, raising questions about the price of leadership and loyalty.", + "display_name": "the_bear_of_markarth", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Before the Ages of Man, written by Aicantar of Shimerene, is the first volume in the Timeline Series and chronicles the mythical and historical events of the Dawn and Merethic Eras, the ages before recorded history. The Dawn Era, characterized by the formation of the cosmos and the actions of gods, ends with the creation of the mortal plane and the departure of divine powers after Lorkhan’s heart was cast to form the Red Mountain. The Merethic Era, or “Era of the Elves,” follows, marked by the arrival of the Aldmeri to Tamriel, the construction of landmarks like the Adamantine and White-Gold Towers, and the cultural rise of the Chimer and Dwemer. It also recounts the migration of humans from Atmora and their clashes with Elves, such as the Night of Tears and Ysgramor’s return with his Five Hundred Companions.\n\nThemes include the interplay between divine intervention and mortal agency, the rise and decline of civilizations, and the cultural conflicts that shaped Tamriel’s history. Through its detailed recounting of mythical events, migrations, and the foundations of historical institutions, the book highlights how myth and history intertwine in Tamrielic tradition.", + "display_name": "before_the_ages_of_Man", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Before the Ages of Man, written by Aicantar of Shimerene, is the first volume in the Timeline Series and chronicles the mythical and historical events of the Dawn and Merethic Eras, the ages before recorded history. The Dawn Era, characterized by the formation of the cosmos and the actions of gods, ends with the creation of the mortal plane and the departure of divine powers after Lorkhan’s heart was cast to form the Red Mountain. The Merethic Era, or “Era of the Elves,” follows, marked by the arrival of the Aldmeri to Tamriel, the construction of landmarks like the Adamantine and White-Gold Towers, and the cultural rise of the Chimer and Dwemer. It also recounts the migration of humans from Atmora and their clashes with Elves, such as the Night of Tears and Ysgramor’s return with his Five Hundred Companions.\n\nThemes include the interplay between divine intervention and mortal agency, the rise and decline of civilizations, and the cultural conflicts that shaped Tamriel’s history. Through its detailed recounting of mythical events, migrations, and the foundations of historical institutions, the book highlights how myth and history intertwine in Tamrielic tradition.", + "display_name": "beggar_prince", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Biography of Queen Barenziah, written by Stern Gamboge, Imperial Scribe, is a trilogy chronicling the life of Queen Barenziah, from her royal birth in Mournhold to her reign in Wayrest, weaving her story into key historical events. The books detail her early displacement following Tiber Septim's conquest of Morrowind, her fosterage in Skyrim, and her adventurous escape from her adoptive family, which ultimately led to her reclaiming her throne as Queen of Mournhold. The narrative reveals her political acumen, her marriage to General Symmachus, her children, and her entanglement with the theft of the Staff of Chaos, culminating in her critical role in the events of The Elder Scrolls: Arena.\n\nThemes in the trilogy include resilience, duty, and the interplay of personal sacrifice and political ambition. Barenziah's story emphasizes her ability to navigate turbulent periods of betrayal, loss, and rebellion, shaping her into a figure revered for both her strength and wisdom. Her later years as a counselor to Emperor Uriel Septim VII and her eventual contentment in Wayrest reflect a lifetime of adaptation and perseverance, embodying the complexities of leadership and loyalty in a fractious Tamriel.", + "display_name": "biography_of_barenziah", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Biography of the Wolf Queen, written by Katar Eriphanes, chronicles the infamous life of Queen Potema, known as the Wolf Queen of Solitude. Born in 3E 67 to the Imperial family, Potema rose to power through her marriage to King Mantiarco of Solitude, leveraging her influence and intelligence to pursue an unrelenting ambition for dominance. The text details her manipulation of political alliances, involvement in civil war, and eventual rebellion against the Empire, culminating in the War of the Red Diamond. Potema's relentless pursuit of power saw her employing necromancy, summoning daedra, and creating a kingdom of death and madness until her final defeat at the siege of Solitude in 3E 137.\n\nThe themes of Biography of the Wolf Queen include unchecked ambition, political manipulation, and the consequences of hubris. Potema's story serves as a cautionary tale of how power, when sought without restraint or morality, can lead to ruin and infamy. Her legacy persists as a figure of terror and malevolence, with some rumors even suggesting her spirit continues to inspire chaos and treachery. This single-volume account paints a vivid picture of Potema's life, her downfall, and the enduring stain of her deeds on Tamriel's history.", + "display_name": "biography_of_the_wolf_queen", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Black Arrow, written by Gorgic Guine, tells a tale of revenge and mastery in archery, revolving around the tragic events surrounding the Duchess of Woda's estate and the enigmatic archer Missun Akin. Narrated by a former servant of the Duchess, the story unfolds in Valenwood, where the Duchess harbors resentment toward the nearby village of Moliva and its renowned archery school run by Hiomaste. When a mysterious fire devastates the village, killing the students and the narrator's friend Prolyssa, suspicions of the Duchess's involvement arise. What follows is a series of eerie and skillful acts of vengeance, culminating in Missun Akin's use of unparalleled archery to deliver poetic justice to the oppressive Duchess.\n\nThe story explores themes of revenge, justice, and the artistry of skill. It contrasts the oppressive arrogance of nobility with the resilience and ingenuity of the oppressed. Through the lens of a servant's perspective, the narrative highlights the quiet power of those dismissed by society and the extraordinary feats possible through precision and perseverance. This single-volume work resonates as both a thrilling tale of retribution and a celebration of the craftsmanship of archery.", + "display_name": "the_black_arrow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Black Arts On Trial, written by Hannibal Traven, Archmagister of the Mages Guild, chronicles the debate that led to the Mages Guild’s resolution on the practice of Necromancy. The book explores the arguments for and against officially sanctioning the study of the Black Arts within the Guild. Master Voth Karlyss argues that Necromancy is inherently dangerous and morally corrupting, advocating for its prohibition to maintain the Guild’s ethical integrity and public trust. In contrast, Master Ulliceta gra-Kogg defends the study as essential for understanding and combating its practitioners, emphasizing that censoring knowledge undermines the Guild's intellectual mission. Ultimately, Traven concludes that Necromancy’s risks outweigh its benefits, allowing limited and supervised study only for combating its misuse.\n\nThe themes of the book revolve around the ethical boundaries of scholarly inquiry, the balance between knowledge and responsibility, and the corruption of power. The text underscores the danger of delving too deeply into forbidden practices while acknowledging the need for vigilance against their misuse. This single-volume work provides an insightful look into the internal conflicts and moral dilemmas faced by the Mages Guild.", + "display_name": "the_black_arts_on_trial", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Boethiah's Glory, written by an unknown author, serves as a devotional text to the Daedric Prince Boethiah, emphasizing the deity's dominion over battle, treachery, and the inevitability of death. The text exhorts worshippers to embrace the Prince’s teachings by viewing combat and death as sacred acts, portraying Boethiah as a merciless figure wielding a long arm and swift blade to reward the worthy and destroy the unworthy.\n\nThemes of devotion, mortality, and the glorification of conflict pervade the text, highlighting Boethiah's demand for unwavering loyalty and strength in the face of life’s trials. The work, likely a single volume, encapsulates the essence of Boethiah’s philosophy, urging followers to seek their end with dignity and reverence for their Prince.", + "display_name": "boethiah's_glory", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Book of Daedra, written by an unknown author, offers a concise yet insightful overview of the Daedric Princes, detailing their spheres of influence and nature. The text serves as a reference for scholars and worshippers alike, highlighting the unique roles of each Prince, from Azura's dominion over twilight to Sheogorath's chaotic madness, and Mehrunes Dagon's focus on destruction and revolution. It explores the motivations and attributes of these powerful entities, emphasizing their complex relationships with mortals and their realms in Oblivion.\n\nKey themes include power, knowledge, chaos, and morality, as each Prince embodies distinct aspects of existence, often reflecting human ambition, fears, and desires. The book also discusses legendary Daedric artifacts, such as Scourge, a weapon blessed by Malacath to combat Daedra but cursed to banish any Daedra who attempts to wield it. This single-volume tome stands as both a theological and practical guide, underscoring the enigmatic and often perilous nature of Daedric interactions with the mortal world.", + "display_name": "the_book_of_daedra", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Book of the Dragonborn, written by Prior Emelene Madrine, explores the significance, history, and mysteries surrounding the Dragonborn, individuals blessed by Akatosh with \"dragon blood.\" The book traces the origins of the Dragonborn to the Covenant of Akatosh, when St. Alessia was granted divine power to light the Dragonfires and protect Tamriel from Oblivion. It examines how the title has historically been associated with the rulers of the Empire, from Alessia's line to Tiber Septim and his heirs. However, it emphasizes that the Dragonborn is not purely hereditary, but a divine mystery that transcends bloodlines. The text delves into the Akaviri's role in identifying and supporting Dragonborn, particularly Reman Cyrodiil, and raises questions about the nature of their powers and the possibility of multiple Dragonborn existing simultaneously.\n\nThemes include divine intervention, legitimacy of rule, and the mystical connection between mortals and dragons. The book also highlights the prophecy of the Last Dragonborn, linking it to cataclysmic events such as the fall of towers and the awakening of the World-Eater, Alduin. This singular volume serves as both a historical treatise and a speculative exploration of the prophecy, leaving readers with a sense of the unresolved nature of Akatosh's gift to mortals and its ultimate significance for Tamriel.", + "display_name": "the_book_of_the_dragonborn", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Breathing Water, written by Haliel Myrm, is a story blending magic, ambition, and fatal irony. It follows Tharien Winloth, a smuggler seeking the power to breathe underwater. He apprentices himself to the eccentric sorceress Seryne Relas, who teaches him the School of Alteration's lessons on breaking reality to achieve the impossible. Through practice and understanding, Tharien masters the spell of water breathing and sets off to retrieve treasure from the sunken ship Morodrung. Despite his magical skill, his obsession with the treasure blinds him to the spell's limitations, and he tragically drowns, clutching two unused potions of water breathing.\n\nThemes of the book include the pursuit of power, the dangers of overconfidence, and the impermanence of human defiance against nature. The narrative underscores the importance of understanding the boundaries of magic and life, emphasizing that desire alone cannot override reality. This standalone work is a cautionary tale for those who wield magic, highlighting the balance between ambition and prudence.", + "display_name": "breathing_water", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Brief History of the Empire, written by Stronach k'Thojj III, Imperial Historian, is a four-volume series chronicling the rise and reign of the Septim Dynasty. Beginning with Tiber Septim’s conquest of Tamriel and the establishment of the Third Era, the books explore the subsequent rulers, political struggles, and pivotal events that shaped the Empire. From the glory of Tiber’s rule to the War of the Red Diamond and the turmoil of assassinations, rebellions, and betrayals, the series provides a detailed account of the Empire’s fluctuating fortunes. Themes of power, unity, ambition, and the consequences of governance underlie the narrative, emphasizing the challenges of maintaining a vast empire.\n\nThe series concludes with the reign of Uriel Septim VII, detailing his imprisonment by the treacherous Battlemage Jagar Tharn and his subsequent liberation. Uriel VII’s efforts to restore Tamriel to its former glory reflect the ongoing struggle to uphold the vision of the Septim legacy. This comprehensive history offers a rich perspective on the political and cultural evolution of the Empire, blending triumph and tragedy in its portrayal of one of Tamriel’s most iconic dynasties.", + "display_name": "brief_history_of_the_empire", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Brothers of Darkness, written by Pellarne Assi, explores the enigmatic origins and evolution of the Dark Brotherhood, Tamriel's infamous guild of assassins. The text traces their roots to the Morag Tong, a Second Era religious cult devoted to the Daedric Prince Mephala. The Morag Tong's shift to the Dark Brotherhood marked a significant transformation, as they transitioned from ritualistic murder to a profit-driven organization serving rulers and wealthy patrons. This shift solidified their role as both a feared cult and a necessary, albeit unlawful, institution across Tamriel.\n\nThe book highlights key historical moments, such as the assassination of Potentate Versidue-Shaie in 2E 324 and the infamous massacre of Emperor-Potentate Savirien-Chorak and his heirs in 2E 430. Themes of secrecy, power, and moral ambiguity run throughout, emphasizing the Brotherhood's dual identity as both a cult and a business. Though officially condemned, their services remain widely tolerated, securing their position as a shadowy yet indispensable force in Tamriel's political landscape.", + "display_name": "brothers_of_darkness", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Buying Game, written by Adabael Timsar-Dadisun, provides practical advice on the art of bargaining, a common and expected practice across Tamriel. Emphasizing both strategy and etiquette, the book highlights the importance of politeness, cultural awareness, and the subtleties of negotiation. From initiating pleasantries with shopkeepers to gauging regional specialties and prejudices, it offers insights into navigating trade effectively. The author underscores the importance of recognizing different types of merchants and being prepared for their quirks, such as rural shopkeepers’ resourcefulness or city merchants’ shrewdness.\n\nThemes of cultural nuance, adaptability, and strategic thinking permeate the text. The book also cautions against hesitation, advising readers to seize opportunities for valuable purchases rather than risking regret. By treating trade as a \"game\" where both buyer and seller can benefit, the guide promotes a balanced and rewarding approach to commerce in Tamriel.", + "display_name": "the_buying_game", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Cabin in the Woods, Volume II, as Told By Mogen Son of Molag, recounts the harrowing tale of a soldier’s journey through a haunted forest. After encountering eerie sobbing on his first night, the soldier faces a ghostly woman wielding an axe, who appears at his campfire and later in an abandoned cabin where he seeks refuge. The story builds tension as the soldier confronts his fear, ultimately defeating the ghost with a scroll of firebolt. Though he escapes the forest, the tale closes on an ominous note, with the sound of sobbing echoing behind him.\n\nThemes of perseverance, courage in the face of supernatural terror, and the lingering nature of fear permeate the story. The tale captures the atmosphere of isolation, suspense, and the chilling realization that some forces cannot be entirely escaped. It is a standalone narrative and part of a larger tradition of eerie folklore within Skyrim’s world.", + "display_name": "the_cabin_in_the_woods", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Cake and the Diamond, written by Athyn Muendil, tells the clever tale of Abelle Chriditte, an alchemist who outwits a group of would-be thieves in Ald’ruhn. Posing as a wandering old woman in need of transportation funds, Abelle offers to create potions of invisibility in exchange for a stolen diamond. Through subtle trickery, including enchanting wine to compel honesty and manipulating the diamond dust on a knife, she vanishes with the valuable gem while leaving her would-be attackers duped. The story highlights themes of cunning, deception, and poetic justice.\n\nThis single-volume tale cleverly portrays the interplay of greed and wit, emphasizing the consequences of underestimating others, especially those with hidden skills. The humorous and ironic conclusion leaves the thieves humiliated while demonstrating Abelle’s mastery of both alchemy and manipulation.", + "display_name": "the_cake_and_the_diamond", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Complete Catalogue of Enchantments for Armor, written by Yvonne Bienne, provides an overview of known armor enchantments crafted by modern mages. While not exhaustive, the catalogue covers enchantments that enhance attributes like health, magicka, and stamina, as well as resistances to elements, poisons, and magic. These enchantments are practical for warriors, wizards, and adventurers, offering benefits tailored to their needs, such as increased resilience, spellcasting efficiency, or physical endurance.\n\nThe book also delves into rarer enchantments, such as waterbreathing, muffle, and those that accelerate recovery rates for health, magicka, or stamina. These enhancements reflect both the creativity and pragmatism of enchanters, catering to niche challenges like stealth, underwater exploration, or prolonged combat. Themes of adaptability, innovation, and the utility of magic underscore the text, making it a useful resource for those seeking to understand the practical applications of enchantments.", + "display_name": "catalogue_of_armor_enchantments", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Complete Catalogue of Enchantments for Weaponry, written by Yvonne Bienne, outlines a range of enchantments that can be applied to weapons, though it acknowledges its incompleteness due to ongoing discoveries in magical practices. Common enchantments include elemental effects—fire, frost, and lightning—that harm foes on contact. Others drain magicka or stamina, weakening enemies without being directly lethal. Fear enchantments, targeting either the living or undead, cause affected creatures to flee, while soul trap enchantments bind the souls of defeated enemies to soul gems, a practice viewed as ethical only when used on non-sentient creatures.\n\nRarer enchantments include absorption effects that transfer health, magicka, or stamina from the victim to the wielder, with health absorption having lethal potential. The rarest enchantments are banishment, which severs summoned or raised creatures from their caster, and paralyzation, a highly sought-after effect that temporarily immobilizes foes, making them vulnerable. The book emphasizes the strategic value of these enchantments while exploring their ethical and practical implications, highlighting themes of power, morality, and the evolving nature of magical knowledge.", + "display_name": "catalogue_of_weapon_enchantments", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cats of Skyrim, written by Aldetuile, offers an account of the few feline species that inhabit the cold wilderness of Skyrim. The author’s primary focus is on the indigenous sabrecat, a large and dangerous predator with distinct physical adaptations, such as sharp front teeth and varied fur patterns. The common sabrecat features reddish-brown fur, while its snowy counterpart has spotted white fur, likely for stalking prey in snow-covered regions. These creatures use a combination of biting, clawing, and pouncing in their attacks.\n\nThe book also briefly mentions Khajiit outcasts living in Skyrim, though they remain elusive and unhelpful to the author’s research. The text highlights the practical uses of sabrecat pelts and teeth, which can be salvaged for crafting and alchemical purposes, such as creating stamina-restoring potions. Themes of adaptation, survival, and utility underscore this brief treatise, as the author reflects on the harsh and unwelcoming environment that shapes both predator and prey in Skyrim.", + "display_name": "cats_of_skyrim", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chance's Folly, written by Zylmoc Golge, tells the cautionary tale of Minevah Iolos, a skilled thief known as \"Chance,\" whose ambition and betrayal lead to her demise. The story follows her partnership with Ulstyr Moresby, a seemingly mad Breton warrior, as they explore the Heran Ancestral Tomb in search of treasure. While Chance relies on her lockpicking prowess and cunning, Ulstyr’s cryptic ramblings and combat skills prove vital to their survival. However, as they delve deeper into the tomb, Chance grows suspicious of Ulstyr’s enigmatic knowledge, ultimately plotting to betray him once the treasure is found.\n\nThemes of greed, mistrust, and divine intervention are central to the narrative. Chance's overconfidence and disregard for her partner’s peculiar insights lead her to activate a trap that seals her inside the treasure room, leaving her to perish. Ulstyr returns two months later, fulfilling his eerie prophecy of \"two months and back\" to claim the gold. The tale underscores the folly of deceit and the unpredictable influence of the Daedric Prince Sheogorath, whose presence looms over the story’s events.", + "display_name": "chance's_folly", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Charwich-Koniinge Letters, written by Charwich and Koniinge, is a four-volume collection of letters chronicling the perilous search for the Daedric artifact Azura's Star. The correspondence reveals a tale of intrigue, deception, and betrayal as the two adventurers, Charwich and Koniinge, navigate a web of lies, Daedric forces, and deadly encounters. Their journey spans High Rock, Morrowind, and beyond, as they pursue Hadwaf Neithwyr, a conjurer who first summoned Azura to obtain the Star. Themes of trust, ambition, and the corrupting influence of power drive the narrative, ultimately culminating in Charwich's betrayal and Koniinge's vengeful quest.\n\nThe series reveals the dark consequences of greed and ambition. While Charwich manipulates Koniinge with fabricated stories of his death and a fictional Daedric adversary, Koniinge unravels the truth and exacts his revenge. The letters highlight the lengths individuals will go to attain power and the deadly price of betrayal, leaving a trail of destruction and lost lives in their wake. The story emphasizes the dangers of meddling with Daedric artifacts and the fragile nature of trust in a world rife with treachery.", + "display_name": "charwich-koniinge_letters", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Interviews With Tapestrists vol. 18: Cherim's Heart of Anequina, written by Livillus Perus, features an interview with the renowned Khajiiti tapestry artist Cherim, whose work has gained recognition across the Empire. Cherim, known for his intricate and detailed depictions of historical and mythical events, discusses his famous tapestry \"The Heart of Anequina,\" which portrays the turning point in the Five Year War between Elsweyr and Valenwood. The tapestry vividly illustrates the battle, focusing on the fear of Wood Elf archers and the distinctive traditional Khajiiti armor, contrasting it with the impracticality of the plate mail suggested by Nordic advisors. Cherim’s personal experiences as a soldier during the war, particularly at the Battle of Zelinin, influence his art, with his work showcasing both the practicality of Khajiiti armor and the tactical advantages it provided in battle.\n\nThemes of cultural identity, the intersection of art and warfare, and the challenges of blending tradition with foreign influence emerge throughout Cherim's reflections. The interview highlights Cherim’s meticulous attention to detail and his self-aware humor, evident in his inclusion of a self-portrait in the tapestry, poking fun at Khajiiti stereotypes. The book provides insight into how Cherim's experiences shape his art, as well as the practical aspects of combat in Elsweyr, emphasizing how these elements are translated into the artistic medium of tapestry.", + "display_name": "cherim's_heart", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Children of the Sky, written by Yvonne Bienne, explores the culture and mystical powers of the Nords, focusing particularly on their connection to the Thu'um, or Shout. The Nords view themselves as the \"children of the sky,\" believing that their land, Skyrim, was formed when the sky exhaled upon it. This powerful, spiritual connection to the sky is reflected in their unique ability to use their breath as a weapon and form of expression, most notably through the Thu'um. The strongest Nords, called \"Tongues,\" can harness this power to perform extraordinary feats, such as knocking down doors with a single shout or striking enemies with forceful roars. The book delves into the significance of speech in their culture, with the greatest warriors being those who can wield their voices to instill fear, command, or even travel vast distances.\n\nThe themes of power, identity, and elemental force permeate the text, illustrating the Nords’ deep connection to the elements of Skyrim, particularly wind, which is central to their nature. As the book progresses, it emphasizes the physical and mental toll of mastering the Thu'um, suggesting that the most powerful Nords must suppress their voices to avoid destruction. The narrative also touches on the Nords’ sense of alienation, as they view themselves as eternal outsiders, even when they conquer and rule others. The book reflects the harsh, elemental nature of Skyrim and its people, providing insight into the profound impact that the Thu'um has on their lives and culture.", + "display_name": "children_of_the_sky", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Children of the All-Maker, written by Tharstan of Solitude, provides an outsider's account of the Skaal people, a group of Nords living on the remote island of Solstheim. Tharstan is struck by their hospitality, simplicity, and unique worldview. The Skaal follow a faith centered around the All-Maker, a single deity who is the source of all life and creation. In their belief system, death is not an end but a transformation, with the spirit returning to the All-Maker to be reshaped and sent back into the world. This cycle of life and death is central to their respect for all living things, which is reflected in their sustainable lifestyle. They hunt only out of necessity, make minimal impact on their environment, and live in harmony with the land.\n\nThe book also touches on the challenges the Skaal face, particularly their dwindling numbers due to the harsh climate of Solstheim and the impact of ashfall from the eruption of Vvardenfell. Tharstan laments the loss of their way of life, foreseeing a future where the Skaal's customs may be forgotten. Despite these struggles, the Skaal's reverence for life and their austere yet harmonious existence remain poignant. The themes of respect for nature, simplicity, and the passage of life resonate throughout the text. Tharstan urges future generations to learn from and preserve the legacy of the Skaal before it fades into history.", + "display_name": "children_of_the_all-maker", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancient Tales of the Dwemer, Part VI: Chimarvamidium, written by Marobar Sul, is a fictional tale set during the conflict between the Chimer and the Dwemer, focusing on a powerful golem, Chimarvamidium, created by the Dwemer armorer Jnaggo. Initially designed as a powerful ally to the Chimer in their war against the Dwemer, the golem malfunctioned during an attack on the Dwemer camp, leading to disastrous results. The story culminates with a twist: the golem, which the Chimer thought was an unstoppable force, is revealed to be Jnaggo in disguise, using his skills in armor and magic to deceive the Chimer and help the Dwemer win the battle.\n\nThe themes of deception, the role of technology and magic in warfare, and the hubris of the Chimer are central to the story. The tale highlights the contrast between the Chimer's reliance on magical and physical power and the Dwemer's mastery of both craftsmanship and strategy. The story is part of a larger collection of fictional tales exploring the Dwemer, and it reflects their advanced understanding of technology and their mysterious disappearance. The narrative also alludes to the possible use of \"the Calling,\" a magical form of silent communication among the Dwemer, hinting at deeper mysteries of their race.", + "display_name": "chimarvamidium", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chronicles of Nchuleft, written by an Anonymous Altmer, is a historical account detailing the events surrounding the Dwemer Freehold Colony of Nchuleft, with a particular focus on the death of Lord Ihlendam. The story chronicles the political intrigue and rivalry between Lord Ihlendam and Councilor Bluthanch, who, after a heated disagreement at a Council Meet, were driven to violence. Although peace was briefly restored, Lord Ihlendam later accepted a summons from Bluthanch for a parley, only to be ambushed and killed by foul creatures, possibly summoned by Bluthanch. The text leaves the question of her involvement unanswered, adding an element of mystery to the tragedy.\n\nThe themes of political rivalry, betrayal, and the deadly consequences of unchecked ambition are central to the narrative. It also touches on the dangers of pride and the distrust that can arise among even the closest allies. The story reflects the tense and often violent nature of Dwemer politics, where power struggles lead to fatal outcomes. This work is part of a larger collection that provides insight into the history and internal conflicts of the Dwemer Freehold Colony.", + "display_name": "chronicles_of_nchuleft", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The City of Stone: A Sellsword's Guide to Markarth, written by Amanda Alleia, is a practical guide for mercenaries navigating the rugged and politically charged environment of Markarth. The city, with its vertical architecture and harsh geography, is known for its lucrative but dangerous work, primarily dealing with the Forsworn, a group frequently targeted for bounty hunting. Alleia offers a detailed account of the city’s layout, key locations such as Cidhna Mine and the Temple of Dibella, and the political dynamics at play, notably the powerful Silver-Blood family. Her advice includes maintaining a low profile, avoiding trouble with the distrustful locals, and seeking employment with the city’s wealthier patrons in Dryside.\n\nThemes of survival, opportunism, and the harsh realities of life as a mercenary are prevalent in this guide. It highlights the tensions within Markarth, from its deeply ingrained class divisions to its dangerous criminal elements. Alleia’s no-nonsense approach provides valuable insight into making a living in the unforgiving city, though she cautions readers to avoid unnecessary conflicts and to keep their focus on earning gold. This guide is part of a series that provides practical advice for sellswords across Skyrim.", + "display_name": "the_city_of_stone", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Code of Malacath: A Sellsword's Guide to the Orc Strongholds, written by Amanda Alleia, offers an insider's perspective on life within the Orc Strongholds and the unique customs of the Orcs, especially their warrior-focused culture. Orc Strongholds are self-sufficient, with every member trained from birth in combat and survival skills. They follow the Code of Malacath, an unwritten set of rules based on the teachings of their god, Malacath. The Code values strength and honor, with disputes resolved through physical confrontation and crimes addressed by the \"Blood Price\" system, where restitution is made through blood or goods. The guide emphasizes how Orcs live by their own laws, cultivating a culture of fierce independence and warrior pride.\n\nThe book explores themes of tradition, self-reliance, and the harsh realities of Orc life, offering valuable insights for mercenaries and outsiders considering working with or living among Orcs. While Orc Strongholds are insular and distrustful of outsiders, the guide highlights the respect that Orcs have for strength and direct action, making them formidable allies or enemies in battle. This book is part of a series that focuses on the lives and codes of various warrior cultures in Skyrim.", + "display_name": "the_code_of_malacath", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Darkest Darkness, written by an unknown author, provides a detailed examination of the various Daedra, the powerful and often dangerous entities from Oblivion. The book distinguishes between different types of Daedra, categorizing them as either \"Good\" or \"Bad\" based on their relationship with the Tribunal gods of Morrowind—Almalexia, Sotha Sil, and Vivec. The Good Daedra, including Boethiah, Azura, and Mephala, are depicted as less malevolent but still possess terrifying powers, while the Bad Daedra, such as Mehrunes Dagon, Malacath, and Sheogorath, are rebellious and more overtly hostile. The text also delves into the practice of summoning and binding Daedra, explaining the differences between short-term bindings by sorcerers and long-term bindings through pacts and rituals.\n\nThe themes of power, control, and the relationship between mortals and the supernatural are explored, emphasizing the dangerous nature of dealing with Daedra and the consequences of summoning or binding them. The book provides insight into how the Tribunal Temple categorizes these beings and interacts with them, offering a glimpse into the complex and often risky spiritual practices in Morrowind. It highlights the varied forms of Daedra, from the grotesque and ferocious to the more alluring but equally deadly. This book is part of a series that explores the broader lore of the Daedra and their influence on Tamriel.", + "display_name": "darkest_darkness", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bravil: Daughter of the Niben, written by Sathyr Longleat, offers a historical and cultural exploration of the city of Bravil in Cyrodiil, focusing on its fascinating past and the legendary statue of the Lucky Old Lady. The book delves into Bravil's Ayleid origins, where the city was once heavily populated by these ancient elves, and highlights the dramatic siege of the town during the Alessian Empire's expansion. The famed story of the city's founder, Teo Bravillius Tasus, is recounted, showcasing his strategic victories against the elusive Ayleids, who had mastered magical techniques such as levitation and underwater breathing to evade capture. Despite their eventual defeat, the legacy of the Ayleids is woven into the city's fabric, with few remnants visible today.\n\nThe book also touches on the legend of the Lucky Old Lady, a local figure whose kindness led her to be blessed with fortune after helping a cursed Imperial prince. The statue of the Lucky Old Lady has stood as a symbol of Bravil's luck and charm, attracting those seeking blessings from her. The themes of luck, generosity, and the blending of past and present highlight Bravil's unique identity as a city steeped in both history and folklore. This book serves as a single volume that encapsulates the rich narrative of Bravil, offering readers a glimpse into both its storied past and its vibrant present.", + "display_name": "daughter_of_the_niben", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "De Rerum Dirennis, written by Vorian Direnni, offers a reflective account of the Direnni clan's influential legacy, particularly focusing on the contributions of Vorian's ancestor, Asliel Direnni, in the development of alchemy. While the Direnni clan is known for its notable warriors and kings, Vorian emphasizes the significance of Asliel, an alchemist from humble beginnings, who transformed the practice of potion-making into an art and science. Asliel's expertise in herbology led him to create powerful remedies and poisons, including a legendary invisibility potion that saved his people from the barbarian Locvar tribe. Asliel’s discoveries in alchemy, notably his work with vampire dust and other rare ingredients, became foundational to the art of alchemy as it is known in Tamriel.\n\nThe book intertwines historical narrative with personal reflections on the Direnni clan’s cultural and scientific achievements. Themes of legacy, knowledge, and the evolution of magical practices resonate throughout the text, illustrating how one individual's innovations can shape the future. The book also touches on the broader impact of the Direnni clan's contributions, including Asliel’s eventual role as a Psijic, helping to establish the modern understanding of alchemy. This is a single volume that not only highlights a significant alchemical breakthrough but also serves as a tribute to the Direnni family's enduring influence on Tamriel's history.", + "display_name": "de_rerum_dirennis", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Death Blow of Abernanit, written by Anonymous, is an epic poem recounting the siege and eventual fall of Abernanit, a stronghold held by the Daedric-worshipper Dagoth Thras. The story centers around the legendary battle between the Temple Ordinators, led by the heroic Rangidil Ketil, and the forces of Dagoth Thras, who wields an impenetrable shield blessed by Mehrunes Dagon, a Daedric Prince. Despite the overwhelming strength of Dagoth Thras, Rangidil perseveres, ultimately delivering the \"death blow\" after realizing that his opponent's defense was not invincible. The tale showcases themes of divine favor, perseverance, and the cost of pride, highlighting the importance of wisdom in battle.\n\nGeocrates Varnus, who offers explanatory notes on the poem, clarifies the historical context, including the significance of the Tribunal and the divine blessings Rangidil received. The poem not only glorifies the victory over an oppressive tyrant but also emphasizes the role of divine intervention and the limits of power, even for the most formidable warriors. This poem is part of a larger collection of legends from Morrowind's history, and although it is singular in its telling, it holds a prominent place in the cultural narratives surrounding the Tribunal and their divine influence.", + "display_name": "death_blow_of_abernanit", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Death of a Wanderer, written by Anonymous, is a tale of an Argonian who meets a tragic end after venturing into a Draugr crypt. The story is told through the eyes of a companion, who recounts the final moments of the Argonian's life as he reflects on his failed attempt to use a mysterious claw he had found in an ancient crypt. The claw, believed to be a key for opening sealing doors in crypts, holds an important revelation about the Draugr: the symbols on the doors were not just locks, but a mechanism to ensure that only the living could enter, while the Draugr were trapped inside.\n\nThe themes of the story revolve around the dangers of seeking forbidden knowledge, the wisdom gained through hardship, and the ironies of life and death. The Argonian's struggle with the Draugr highlights the conflict between mortal ambition and the inevitability of death. His final insights, including the realization that the crypt doors were meant to keep the Draugr in, provide a somber reflection on the cost of discovery and the meaning of survival. The book is a single, standalone tale that offers a glimpse into the life and untold stories of an adventurous Argonian who, despite his survival instincts, ultimately succumbs to the dangers he sought to conquer.", + "display_name": "death_of_a_wanderer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Doors of Oblivion, written by Seif-ij Hidja, chronicles the journey of Morian Zenas, a renowned mage, as he ventures into the dangerous and mysterious realms of Oblivion. Zenas, accompanied by his apprentice, delves into various Daedric realms, including Ashpit, Coldharbour, Moonshadow, Quagmire, and Apocrypha, in search of knowledge and understanding. Despite the many wonders and horrors he encounters, Zenas becomes increasingly consumed by the forbidden knowledge he discovers, eventually losing his sanity and communication with his apprentice.\n\nThe themes of the book center around the pursuit of knowledge, the dangers of obsession, and the consequences of delving too deeply into realms that are beyond mortal comprehension. Zenas' journey highlights the tension between the quest for enlightenment and the inevitable descent into madness. The book also reflects on the mysteries of the Daedric Princes and their realms, as well as the cost of uncovering hidden truths. This is a single, standalone narrative, but it references various other realms and Daedric lore, adding depth to the broader world of Oblivion.", + "display_name": "the_doors_of_oblivion", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dragon Break Reexamined, written by Fal Droon, explores the historical error that led to the myth of the \"Dragon Break\" and its lasting impact on Tamrielic history. The concept of the Dragon Break, widely accepted as an event during Tiber Septim's rise to power, was based on a timeline error in the Encyclopedia Tamrielica due to misinterpretations of Alessian records. The book argues that this error, compounded by obsession with religious and eschatological themes, became entrenched in historical accounts, despite the absence of solid evidence for such an event. Droon's work reveals that the actual historical period of the Alessians was much shorter than traditionally believed, and the Dragon Break was a product of scholarly misunderstanding and the repetition of faulty traditions.\n\nThe themes of the book center around the fallibility of historical records, the dangers of relying on outdated or erroneous traditions, and the way myths can be perpetuated through scholarly inertia. Droon's examination highlights the importance of critically reexamining historical events and the influence of cultural and religious beliefs on the interpretation of history. This work is a single, standalone volume that challenges long-held beliefs in Tamrielic history, encouraging readers to question the foundations of widely accepted myths.", + "display_name": "the_dragon_break_reexamined", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Dream of Sovngarde, written by Skardan Free-Winter, recounts the vision experienced by a Nord soldier before the Battle of the Red Ring, offering him guidance and courage in the face of certain death. As he prepares for a desperate battle against the Aldmeri, Skardan prays to Talos and dreams of walking through mists towards Sovngarde, the hall of the honored dead. There, he meets the warrior Tsun, who grants him passage to the great hall, where Ysgramor, the father of Skyrim, shares wisdom about death and valor. Ysgramor tells him that a Nord is judged not by how they live, but by how they die, imparting a sense of pride and bravery in the face of imminent peril.\n\nThe themes of the story focus on bravery, honor, and the Nordic perspective on life and death, particularly the importance of dying with courage and strength. Skardan’s dream offers a reflection on what it means to be a true Nord, reinforcing the values of their culture—courage in battle, respect for ancestors, and a focus on how one faces death. The story is a single volume, conveying a poignant and personal message to those who may follow in Skardan’s footsteps, instilling them with the courage needed to face their own trials.", + "display_name": "a_dream_of_sovngarde", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Collected Essays on Dwemer History and Culture, written by Hasphat Antabolis, opens with a critical examination of Marobar Sul's Ancient Tales of the Dwemer, a popular but historically flawed account of the Dwemer people. Antabolis argues that despite being debunked by scholars since the reign of Katariah I, Sul's work has remained influential in popular culture, shaping the image of the Dwemer as eccentric, approachable figures rather than the mysterious and often unsettling race they truly were. Written by the pseudonymous Gor Felim, Sul’s tales were originally intended as light entertainment for the masses, presenting the Dwemer in a more familiar, humanized light that resonated with a human-centric worldview. Antabolis critiques this version, noting that it contributed to a lasting myth of the Dwemer that oversimplifies their complex and often unsettling history.\n\nThe themes of the essay revolve around the dangers of historical misrepresentation and the power of popular fiction to shape cultural perceptions. Antabolis contrasts Sul’s portrayal with the more foreboding and mysterious depictions of the Dwemer found in other cultures, such as the Redguard and Nord legends, which present the Dwemer as powerful and enigmatic. The essay reflects on the tension between these mythologized versions and the more complex, often unflattering realities of the Dwemer, urging a deeper and more nuanced understanding of this lost race. This chapter is part of a larger collection, which continues to explore the true history and culture of the Dwemer in detail.", + "display_name": "dwemer_history_and_culture", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwemer Inquiries: Their Architecture and Civilization, written by Thelwe Ghelein, is a scholarly exploration of the Dwemer people, their architectural practices, and the mysteries surrounding their disappearance. Ghelein's work is divided into three volumes, each delving deeper into various aspects of Dwemer culture. In Volume I, he examines the differing architectural styles found in Dwemer ruins across Tamriel, particularly comparing those in Vvardenfell with those in Skyrim and Hammerfell. Ghelein challenges the traditional belief that the Dwemer were most prolific in Vvardenfell, proposing instead that different clans, particularly after the Rourken Clan's departure, developed distinct building techniques and perhaps even hidden their strongholds more cleverly as time progressed.\n\nVolume II focuses on the Dwemer's intellectual pursuits, particularly their emphasis on logic and science over magic, contrasting their societal structure with that of other mer cultures. Ghelein suggests that Dwemer society elevated scholars, such as tonal architects, to a level akin to religious leaders, and explores their architectural \"Deep Venues\" and \"Arcanex,\" which served as centers for study. In Volume III, Ghelein shifts focus to the depth and complexity of Dwemer excavations, with particular attention given to the \"geocline,\" a marker indicating where significant city structures began. He speculates on the meaning of enigmatic terms like \"Fal'Zhardum Din,\" found in the deepest parts of Dwemer ruins, hinting at an elusive secret that may lie buried in Dwemer history. The work is a comprehensive study of the Dwemer, combining archaeological analysis with architectural and cultural insights.", + "display_name": "dwemer_inquiries", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Effects of the Elder Scrolls, written by Justinius Poluhnius, is a scholarly examination of the profound and often dangerous effects that the Elder Scrolls have on their readers. Poluhnius categorizes these effects into four distinct groups, depending on the reader's level of knowledge and mental fortitude. The first group, The Naifs, consists of those who lack sufficient understanding to interpret the scrolls, leaving them unaffected but also unable to glean any knowledge. The second group, The Unguarded Intellects, experiences the greatest danger, suffering total blindness upon reading, though they gain a fragment of forbidden knowledge. The third group, Mediated Understanding, includes the trained initiates of the Cult of the Ancestor Moth, who, through years of mental discipline, can read the scrolls with minimal blindness and gain tempered insights. Finally, Illuminated Understanding describes the advanced monks who experience progressive blindness but gain an increasingly profound comprehension of the scrolls' revelations, culminating in a final, irreversible reading.\n\nThe theme of the book revolves around the perils and mysteries of seeking forbidden knowledge and the costs associated with understanding the Elder Scrolls. It highlights the discipline required to safely access such knowledge and the toll it takes on both the mind and body. The text serves as both a cautionary tale and a scholarly guide for those seeking to engage with the scrolls, offering insights into their powerful effects and the philosophy behind the Cult of the Ancestor Moth's teachings.", + "display_name": "effects_of_the_elder_scrolls", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fall of the Snow Prince, written by Lokheim, is a poignant account of the Battle of the Moesring, where the Nords faced a devastating foe in the form of the Snow Prince, an elf whose arrival inspired both awe and terror. The battle is set against the backdrop of a final stand between the Nords and the Elves on Solstheim, with the Snow Prince leading the Elven forces. As the battle rages, the Snow Prince’s formidable power and eerie presence on the battlefield turn the tide in favor of the Elves, and many of the Nords' bravest warriors fall to his spear. However, in a twist of fate, it is the young daughter of a slain warrior, Finna, who avenges her mother by throwing a sword that fatally strikes the Snow Prince, causing his death and breaking the spirit of the Elven forces.\n\nThe themes of the story revolve around honor, fate, and the tragic inevitability of death, as even the mightiest warrior can be felled by an unexpected force. The Snow Prince, despite being an enemy, is respected for his skill and bravery, and his death marks the end of an era. The Nords' reverence for his valor is reflected in their burial practices, where the Snow Prince is honored despite being their foe. This tale is both a reflection on the brutal nature of warfare and a meditation on the respect that warriors, regardless of their allegiance, can earn through their deeds. The book captures the raw emotions of the battle and the reverence shown to an adversary who, in death, transcends his role as an enemy.", + "display_name": "fall_of_the_snow_prince", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Father of the Niben, written by Florin Jaliil, is a translation of the fragmented journal of Topal the Pilot, an Aldmeri explorer from the Merethic Era. The account chronicles Topal’s journey, during which he sails across Tamriel with a crew, tasked with finding a way back to Old Ehlnofey and discovering new lands. Throughout his voyages, Topal encounters many wonders, including strange islands, dangerous creatures, and various tribes. However, his journey is marred by miscalculations, mistaken turns, and a failure to reach his intended destination, Firsthold. The account is fragmented, leaving readers with more questions than answers, particularly regarding Topal’s encounters with ancient Khajiit, Orcs, and other civilizations, which would later become extinct or forgotten.\n\nThe themes of the story revolve around exploration, failure, and the uncertainty of discovery. Topal’s journey is one of ambition and perseverance, yet ultimately, he fails to achieve his initial goals, though he leaves behind maps that contribute significantly to later understanding of Tamriel’s geography. His encounters with different cultures highlight the diversity of Tamriel, while his miscalculations serve as a reminder of the unpredictable nature of exploration. This text, based on only four surviving fragments, offers a rare glimpse into a world long gone, revealing the tragic beauty of lost knowledge and unfulfilled quests.", + "display_name": "father_of_the_niben", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Feyfolken, written by Waughin Jarth, tells the story of Thaurbad Hulzik, a scribe suffering from the Crimson Plague and his encounters with a cursed quill enchanted by a Daedric spirit called Feyfolken. Set during the Second Era, Thaurbad lives a solitary life, communicating only through written words after losing his voice. His discovery of the magical Feyfolken quill leads him to great artistic and professional success, as it brings his mundane writings to life with divine beauty. However, the quill's magic takes a sinister turn, gradually driving Thaurbad to madness and ultimately leading to his tragic death. The story delves into themes of creativity, the destructive nature of power, and the fine line between genius and madness.\n\nThe narrative explores the complexities of magical influence and the moral consequences of using enchanted tools, particularly in the context of Thaurbad’s transformation from a humble scribe to a cursed artist. His story is a tragic commentary on the dangers of seeking perfection through unnatural means and the corrupting force of magical power. This tale spans multiple volumes, offering a detailed examination of the interaction between Thaurbad and the Feyfolken quill, and the gradual unraveling of his life due to its influence.", + "display_name": "feyfolken", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fire and Darkness: The Brotherhoods of Death, written by Ynir Gorming, is a historical examination of the Morag Tong, an ancient assassin guild of Morrowind, and its eventual split into the infamous Dark Brotherhood. The text delves into the origins of the Morag Tong, its worship of Sithis and Mephala, and its role in Morrowind's political landscape. The book highlights key events, such as the Morag Tong's assassination of Emperor Reman and its subsequent outlawing, leading to the formation of the Dark Brotherhood, a secular organization that continued the tradition of assassination for profit, but diverged from the Tong's religious ties. Themes of secrecy, betrayal, and the shifting nature of power are explored, emphasizing the moral and philosophical divisions between the two guilds.\n\nThe book also touches upon the enduring conflict between the Morag Tong and the Dark Brotherhood, rooted in religious schism, with the Dark Brotherhood continuing to revere Mephala, despite the Morag Tong’s eventual abandonment of her worship in favor of Vivec. The text presents a detailed, often grim, exploration of the assassination guilds and their influence on Tamriel's history. This work is part of a larger collection that includes The Sage and The Final Lesson, where the same characters are explored further. The book provides insights into the darker aspects of Tamriel's past, emphasizing how the two guilds' violent legacy continues to shape the world.", + "display_name": "fire_and_darkness", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Firmament, written by Ffoulke, is a detailed exploration of the constellations and their meanings in the night sky of Tamriel, focusing on their connection to the birthsigns and their influence over individuals. The book categorizes the stars into thirteen constellations, three of which are major and known as the Guardians: The Warrior, The Mage, and The Thief. These Guardians protect their respective Charges, and each has a specific Season when it holds power. The work delves into the characteristics of each constellation and its associated birthsigns, explaining their roles and how they affect those born under their influence. It also explores the Serpent, a rogue constellation that moves independently and does not have a fixed Season.\n\nThemes of destiny, influence, and the interplay between the stars and individuals' fates are central to the book. The constellations are depicted as powerful and symbolic forces, with each influencing certain traits, strengths, and weaknesses in those born under their signs. This version is a condensed exploration compared to the original Redguard edition, which provides more depth on the Warrior's birthsign. The book offers insight into how Tamriel’s inhabitants interpret their lives through these celestial patterns, and how these beliefs shape the culture and behavior of different peoples across the land.", + "display_name": "the_firmament", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Firsthold Revolt, written by Maveus Cie, tells the story of political intrigue and betrayal within the city of Firsthold, Summerset Isle. The tale centers around the tension between Lady Gialene, the powerful concubine of King Reman, and Queen Morgiah, her rival for influence in the court. Gialene seeks to incite a revolt with the help of the Trebbite Monks, a faction that opposes the Dunmer influence in the royal family. As the revolt escalates, Gialene orchestrates a dangerous strategy using reflection spells to counter the King's fireball-wielding battlemages. However, her plot backfires, leading to chaos, betrayal, and her eventual return to her father's court, while the king's forces remain in control.\n\nThe story highlights themes of power, loyalty, and the dangerous games played in the pursuit of influence. It explores the delicate balance between ambition and treachery within a royal court, as well as the deep-seated divisions between the Dunmer and Altmer cultures. The book is a single work that offers a glimpse into the political landscape of Summerset Isle during a time of unrest.", + "display_name": "the_firsthold_revolt", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Five Songs of King Wulfharth, written by an anonymous author, is a collection of epic tales surrounding the legendary Nordic King Wulfharth, also known as the Ash King. The songs trace his journey from his fiery ascent to the throne of Atmora, to his tragic death and rebirth, culminating in his betrayal at Red Mountain. The first four songs recount his feats, including the defeat of Orcish forces, the rebuilding of High Hrothgar, and his eventual rise from death as the Ash King, leading an army to reclaim the Heart of Shor. However, the fifth song reveals the tragic conclusion of his campaign, as he is betrayed by Dagoth-Ur, and the Nords face their ultimate defeat. The final song introduces an apocryphal narrative, presenting the secret history of Wulfharth's conflict with the Tribunal and the betrayal that led to the fall of Red Mountain.\n\nThe themes of the songs include the power of destiny, the complexities of betrayal, and the consequences of seeking vengeance. The struggle between loyalty to one's people and the manipulation of gods and powers beyond mortal comprehension is central to the narrative. The work is a single volume, blending mythological elements with historical events, and serves as a reflection on the cost of ambition and the ever-present tension between the divine and the mortal.", + "display_name": "five_songs_of_king_wulfharth", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Flight from the Thalmor, written by Hadrik Oaken-Heart, is a harrowing first-person account of a Nord skald's defiance against the Thalmor and his subsequent flight for survival. The story begins with Hadrik's bold decision to sing of Talos, the revered god of Skyrim, in defiance of the Thalmor's ban on Talos worship, a law enforced by their Justiciars. His actions, which initially seemed like a simple act of defiance, lead to his capture and imprisonment by the Thalmor, where he faces the grim prospect of never leaving the secret detention camp alive. After an arduous escape, he spends the next nine days in constant flight, pursued relentlessly by the Aldmeri Dominion.\n\nThe themes of the book center on resistance, pride, and the harsh realities of living under oppressive rule. Hadrik’s struggle symbolizes the broader Nordic resistance to the Thalmor’s authoritarian control over Skyrim, reflecting the tension between personal conviction and the threat of overwhelming power. The book is a single volume, offering a raw and emotional narrative of one man's fight for freedom in a world where the cost of defiance may be death.", + "display_name": "flight_from_the_thalmor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An Overview of Gods and Worship in Tamriel, written by Brother Hetchfield, explores the relationship between mortals and the gods in Tamriel, focusing on the enigmatic and sometimes contradictory role that deities play in the lives of their followers. Hetchfield examines the gods' direct involvement in mortal affairs, noting that while divine intervention is evident in some heroic tales and legendary events, it is often absent during times of widespread suffering, such as plagues or famines. He speculates that the gods may derive power from the worship, deeds, and sacrifices of their followers, with larger temples having more influence due to their greater number of worshippers. The book also discusses the possibility that certain spirits, by gaining strength through worship, might ascend to the status of gods or goddesses, hinting at a fluid and evolving nature of divinity in Tamriel.\n\nThe themes of the book revolve around the nature of divine influence, the mystery surrounding gods' actions, and the power of mortal devotion. Hetchfield presents the gods as distant and indifferent at times, yet also responsive to sincere devotion and deeds. The book suggests that understanding the connection between gods and mortals is an ongoing challenge, influenced by various interpretations and beliefs across cultures.", + "display_name": "gods_and_worship", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "History of Raven Rock, written by Lyrin Telleno, provides a detailed account of the development and history of the mining town of Raven Rock on Solstheim, focusing on its transformation from an East Empire Company colony to a thriving Dunmer settlement. The book is divided into three volumes, each covering significant events and challenges faced by the town over the centuries. The first volume covers the town's founding in 3E 427, the initial imperial settlement, and the eruption of Red Mountain in 4E 5, which caused widespread destruction but ultimately solidified Raven Rock's resilience. The second volume details the construction of protective structures like the Bulwark, the transition of control to House Redoran, and the prosperity that followed under the leadership of Brara Morvayn. The third volume chronicles the challenges Raven Rock faced during the Fourth Era, including internal strife from House Hlaalu, the depletion of the ebony mine, and the ongoing efforts to maintain order and security under Lleril Morvayn’s rule.\n\nThe themes of the book include perseverance, leadership, and the struggle for autonomy in the face of external pressures. Telleno highlights the dynamic relationship between the Dunmer and the imperial settlers, as well as the influence of political rivalries, such as between Houses Redoran and Hlaalu, on the town’s fate. The work is a testament to the spirit of the people of Raven Rock, their resilience through disasters, and their ability to adapt as their main resource dwindles.", + "display_name": "history_of_raven_rock", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Holds of Skyrim: A Field Officer's Guide, written by Imperial Legion Officers, is an official guide detailing the geography and strategic importance of the nine holds of Skyrim. The guide offers insights on each hold's terrain, inhabitants, and potential significance in the ongoing civil conflict, focusing on the military concerns of the Empire. The holds range from the strategically important to the practically irrelevant. Key holds like Eastmarch, Haafingar, and the Reach are highlighted for their direct importance in the war, while others like Hjaalmarch and Winterhold are noted for their limited strategic value but still necessary to monitor. The guide emphasizes the difficulty of maintaining control in the hostile climate of Skyrim, with specific warnings about local threats such as the Stormcloaks, the Forsworn, and criminal organizations like the Thieves' Guild.\n\nThe overarching theme is the Empire's continued struggle to maintain order and dominance in a province rife with rebellion, harsh terrain, and resource scarcity. The guide provides crucial information for military officers tasked with securing Skyrim, focusing on the challenges of each hold while acknowledging the unpredictable nature of local governance and resistance. It serves as both a practical military resource and a reflection on the complexities of ruling a volatile province.", + "display_name": "the_holds_of_skyrim", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Horror of Castle Xyr, written by Baloth-Kul, is a one-act play that follows a tense investigation within the eerie Castle Xyr. The story is set in the grand entrance hall of the castle, where Captain Clavides of the Imperial Guard arrives to investigate the mysterious death of an Ashlander. He soon uncovers a dark secret when he finds a hidden passage beneath the castle, leading to a cellar filled with grotesque remnants of necromantic experiments. The maid, Anara, is revealed to be part of the sinister activities, and her true identity as Iachilla Xyr, a member of the Telvanni family, is exposed. The plot revolves around themes of magical torture, betrayal, and the twisted experimentation with destruction magic.\n\nThe play explores the psychological and physical torment inflicted by those who wield magic, delving into the moral decay and monstrous acts committed by those with power. The disturbing actions of the Telvanni family reveal a dark side to the pursuit of knowledge and magic, highlighting themes of cruelty and the abuse of power. The play ends on a chilling note, leaving the audience to contemplate the horrors of unchecked ambition.", + "display_name": "horror_of_castle_xyr", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Incident in Necrom, written by Jonquilla Bothe, is a suspenseful tale about a group of adventurers tasked with cleansing a haunted cemetery near the city of Necrom. The story follows Phlaxith, the leader of the group, as he assembles a team consisting of Nitrah, a skilled swordswoman, Osmic, a burglar, and Massitha, a sorceress specializing in illusion magic. The group sets out to eliminate a vampire infestation in the graveyard and encounters deadly foes, with Massitha's unique abilities playing a crucial role in their survival. As the group navigates the crypts, they face overwhelming odds, but ultimately, Massitha's powers help them defeat the vampires, only for a final, shocking twist.\n\nThe book explores themes of betrayal, the unexpected nature of allies, and the dangers of underestimating the power of illusion magic. Massitha’s development from an unsure illusionist into a vital force in the battle highlights the versatility and unpredictability of magic. The play concludes with an ironic twist, as Massitha, thought to be the victim, turns the tables on her treacherous companions. The story is self-contained within a single volume, blending action with deception and dark magic.", + "display_name": "incident_at_necrom", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Invocation of Azura, written by Sigillah Parate, is a work that emphasizes the author's personal journey of devotion to Azura, the Daedric Princess of Moonshadow. The book recounts the author's experiences as a priestess of Azura after having previously served under other Daedric Princes, including Molag Bal, Boethiah, and Nocturnal. It outlines the differences between these deities, highlighting Azura's unique qualities—her compassion for her followers, the depth of her emotional engagement, and her focus on the genuine love and devotion of those who worship her. In contrast to the more impersonal and demanding nature of the other Daedric Princes, Azura’s attention to the emotional connection and self-reflection of her followers sets her apart.\n\nThe central theme of the book is the superiority of Azura over other Daedric Princes, as the author argues that Azura is not only a source of power but also a nurturing figure who cares deeply for her followers' inner emotional states. This devotion to Azura, with its emphasis on authentic love and self-acceptance, is presented as both a personal and philosophical commitment. The work is part of a single volume, offering a reflective exploration of Daedric worship and the unique place of Azura in the pantheon of Tamriel’s divine figures.", + "display_name": "invocation_of_azura", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Legend of Red Eagle, written by Tredayn Dren, Archivist of Winterhold, is an ancient tale about the invasion of the Reach by the First Empire. The story follows the rise and fall of Faolan, a child born in the Sundered Hills who becomes the legendary Red Eagle, a warrior destined to unite the Reach. As he grows in strength, he leads his people in rebellion against the invading Empress Hestra, but despite his fierce resistance, the Reach falls under Imperial control. Faolan makes a pact with an ancient Hagraven, gaining power at the cost of his humanity, and continues his fight for freedom. The tale ends with his death, but not before he swears his sword will be returned to his people when the Reach is finally free.\n\nThe story explores themes of destiny, sacrifice, and the consequences of power, particularly the cost of alliances made with dark forces. The narrative also emphasizes the unyielding spirit of the Reach and the eternal struggle for freedom against oppressive invaders. The legend, though rooted in the distant past, remains relevant in the context of the Reach's long history of resistance and rebellion. This tale is one of many oral traditions about Red Eagle, suggesting it may have evolved over time, with varying elements added to the myth as it was passed down.", + "display_name": "the_legend_of_red_eagle", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Lusty Argonian Maid, written by Crassius Curio, is a bawdy play featuring comedic and suggestive exchanges between the characters Lifts-Her-Tail, an Argonian maid, and Crantius Colto, her employer. The play contains two main acts that highlight the playful and risqué nature of their interactions. In Act IV, Scene III, Lifts-Her-Tail is tasked with cleaning Crantius Colto's chambers, but their conversation soon turns flirtatious, with Crantius offering to have her polish his spear in a suggestive manner. Similarly, in Act VII, Scene II, the dialogue revolves around the preparation of a loaf of bread, with Crantius prompting Lifts-Her-Tail to \"knead the loaf\" in an innuendo-laden manner, furthering the humor through double entendres.\n\nThe play is known for its comedic exploration of sexual innuendo and its portrayal of an awkward yet playful relationship between the characters. Act VII, Scene II, added later in Skyrim, builds on the bawdy humor of the original, contributing to the ongoing legacy of Crassius Curio's writing in the Elder Scrolls universe. The work explores themes of desire, subservience, and comedic misunderstandings, making it a humorous and risqué piece within the context of the series.", + "display_name": "the_lusty_argonian_maid", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mystery of Talara, written by Mera Llykith, is a five-part story about the mysterious life of Princess Talara, focusing on her presumed death and the identity of a woman named Gyna, who may actually be the long-lost princess. Set in 3E 405 during the celebrations in Camlorn, the story begins with Gyna, a prostitute who unknowingly looks like the royal family, encountering Lady Jyllia, the King's daughter. Their connection leads Gyna to recall long-forgotten memories of her childhood, including the tragic assassination of the royal family and her fall from a castle window, which caused her to lose her memory. Throughout the narrative, Gyna, now self-identified as Princess Talara, embarks on a journey to uncover her past, aided by Lord Strale, an Imperial ambassador, and others involved in a complex conspiracy.\n\nThemes in Mystery of Talara include memory, identity, betrayal, and the manipulation of power within royal families. The story explores how trauma can erase and distort memories, and the lengths individuals will go to conceal dark truths. Gyna's quest to reclaim her identity and confront the betrayal that led to her family's assassination reveals the corruption at the heart of the Camlorn monarchy. The plot also delves into the consequences of power struggles, as Talara's uncle, the Duke of Oloine, orchestrates the royal family's murder to seize the throne. The book is a captivating tale of intrigue and rediscovery, with elements of personal growth and justice.", + "display_name": "mystery_of_talara", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Commentaries on the Mysterium Xarxes, written by Mankar Camoran, is a multi-part series that serves as the foundational text for initiates into the Mythic Dawn cult. The series explores the philosophy and beliefs of the cult, primarily focused on the worship of Lord Dagon and the pursuit of freedom and power through destruction. The books are filled with esoteric language, cryptic teachings, and spiritual revelations, guiding followers through a journey of self-destruction and rebirth. The narrative describes a transformative process in which initiates must abandon their past selves and embrace the keys to a new existence. Each book focuses on different aspects of the cult's rituals, including the importance of submitting to the destructive forces of Lord Dagon, embracing chaos, and shedding the old identity to reach a state of divine freedom.\n\nThe overarching themes of Commentaries on the Mysterium Xarxes revolve around liberation through destruction, the rejection of established order, and the embrace of chaos as a path to power. The series teaches that only through the complete breakdown of personal and societal structures can true freedom and understanding be achieved. Mankar Camoran's writing emphasizes the concept of \"Nu-mantia,\" or liberty, and the importance of free will in shaping one's destiny. The hidden message formed by the first letters of each paragraph (\"Green Emperor/Way Where/Tower Touches/Midday Sun\") hints at a deeper, mystic connection to the power and influence of the Mythic Dawn. The work is dense and philosophical, with elements of mysticism, rebellion, and apocalyptic prophecy. The series comprises multiple books, each offering insights into the mind and teachings of Camoran, a self-styled prophet and leader of the Mythic Dawn.", + "display_name": "mythic_dawn_commentaries", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Myths of Sheogorath, written by Mymophonus, is a collection of magical and whimsical myths surrounding the Daedric Prince of Madness, Sheogorath. The myths are playful, bizarre, and illustrate Sheogorath’s chaotic nature. In one tale, Sheogorath invents music by transforming a woman into instruments, creating the first melodies for mortals. In another, he teaches King Lyandir a lesson in creativity and madness by ensuring every child born in the city is born mad, eventually leading to the king's death at the hands of his deranged son. The final myth involves a wizard named Ravate, who seeks a favor from Sheogorath but is instead put through a test of sanity, eventually breaking his mind.\n\nThe themes of Myths of Sheogorath focus on the unpredictable and capricious nature of Sheogorath, illustrating his love for chaos and the absurdity of his actions. The myths explore the consequences of resisting creativity, the madness that often accompanies power, and the fine line between genius and insanity. Each story reflects Sheogorath’s influence on mortals, driving them toward madness, destruction, and eventual surrender to his will. The book is composed of multiple parts, each presenting a different myth that highlights various aspects of Sheogorath’s influence on the world.", + "display_name": "myths_of_sheogorath", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nerevar at Red Mountain, written by the Tribunal Temple, is a scholarly retelling of the events surrounding the Battle of Red Mountain and the tragic aftermath involving Nerevar, Dagoth Ur, and the Tribunal. The text details the conflict between the Chimer, led by Nerevar, and the Dwemer, led by Dumac Dwarf-Orc, culminating in the discovery of the Heart of Lorkhan. Nerevar, guided by Azura, seeks to destroy the Heart's corrupting power, but the Tribunal, led by Almalexia, Sotha Sil, and Vivec, covet the Heart's power for themselves, leading to Nerevar's murder by his own generals. Azura curses the Tribunal for their betrayal, transforming the Chimer into the ashen-skinned Dunmer, and condemns them to live with their guilt.\n\nThe story explores themes of betrayal, greed, and the corrupting influence of power. It examines the tragic fall of Nerevar, the noble king, and the rise of the Tribunal as gods, whose ascension is tainted by their dark deeds. The book also reflects on the consequences of forsaking old ways and the eternal mark of their actions, as seen in the physical transformation of the Dunmer. The text is part of a larger body of work, the Apographa, consisting of hidden writings that challenge Temple doctrine and offer a more nuanced view of Morrowind's history.", + "display_name": "nerevar_at_red_mountain", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nerevar Moon-and-Star, written by Imperial scholars, is a monograph that delves into the legend of Indoril Nerevar, a great leader of the Dunmer. The text recounts Nerevar's role in uniting the Dunmer under the banner of the One-Clan-Under-Moon-and-Star to fight against the invading Deep Elves (Dwemer) and outlanders. Nerevar's victory at Red Mountain and his honor in respecting the Ancient Spirits and Tribal law are celebrated, but his assassination by power-hungry leaders from the Great Houses, who later claimed godhood, marks a tragic turn. The legend suggests that Nerevar will one day return to fulfill his promises to the Tribes, overthrow the false gods, and restore the honor of the Dunmer.\n\nThemes of betrayal, the struggle for power, and the preservation of tradition versus corruption are central to this work. The idea of Nerevar's return as a messianic figure is a key aspect of Dunmer mythology, reflecting hopes for justice and the restoration of rightful order. This work is part of a series of monographs by various Imperial scholars, focusing on Ashlander legends and their interpretations.", + "display_name": "nerevar_moon_and_star", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nords Arise!, written by an anonymous author, is a passionate recruitment essay calling for rebellion against the Empire, urging the Nords of Skyrim to reject Imperial oppression. The essay appeals to the pride and heritage of the Nords, emphasizing their right to worship Talos, the god who rose from their homeland and who represents the honor and might of Skyrim. It criticizes the Empire for betraying the Nord people by forbidding the worship of Talos and accuses King Torygg of treason for agreeing to a pact with the Thalmor. Drawing parallels to historical events, such as Ysgramor’s war against the elves, the essay champions Ulfric Stormcloak as a hero who stands up against the Empire and the Thalmor.\n\nThe themes of resistance, national pride, and religious freedom are central to the essay. It emphasizes the historical struggles of the Nords against external threats and positions the Stormcloak rebellion as a righteous cause to reclaim their freedom and honor. This work calls for unity among the Nords, urging them to stand together against the Empire's division and control. The essay is a rallying cry for rebellion, rooted in the mythic past and the belief in Talos’ divine power.", + "display_name": "nords_arise", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Olaf and the Dragon, written by Adonato Leotelli, explores the legendary tale of Olaf One-Eye, a hero who defeated the dragon Numinex in an epic battle for Skyrim's future. The dragon, a terrifying force that had ravaged Skyrim, was eventually confronted by Olaf, a warrior who would later become the High King of Skyrim. The legend tells of Olaf's battle against Numinex atop Mount Athor, where the two engage in a brutal shouting contest that shatters the land. Ultimately, Olaf triumphs, capturing the dragon and bringing him to Whiterun, where the beast is imprisoned in a place that would become known as Dragonsreach. Olaf's victory solidifies his leadership, ending a bitter war of succession among Skyrim's holds.\n\nThemes of heroism, power, and the distortion of history are prevalent throughout the work. Leotelli presents Olaf's victory as a symbol of Nordic strength and unity, though he acknowledges doubts surrounding the legend's authenticity. Alternative versions of the story suggest that Numinex was already weak due to age, and that Olaf and his men may have fabricated the tale for personal gain. The account also references a rebellious bard, Svaknir, who challenged Olaf's version, adding an intriguing layer of historical ambiguity. The book raises important questions about how history is remembered and the ways in which legends are shaped by those in power.", + "display_name": "olaf_and_the_dragon", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "On Oblivion, written by Morian Zenas, serves as a scholarly exploration of the realm of Oblivion and its inhabitants, the Daedra. Zenas delves into the nature of these powerful and unpredictable entities, providing an in-depth examination of their diverse motives and spheres of influence. The book traces the etymology of the term \"daimon,\" correcting the misconception that it refers to demons, and clarifies that the proper term is \"Daedra,\" with \"Daedroth\" being the singular. Zenas also discusses the various Daedric Princes, from the well-known Sanguine, Sheogorath, and Molag Bal to lesser-known figures like Peryite and Vaermina. He categorizes the Daedra based on their actions, with some being more destructive in nature, while others, like Azura and Mephala, exercise their power in subtler ways.\n\nThe book emphasizes the importance of firsthand experience and primary sources in understanding Oblivion, as Zenas recounts his own interactions with the Daedra and their realms. While he acknowledges the dangers of dealing with these entities, he expresses a philosophical curiosity about them, especially regarding the possibility of mortals passing into Oblivion. Themes of knowledge, power, and extremism pervade the work, as Zenas reflects on the often destructive nature of the Daedra and their unyielding influence on the mortal world. The book is part of a larger ongoing investigation into the Daedric Princes and their domains, as explored further in Zenas's next installment, The Doors of Oblivion.", + "display_name": "on_oblivion", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "How Orsinium Passed to the Orcs, written by Menyna Gsost, tells the story of Gortwog gro-Nagorm's quest to claim the land of Orsinium in 3E 399, set in a legal dispute against the Breton noble, Lord Bowyn. The land was contested, and the final resolution was to be decided by a duel between Gortwog and Bowyn, adhering to ancient laws of property rights. The duel, however, was far from ordinary, as it required both combatants to wear Orcish armor, which was unfamiliar and unwieldy to the Breton lord. As Bowyn struggled with the armor and the training needed to fight in it, the situation became more tense, especially when the duel was moved forward by Gortwog's request.\n\nThrough intense training and manipulation by his cousin, Lord Berylith, Bowyn faced the battle under less-than-ideal conditions, including a lavish feast that left him sluggish. In the end, Gortwog emerged victorious, claiming the land as Orsinium in honor of his heritage. The narrative highlights themes of honor, pride, and the complexities of legal and physical combat. It also touches on the subtleties of cultural differences, as the Orcs, led by Gortwog, prove their worth through a display of mastery over the land that had been historically contested.", + "display_name": "orsinium_and_the_orcs", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Palla, written by Vojne Mierstyyd, is a tragic tale of a conjurer's obsession with a woman he believes to be the epitome of beauty and strength. The narrator, an initiate at the Mages Guild in Mir Corrup, becomes infatuated with a statue of a woman named Palla, depicted in a heroic struggle with a monstrous figure. As he becomes more obsessed, he learns that Palla was a fierce warrior who died in battle, leaving behind a daughter, Betaniqi. Despite knowing Palla is deceased, the narrator seeks to resurrect her through necromantic means, using an artifact he finds. His obsession grows as he immerses himself in the study of enchantment, convinced that his love will be strong enough to bring her back.\n\nThe story explores themes of obsession, love, and the dangerous consequences of seeking to defy death. The narrator’s fixation on Palla blinds him to reality, and in the end, he learns too late that he had misunderstood the nature of the woman he loved. The narrative is both a commentary on the destructive power of unrequited love and a reflection on the perilous boundaries between life, death, and magic. Palla is presented in two volumes, each deepening the tragic nature of the conjurer's infatuation and his ultimate downfall.", + "display_name": "palla", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Experimentation in the Physicalities of the Werewolf, written by Reman Crex, is a morbid and scientific examination of the physical changes that occur in werewolves during their transformations. The author, with no personal vendetta against werewolves, delves into the anatomy and biology of these creatures, conducting gruesome experiments on live subjects in an attempt to better understand the nature of their physical changes. The experiments observe subjects in both their human and werewolf forms, noting the physical changes in proportions, muscle structure, and the effects on internal organs. Crex's focus is solely on the physiological aspects, deliberately ignoring the origins, causes, and potential cures for lycanthropy.\n\nThe book explores themes of obsession with the unnatural, scientific curiosity, and the moral implications of experimenting on living creatures. Through his clinical and detached observations, Crex reveals the disturbing and often painful transformations that werewolves undergo, highlighting the inhuman nature of the affliction. The experiments, which ultimately result in the death of the subjects, emphasize the brutality of Crex's approach. The work is a single volume, presenting an unsettling look at the physical aspects of lycanthropy from a purely anatomical perspective.", + "display_name": "physicalities_of_werewolves", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Poison Song, written by Bristin Xel, is an epic, historically inaccurate tale set in the aftermath of the War with the Dwemer and House Dagoth. The story follows Tay, a young boy raised in House Indoril after the War, who is haunted by a mysterious \"Song\" and the secrets of his true origins. As the narrative unfolds, Tay discovers he is the heir to the long-destroyed House Dagoth, and the Song leads him on a dark path of violence and tragedy. The book explores themes of identity, destiny, and the destructive power of inherited legacies, as Tay is consumed by the Song's influence, which drives him to murder and betrayal. His journey takes him through a series of devastating choices, culminating in a tragic and violent end.\n\nThe book is divided into seven volumes, each chronicling a significant phase of Tay's life as he grapples with the Song and his role as the heir of House Dagoth. Throughout the story, Tay's relationships with those around him, including his cousin Baynarah, are strained as the Song pulls him deeper into the conflict of his heritage. Ultimately, the tale highlights the cyclical nature of violence and the difficulty of escaping one's fate. The narrative's intricate interplay of familial ties, political intrigue, and the supernatural makes it a tragic exploration of the consequences of the past on future generations.", + "display_name": "the_poison_song", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Racial Phylogeny and Biology, Seventh Edition, written by the Council of Healers, Imperial University, explores the biological and reproductive characteristics of the various races of Tamriel, with an emphasis on their interbreeding capabilities. The book examines the similarities and differences between elves, humans, Argonians, Khajiit, orcs, and other creatures, addressing issues such as the ability to produce fertile offspring and the unique physical traits that distinguish each race. The text delves into the complexities of inter-racial unions, including the unclear fertility between humans, elves, Argonians, Khajiit, and more exotic species like daedra. It also touches upon the reproductive biology of more obscure beings such as orcs, goblins, and sload, acknowledging the limitations of current scientific understanding, especially when cultural taboos prevent proper study.\n\nThe book is a detailed exploration of the racial diversity in Tamriel, highlighting themes of biology, heredity, and the potential impacts of magic and environmental factors on racial traits. The discussion also reflects the challenges and ethical dilemmas faced by healers and scholars when studying such taboo subjects. This edition is the seventh, indicating ongoing revisions and updates as new information becomes available, although the authors emphasize the need for more empirical data to fully understand the complexities of inter-species biology and reproduction.", + "display_name": "racial_phylogeny", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Real Barenziah, written by unknown, is a series of books that follows the life of Queen Barenziah, a powerful and complex figure in Tamriel's history. The books explore her rise to power, her political maneuvering, and the personal challenges she faces as a ruler. Through the narrative, the reader delves into themes of ambition, betrayal, and survival, as Barenziah navigates the turbulent political landscape of Mournhold, Skyrim, and beyond. The books also reveal her encounters with notable figures like the Thieves Guild and the Daedric Princes, highlighting her connections to both the criminal underworld and the divine.\n\nThe story is spread across multiple volumes, with each one focusing on a different period of Barenziah's life, capturing her evolving role as a queen, a mother, and a political player. Throughout the series, the themes of power, manipulation, and personal sacrifice are explored, with Barenziah constantly seeking to maintain control over her destiny despite the forces that conspire against her.", + "display_name": "the_real_barenziah", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Red Year, written by Melis Ravel, is a two-volume account detailing the catastrophic eruption of Red Mountain in Morrowind and its aftermath, as told through the personal stories of survivors. The narrative captures the harrowing experiences of the Dunmer people, from the destruction of cities like Tear and Vivec City to the struggles faced by those in Mournhold. Themes of survival, community, and resilience are central to the work, as the survivors recount how they coped with the loss of life, the physical devastation, and the psychological toll of the disaster. Despite the tragedy, the Dunmer exhibit unwavering courage and solidarity, helping one another in the face of the calamity.\n\nVolume I introduces the accounts of individuals who experienced the immediate chaos of the eruption, while Volume II shifts focus to the long-term impacts, including recovery efforts and the emotional aftermath. The contrast between the physical destruction and the emotional resilience of the people highlights the theme of overcoming adversity. Through interviews and first-hand stories, Ravel paints a vivid picture of the Red Year, making it a powerful testament to the strength of the Dunmer people in the face of unimaginable loss.", + "display_name": "the_red_year", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Rise and Fall of the Blades, written by Anonymous, is an in-depth account of the origins, evolution, and eventual downfall of the Blades, an elite order of warriors dedicated to protecting the Empire and the Dragonborn. Tracing the Blades' roots back to the Dragonguard of Akavir, the book details their transformation from dragon hunters to a covert network of spies, warriors, and protectors of the Emperor. At their height, the Blades played a crucial role in guarding the Dragonborn and serving the Septim Dynasty. However, their decline came with the end of the Third Era and the rise of the Thalmor, who sought to eliminate them for their role in opposing their power.\n\nThe book is a reflection on loyalty, secrecy, and the price of maintaining the balance of power. It explores the themes of duty and sacrifice, as the Blades, once a symbol of strength and protection, were hunted down and destroyed by the Thalmor during the Great War. Despite their fall, the Blades are portrayed as a resilient force, still waiting for the return of the Dragonborn to rise again. The narrative emphasizes the lasting legacy of the Blades' secrecy and their ongoing mission to protect Tamriel, even from the shadows.", + "display_name": "the_rise_and_fall_of_the_blades", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rising Threat, written by Lathenil of Sunhold, is a multi-volume series detailing the growing menace of the Thalmor, an organization within the Aldmeri Dominion, and their subversive tactics against Tamriel. Lathenil, an Altmer refugee from Summerset Isle, fled his homeland not due to the Oblivion Crisis but because of the encroaching shadow of the Thalmor. Throughout the series, Lathenil describes his firsthand experiences and suspicions, including the Thalmor’s involvement in major political upheavals and their manipulation of events to consolidate power. The books span several decades, capturing the political chaos that ensued after the fall of the Crystal Tower and the subsequent rise of the Thalmor to power.\n\nThe themes of power, deception, and survival are central to Lathenil's account. He portrays the Thalmor as cunning and patient, using subterfuge and manipulation to advance their agenda, with Lathenil constantly warning of the growing threat they pose to the Empire and the Altmer themselves. As he attempts to expose their actions, Lathenil faces increasing danger, eventually meeting a violent end that suggests the Thalmor's influence was not to be underestimated. The series serves as both a historical account and a call to action, urging the people of Tamriel to recognize and resist the dangers of unchecked power.", + "display_name": "rising_threat", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ruminations on the Elder Scrolls, written by Septimus Signus of the College of Winterhold, is a philosophical exploration of the nature and role of the Elder Scrolls. The text delves into abstract concepts, pondering whether we, as individuals, are the medium through which knowledge flows or the stagnant remnants of it. Signus uses vivid metaphors, such as a bird lifted by the wind or an acorn growing into a tree, to illustrate how the Elder Scrolls shape knowledge and existence. Through these reflections, the book questions the relationship between the self and the universe, examining the transformative power of the Scrolls and the wisdom they hold.\n\nThe themes of the book revolve around knowledge, transformation, and the interconnectedness of existence. Signus reflects on the paradoxical nature of learning and growth, where pushing against limitations and fear results in unexpected change. The Elder Scrolls, in this view, are not just artifacts of prophecy but tools that shape both the individual and the collective consciousness. The book is a profound meditation on the search for understanding, exploring the delicate balance between the vast emptiness of ignorance and the illuminating yet dangerous light of knowledge.", + "display_name": "ruminations_on_the_elder_scrolls", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shezarr and the Divines, written by Faustillus Junius, Subcurator of Ancient Theology and Paleonumerology at the Imperial Library, explores the complex and evolving relationship between the god Shezarr and the other deities in Cyrodilic worship. Shezarr, often referred to as the \"Missing Sibling\" of the Divines, has a unique position in Imperial religion, especially in the Colovian West where he is worshipped as Shor. His history is deeply intertwined with the rise of human civilization in Cyrodiil, where he initially fought for mankind against the Ayleids but later vanished, leaving humans to be enslaved by the Elves. His return coincided with the rebellion led by St. Alessia, and his role was redefined in the synthesis of Nordic and Aldmeri pantheons that formed the Eight Divines.\n\nThe book examines the political and religious shifts that shaped Shezarr's transformation from a fierce warrior against the Elves to a more subdued figure, representing \"the spirit behind all human undertaking.\" This change was necessary to maintain political alliances, especially with the Nords, who were resistant to Elven worship. The themes of the book revolve around the adaptation of religious figures to political needs, the blending of different cultural pantheons, and the delicate balance between tradition and change in the Empire. The book also speculates on the reasons Tiber Septim chose not to revitalize Shezarr in his campaigns against the Aldmeri Dominion, suggesting that past conflicts related to the Alessian Order's failures still cast a shadow over his efforts.", + "display_name": "shezarr_and_the_divines", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Short History of Morrowind, written by Jeanette Sitte, provides a comprehensive overview of the history of Morrowind, from the earliest Dunmer migrations to the region, to its integration into the Empire and the challenges it faces in the Fourth Era. The book highlights the rise of the Dunmer as a powerful people under the leadership of the Tribunal Temple and the eventual consolidation of their tribes into the Great House system. It also discusses the political dynamics of Morrowind under Imperial rule, including the complexities of governance, religion, and internal strife. The introduction delves into the relationship between the Dunmer and the Empire, particularly how Morrowind was one of the last provinces to peacefully join the Empire.\n\nThe section on Vvardenfell focuses on the dramatic changes to the island after its reorganization into an Imperial Provincial District in 3E 414. It describes the competition for control of the land between the Great Houses, the Temple, and the Empire, as well as the external threats posed by Ashlanders, House rivalries, and the growing danger of the Red Mountain blight. The book explores themes of colonization, power struggles, and environmental hazards, particularly the threat of Dagoth Ur and his forces. The narrative underscores the political instability and challenges faced by both the Imperial and Dunmer leadership, offering insight into the precarious situation on Vvardenfell.", + "display_name": "short_history_of_morrowind", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Song of Pelinal, written by an unknown editor from the Imperial Library, is a multi-volume collection chronicling the life and deeds of Pelinal Whitestrake, a legendary warrior in Tamriel's history. The story is pieced together from various ancient and fragmentary texts, detailing Pelinal's rise as a divine champion of the human rebellion against the Ayleids, his relationship with his ally Morihaus, and his eventual fall in battle against the immortal Umaril the Unfeathered. The volumes explore his madness, his love for Morihaus, his relentless pursuit of justice, and his dismemberment at the hands of his enemies. As a whole, the Song portrays Pelinal not just as a hero, but as a complex figure—part mortal, part divine, caught between great deeds and uncontainable rage.\n\nThe themes of The Song of Pelinal revolve around heroism, madness, divine intervention, and sacrifice. Pelinal is depicted as both a liberator and a destroyer, with his fierce hatred for the Ayleids and unrelenting combat abilities making him a central figure in the struggle for human freedom. His eventual dismemberment and the revelation at Alessia’s deathbed reflect the tragic and inevitable nature of his fate. The Song also touches on the consequences of unchecked rage, with Pelinal's violent tendencies often leading to destructive outcomes. The text examines the costs of rebellion and the fine line between divine madness and mortal heroism. With ten volumes in total, the work offers an in-depth, albeit fragmented, portrait of one of Tamriel’s most legendary figures.", + "display_name": "the_song_of_pelinal", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Third Era: An Abbreviated Timeline, written by Jaspus Ignateous, provides a succinct overview of the major events that occurred during the Third Era of Tamriel. The book compiles key historical moments, including the rise and fall of numerous emperors, wars, assassinations, and significant political shifts. The timeline spans over five centuries, beginning with the unification of Tamriel in 3E 0 and ending with the events of the Oblivion Crisis in 3E 433. It highlights the frequent changes in leadership within the Empire, showcasing the turbulent nature of Tamriel's politics and the constant struggles for power.\n\nThe themes of the book center around political instability, the cyclical nature of history, and the challenges of maintaining an Empire in a world of constant warfare and intrigue. The work reflects the Empire's tumultuous history, emphasizing the frequent turnover of rulers and the constant threats from both external invaders, such as the Camoran Usurper, and internal struggles, such as the assassination of key leaders. The book serves as both a historical record and a cautionary tale, urging future generations to learn from past mistakes to prevent repeating the disasters of the past. With its concise presentation, it offers a starting point for those interested in studying the Empire's complex and ever-changing history.", + "display_name": "the_third_era_timeline", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Three Thieves, written by Anonymous, follows the story of three thieves in Morrowind as they plan and execute a heist on the Cobblers Guildhall. The book highlights the personalities of the thieves—Lledos, the experienced mastermind with a penchant for precision and technique; Imalyn, the impulsive and somewhat reckless thief; and Galsiah, the calm and strategic planner. Together, they navigate the dangerous world of theft in Tel Aruhn, discussing the finer points of assassination, stealth, and the art of robbery. Their plan unfolds smoothly, and they successfully steal the gold, leaving behind a trail of corpses.\n\nThe themes of the book center around betrayal, trust, and the complexities of the criminal underworld. The story not only focuses on the heist itself but also explores the dynamics between the three thieves, particularly the subtle undercurrents of manipulation and self-interest that ultimately lead to Lledos's betrayal. As Lledos escapes with the gold, the tension builds to a chilling conclusion when Galsiah exacts her revenge on him for his treachery. Three Thieves offers a dark, cynical look at the lives of criminals and the consequences of their actions, blending crime, camaraderie, and treachery in a tight, suspenseful narrative.", + "display_name": "three_thieves", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Varieties of Daedra, written by Aranea Drethan, Healer and Dissident Priest, provides a detailed analysis of the different forms of Daedra, with a particular focus on the Dremora. Drethan discusses the nature of Daedra and the complexities of their relationships with their Daedric Lords, particularly Mehrunes Dagon. While acknowledging the difficulty of understanding the Daedra due to their ever-changing behaviors and relationships, Drethan offers insights into the distinct castes within the Dremora hierarchy, from the lowly Churls to the powerful Valkynaz, and the pride and loyalty they exhibit toward their Lord. She contrasts the Dremora with other Daedra types, noting the differences in temperament and behavior, such as the independent and rebellious nature of the Xivilai.\n\nThe book explores themes of hierarchy, loyalty, and the unpredictability of the Daedric realm. Drethan highlights the challenges of dealing with Daedra, particularly the Dremora, who, despite their structured caste system, are often unpredictable and difficult to understand. The text emphasizes the ambiguity of the Daedric world, where allegiances and roles shift, and even the Daedra themselves may not fully comprehend their nature. Through Drethan's observations, the work touches on the intricacies of power dynamics in the Daedric courts and the dangerous unpredictability of the Daedric servants. The book serves as an important exploration of the complexities within the world of Daedra and their varied roles in the realms of Oblivion.", + "display_name": "varieties_of_daedra", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Varieties of Faith in the Empire, written by Brother Mikhael Karkuxor of the Imperial College, is an expansive exploration of the pantheons and divine spirits worshiped across Tamriel's dominant cultures. The book presents detailed overviews of the major deities revered by various regions, including Cyrodiil, Skyrim, Elsweyr, Morrowind, and the Yokudan traditions. Karkuxor organizes the pantheons into categories, listing key figures such as Akatosh, Mara, and Lorkhan, and exploring their significance within different cultural contexts. The text delves into the relationships between gods, their followers, and the influence of these deities on the societies that revere them, with particular attention paid to the differences between pantheons like those of the Nords, Altmer, and Khajiit.\n\nThe book also highlights the complexities and variations in divine worship, noting how gods like Akatosh, Alduin, and Azura appear in multiple pantheons with slightly altered roles and interpretations. Themes of divine hierarchy, cultural influence, and the role of religion in shaping mortal societies are explored. Karkuxor acknowledges the fluidity of religious beliefs across Tamriel, with some gods like Lorkhan and Mehrunes Dagon appearing in various cultures under different guises, and others, like the Daedric Princes, being understood and worshiped in diverse ways. This work offers a broad yet intricate look at the spiritual landscape of Tamriel, emphasizing both the unity and diversity of its many faiths.", + "display_name": "varieties_of_faith_in_the_empire", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Where Were You When the Dragon Broke?, written by Various authors, is a collection of accounts and perspectives on the mysterious and enigmatic event known as the Dragon Break. The text explores the concept of the \"Middle Dawn,\" a period marked by strange, chaotic shifts in time, reality, and space. Various characters from different cultures in Tamriel—such as Corax from Cyrodiil, Mehra Nabisi of the Dunmer, and R'leyt-harhr of the Khajiit—offer their interpretations of the Dragon Break, with each presenting a different understanding of its causes, effects, and significance. Some describe it as a cosmic disturbance, others as a breakdown in the flow of time itself, and still others see it as a divine manipulation or even a manifestation of Lorkhan’s will.\n\nThe themes of this text revolve around the fluidity of time, the instability of reality, and the conflicting accounts of history and prophecy across cultures. The book reflects on the nature of divine influence, fate, and how different peoples of Tamriel interpret cosmic events through their own religious and cultural lenses. The Dragon Break, a moment when time seemingly fractured and events occurred in multiple realities simultaneously, is central to the narrative, with characters wrestling with the consequences of such a paradoxical occurrence. The work emphasizes the concept of multiple truths existing simultaneously, depending on one’s perspective, and the impossibility of fully understanding the mysteries of the universe. This book presents an intriguing look at one of Tamriel's most profound and enigmatic events.", + "display_name": "where_were_you_when_the_dragon_broke", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wind and Sand, written by Afa-Saryat, is a treatise exploring the unique relationship between the Alik'r Desert and magic, with a focus on the role of sand and air in shaping the desert’s mystical properties. Afa-Saryat discusses how the harsh environment of the desert, often deemed inhospitable, cultivates a resourcefulness and resilience that shapes the local magical practices. Unlike the grandiose and dramatic magic of other cultures, such as the Nords or the Bretons, the magic of the Alik'r is understated and focused, requiring reflection and purpose rather than flair. The book suggests that the desert’s magic, like its inhabitants, thrives on economy and efficiency, with sand itself playing a crucial role in the natural flow of magic.\n\nThe themes of the book revolve around the interconnectedness of nature and magic, particularly how the desert’s elements—sand and air—serve as conduits for mystical forces. The sand, seen as the weathered remains of ancient rocks, is imbued with powerful remnants of Magnus' gift, creating a unique magical environment. The air, too, carries the knowledge of the sands and guides their transformative potential. Through this relationship, Afa-Saryat implies that magic in the Alik'r is not about spectacle but about subtlety, memory, and adaptation. The book emphasizes the idea that true mastery of magic in the desert comes from understanding and harnessing these elemental forces, offering a distinct perspective on how magic can be practiced in such an unforgiving land.", + "display_name": "wind_and_sand", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Wild Elves, written by Kier-Jo Chorvak, provides an overview of the Ayleids, often called the Wild Elves, who have remained secluded from the mainstream cultures of Tamriel. While the other Elven races—the Altmer, Bosmer, and Dunmer—have integrated into society, the Ayleids continue to follow their ancient customs, living far from civilization. They speak a variation of Old Cyrodilic and maintain a dark and reserved demeanor that contrasts with the more familiar Elven cultures. Although outsiders view them with suspicion, scholars like Tjurhane Fyrre offer a different perspective, suggesting that the Ayleids have a vibrant and multifaceted culture.\n\nThe book explores themes of cultural isolation, fear of the unknown, and the complexity of ancient traditions. The Ayleids' refusal to assimilate into Tamrielic society has led to their enigmatic status, with little documented history to illuminate their ways. Their mysterious nature, combined with their elusive presence in history, has kept them one of the most enigmatic peoples of Tamriel. Chorvak's work underscores how the Ayleids' reluctance to engage with the outside world has preserved their culture, but also left them shrouded in myth and legend. The book is a single volume and serves as a brief yet intriguing introduction to a largely forgotten race of elves.", + "display_name": "the_wild_elves", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Wolf Queen, written by Waughin Jarth, is a historical account detailing the life of Queen Freydis, the notorious Nord ruler who sought power and control over Skyrim during a turbulent period. Through a series of dramatic events, Freydis rises to power, supported by a mixture of cunning political maneuvering and brute force, ultimately establishing herself as a monarch who wields both physical and symbolic power. The text covers her ruthless conquests, her struggle against rivals, and her complex relationships with various factions within Skyrim.\n\nThe central themes of the book include ambition, power, and betrayal, as it examines how Freydis's unrelenting desire for control led to her becoming a feared figure in Nordic history. Her story is one of tragic determination, as her pursuit of power ultimately costs her the loyalty of her people and her own integrity. The Wolf Queen offers a critical view of her reign and the personal costs of her ambition. The book is a single volume, providing a concise but powerful portrait of one of Skyrim's most controversial figures.", + "display_name": "the_wolf_queen", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Yellow Book of Riddles, written by an anonymous author, is a collection of various riddles designed to engage the mind and provide enjoyment. The book serves as both a pastime and a tool for intellectual development, offering readers the chance to test their wit while contemplating the answers. The riddles are framed within the context of aristocratic society, where the posing of riddles was a popular social convention among the elite, used to demonstrate intelligence and quick thinking in conversation.\n\nThe themes of the book revolve around wit, logic, and the challenge of solving complex puzzles. It showcases how riddles were valued not only for their entertainment but for their role in refining mental acuity and social grace. The riddles in this volume range from simple wordplay to more intricate puzzles involving logic and deduction. The book consists of a single volume, making it a compact but enriching experience for those who enjoy solving brain teasers.", + "display_name": "yellow_book_of_riddles", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Yngol and the Sea-Ghosts, written by an unknown author, is a tale that recounts Ysgramor's first adventure in Tamriel, focusing on the tragic fate of his kinsman Yngol. The story begins with Ysgramor and his people landing on the rocky shores of Hsaarik Head, having traveled from Atmora. However, Ysgramor’s kin, including Yngol, are taken by the mysterious and vengeful sea-ghosts. Determined to rescue his people, Ysgramor rows into a violent storm, battling the spirits of the sea for two weeks. Eventually, the storm subsides, but Yngol and his companions are lost, their bodies found washed ashore.\n\nThe book explores themes of grief, vengeance, and the harsh realities of the world Ysgramor and his people inhabited. It also touches on the bonds of kinship and the early struggles of the Nords as they set foot in Tamriel. Ysgramor’s grief drives him to avenge his fallen kin by slaying beasts and giving them a proper burial, honoring the tradition of his people. This tale is part of the larger history of Ysgramor’s early days in Tamriel and serves as a pivotal moment in the mythic history of the Nords. It is contained within a single volume.", + "display_name": "yngol_and_the_sea-ghosts", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Aak: Guide\nAal: May\nAam: Serve\nAan: A(n), Idea, Slave (see also “Zaam”)\nAar: Servant, Slave (see also “Zaam”)\nAav: Join\nAaz: Mercy\nAg: Burn\nAh: Hunter\nAhkrin: Courage\nAhmik: Service\nAhmul: Husband (lit. “Hunter-Strong”)\nAhraan: Wound\nAhrk: And\nAhrol: Hill\nAhst: At\nAhtiid: Wear (verb)\nAhzid: Bitter\nAl: Destroyer\nAlok: Arise\nAlun: Ever\nAm: Lion\nAmativ: Onward\nAtmora: Atmora\nAu: On\nAus: Suffer\n\nBah: Wrath\nBahlaan/Balaan: Worthy\nBahlok: Hunger\nBein: Foul (adjective)\nBel: Foul (verb)\nBex: Open\nBeyn: Scorn\nBii: Blue\nBo: Flow, Fly, Move\nBodiis: Borrow\nBok: Age\nBolaav: Grant/Granted\nBolog: Beg\nBonaar: Humble\nBormah: Father\nBovul: Flee\nBoziik: Bold(ly), Rash\nBrendon: Specter\nBrii: Beauty\nBriinah: Sister (lit. “Beauty-Fury”)\nBriinahii: (for her) sister’s\nBriinahmaar: Sisterhood\nBrit: Beautiful\nBrod: Clan\nBrom: North\nBron: Nord\nBronjun: Jarl (lit. “Nord King”)\nBruniik(ke): Savage(s) (also a reference to Akaviri)\n\nDaal: Return\nDaan/Daanii: Doom\nDaanik: Doomed\nDaar: This/These\nDah: Push\nDahmaan: Remember\nDein: Keep, Guard\nDeinmaar: Keeper\nDenek: Soil\nDenos: Decline\nDey: False (“Laughably false”)\nDeyra: Daedra\nDeyto: Bury\nDez: Fate\nDii: Mine\nDiil: Undead (see also “Dilon”)\nDiin: Freeze\nDiiv: Wyrm\nDiivon: Swallow\nDilon: Dead\nDilos: Deadly\nDinok: Death\nDinoksetiid: End of time (lit. “Death of time”)\nDir: Die\nDo: Of, About\nDok: Hound\nDov: Dragonkind, Dragon (race)\nDovah: Dragon\nDovahgolz: Dragonstone\nDovahkiin: Dragonborn (lit. “Dragon-Born”)\nDovahkriid: Dragonslayer\nDovahzin: A dragon name\nDraal: Pray\nDreh: Do (verb)\nDrem: Peace\nDrey: Did\nDrog: Lord\nDrun: Bring\nDu: Devour\nDu’ul: Crown\nDuaan: Devoured\nDukaan: Dishonor\nDun: Grace\nDur: Curse\nDwiin: Steel\nDwiirok: Carve\n\nEk: Her\nEnook: Each\nEnsosin: Bewitch\nErei: Until\nEruvos: Year\nEvenaar: Extinguish\nEvgir: Season\n\nFaad: Warmth\nFaal: The (less common than “Fin”)\nFaas: Fear\nFaasnu: Fearless\nFaaz: Pain\nFah: For\nFahdon: Friend\nFahlah: Flower (lit. “For-Magicka”)\nFahliil: Elf\nFahluaan: Gardener\nFaraan: Fortune, Wealth\nFeim: Fade\nFel: Feral\nFen: Will\nFent: Shall\nFey: Grove\nFeykro: Forest\nFeyn: Bane\nFiik: Mirror\nFilok: Escape\nFin: The\nFo: Frost\nFod: When\nFodiiz: Hoar\nFolaas: Wrong\nFolook: Haunt\nFonaar: Charge\nFrin: Hot\nFrini: Eagerness\nFrod: (Battle)field\nFron: Kin, Related\nFrul: Ephemeral, Temporary\nFul: So\nFun: Told\nFundein: Unfurl(ed)\nFunt: Fail\nFunta: Failed\nFus: Force\n\nGaaf: Ghost\nGaan: Stamina\nGaar: Unleash/Release\nGahrot: Steal\nGahvon: Yield\nGalik: Pine (noun)\nGeh: Yes\nGein: One\nGeinmaar: Oneself\nGogil: Goblin\nGol: Earth\nGolah: Stubborn\nGolt: Ground\nGolz: Stone\nGoraan: Young\nGovey: Remove\nGraag: Green\nGraan: Rout\nGrah: Battle\nGrahmindol: Stratagem\nGram: Cloud\nGravuun: Autumn\nGrik: Such\nGrind: Meet\nGro: Bound\nGrohiik: Wolf\nGron: Bind\nGruth: Betrayal\nGut: Far\n\nHaal: Hand\nHaalvut: Touch\nHaas: Health\nHadrim/Hahdrim: Mind\nHah: Mind\nHahkun: Axe\nHahnu: Dream (lit. “Mind-Now”)\nHahvulon/Hahvulon: Nightmare (lit. “Mind-Dead”)\nHeim: Forge\nHet: Here\nHevno: Brutal\nHevnoraak: Brutality\nHeyv: Duty\nHi: You\nHim/Hin: Your\nHind: Wish, Hope\nHof: (context unclear, possibly related to “Hofkah”)\nHofkah: Steading\nHofkahsejun: Palace (lit. “Steading of King”)\nHofkiin: Home\nHokoron: Enemy\nHon: Hear\nHorvut: Lure\nHorvutah: Trapped\nHun: Hero\nHungaar: Heroic\nHuzrah: Hearken\n\nIiz: Ice\nIn: Master\nInhus: Mastery\n\nJaag: (context unclear)\nJer: East\nJiid: Moon\nJol: Unsteady\nJoor/Joorre: Mortal(s)\nJot: Maw\nJud: Queen\nJul: Man/Mankind/Humans\nJun: King, Light\nJunaar: Kingdom/Kingship\nJunnesejer: Kings of the East\nJuntiid: Akatosh (lit. “King Time”)\n\nKaal: Champion\nKaan: Kyne\nKaaz: Cat/Khajiit\nKah: Pride\nKein: War\nKeizaal: Skyrim\nKel/Kelle: Scroll(s) (as in Elder Scroll)\nKendov: Warrior\nKest: Tempest\nKey: Horse\nKeyn: Anvil\nKiim: Wife\nKiin: Born\nKiir: Child\nKinbok: Leader\nKinzon: Sharp\nKip: Food\nKipraan: Meal\nKlo: Sand\nKlov: Head\nKo: In\nKod: Wield\nKodaav: Bear\nKogaan: Blessings (thanks)\nKol: Crag\nKolos: In which\nKomeyt: Issue, Let loose\nKonahrik: Warlord\nKoor: Summer\nKopraan: Body\nKoraav: See\nKos: Be/Are\nKosil: Inner, within\nKotin: Into\nKrah: Cold\nKrasaar: Sickness\nKrasnovaar: Disease\nKreh: Bend\nKrein: Sun\nKren: Break\nKrent: Broken\nKriaan: Killed\nKrif: Fight\nKrii: Kill\nKriid: Slayer\nKriin: Slay\nKriist: Stand\nKriivaan: Murderer\nKriivah: Murder\nKril: Brave\nKrilot: Valiant\nKrin: Courageous\nKro: Sorcerer\nKron: Victory, win, conquer\nKrongrah: (Great) Victory\nKroniid: Conqueror\nKrosis: Sorrow (Apologies, Regret, Pity)\nKruziik: Ancient\nKul: Son\nKulaan: Prince\nKulaas: Princess\nKun: Moonlight\n\nLaan: Want, Request\nLaar: Water\nLaas: Life\nLaat: Last\nLah: Magicka\nLahney: Live\nLahvraan: Mustered\nLahvu: Army\nLeh: Lest\nLein: World\nLiiv: Wither\nLiivrah: Diminish\nLingrah: Long\nLir: Worm\nLo: Deceive\nLok: Rise (v.), Sky\nLon: Fist\nLoost: Hath\nLos: Is (used to form present tense)\nLosei: You are\nLost: Was, Have, Has, Had, Were\nLot: Great\nLovaas: Music/Song\nLuft: Face\nLumnaar: Valley\nLun: Leech\nLuv: Tear\n\nMaar: Terror, -hood, -self\nMah: Fall/Fell\nMahfaeraak: Forever\nMahlaan: Fallen\nMal: Little\nMaltiid: Brief (lit. “Little-Time”)\nMed: Like\nMey: Fool\nMeyz: Come (“to become”/“come to be”)\nMid: Loyal\nMiddovah: Ally (lit. “Loyal-Dragon”)\nMidrot/Midun: Loyalty\nMiin: Eye\nMiir: Path\nMiiraad/Miraad: Door, doorway (“miraad” is a typo)\nMiiraak: Portal\nMindin: After\nMindok: Know, Known, Knowable\nMindol: Trick\nMindoraan: Knowledgeable\nMir: Allegiance\nMon: Daughter\nMonah: Mother\nMonahven: Throat of the World (lit. “Mother Wind”)\nMorah: Focus, thought, concentration, attention\nMoro: Glory\nMorokei: Glorious\nMotaad: Shudder\nMotmah: Slip\nMotmahus: Slippery, Elusive\nMu: We\nMul: Strong, Strength\nMulaag: Strength\nMulhaan: Unmoving, unchanging, still\nMun: Man\nMunax: Cruel\nMuz: Men\n\nNaak: Eat\nNaako: Eaten\nNaaktiid: Begin (lit. “Eat-Time”)\nNaal: By\nNaan: Any\nNaar: Summit\nNaas: Tooth\nNah: Fury\nNahgahdinok: Necromancer (“Dinok” = death; “nahgah” may be wizard or fury)\nNahkip: Feed\nNahkriin: Vengeance\nNahl: Living\nNahlaas: Alive, Live\nNahlot: Silenced\nNall: By my\nNau: On\nNax: Cruelty\nNeh: Never\nNey: Both\nNi: Not\nNid/Niid: No\nNii: It\nNiin: Them\nNikrent: Unbroken\nNikriin(ne): Coward(s)\nNil: Void\nNimaar: Itself\nNin: Sting\nNir: Hunt\nNis: Cannot\nNivahriin: Cowardly (lit. “Not Sworn”)\nNok: Lie (to lie down or to tell a lie)\nNol: From\nNonvul: Noble\nNorok: Fiercest\nNos: Strike\nNu: Now\nNunon: Only\nNus: Statue\nNust: They\nNuz: But\n\nOblaan: End (noun), is over, ended\nOd: Snow\nOdus: Snowy\nOfaal: Receive\nOfan: Give\nOgiim: Orc\nOk: His\nOkaaz: Sea\nOl: As\nOm: Hair\nOn: Spirit (empty; lifeless)\nOnd: Lo\nOnik: Wise\nOnikiv: Enlightenment\nOnikaan: Wisdom\nOnt: Once\nOrin: Even\nOsos: Some\nOth: Orphan\nOv: Trust\nOzinvey: Ivory\n\nPaak: Shame\nPaal: Foe\nPaar: Ambition\nPaaz: Fair\nPah: All\nPahlok/Pahklok: Arrogance (“Pahklok” is a typo in some sources)\nPel: Write\nPelaan: Wrote\nPeyt: Rose\nPindaar: Plain(s)\nPiraak: Possess\nPogaan: Many\nPogaas: Much\nPook: Stink\nPraal: Sit, sat\nPraan: Rest\nProdah: Foretold\nPruzaan: Best\nPruzah: Good\n\nQah: Armor\nQahnaar: Vanquish, Denial\nQahnaaran: Is vanquished\nQahnaarin: Vanquisher\nQalos: Touch\nQeth: Bone\nQethsegol: (Word Wall) Stone (lit. “Bone of Earth”)\nQuethsegol: Granite\nQiilaan: Bow (verb)\nQo: Lightning\nQolaas: Herald\nQostiid: Prophecy\nQoth: Tomb\n\nRaal: Survive, last\nRaan: Animal\nRah: Gods\nRahgol: Rage\nRahgot: Anger\nRath: River\nRein: Roar\nRek: She\nRel: Domination\nRevak: Sacred\nReyliik: Race(s)\nReyth: Tree\nRii: Essence\nRiik: Gale\nRinik: Very\nRo: Balance\nRok: He\nRon: Rain\nRonaan: Archer\nRonaaz: Arrow\nRonax: Regiment\nRonit: Rival\nRos: Love\nRot: Word(s)\nRoth: Vine\nRotmulaag: Word of Power\nRovaan: Wander\nRu: Run\nRul: When\nRuth: Rage, Curses/Damn (interjection)\nRuvaak: Raven\nRuz: Then\n\nSadon: Gray, lose\nSah: Phantom\nSahlo: Weak\nSahqo: Red\nSahqon: Crimson\nSahrot: Mighty\nSahsunaar: Villager(s)\nSahvot: Faith\nSaraan: First, Awaits\nSaviik: Savior\nSe: Of\nShaan: Inspire\nShor: Shor\nShul: Sun\nSiiv: Find/Found\nSil: Soul\nSillesejoor: Mortal Souls\nSinak: Finger(s)\nSindugahvon: Unyielding\nSinon: Instead\nSivaas: Beast\nSizaan: Lost\nSlen: Flesh\nSmoliin: Passion\nSo: Sorrow\nSod: Exploit, deed, feat\nSonaan: Bard\nSonaak: Dragon Priest(s)\nSos: Blood\nSosmir: Blood Allegiance\nSosaal: Bleed\nSot: White\nSov: Shock\nSovrahzun: Mercenary, purchase\nSpaan: Shield\nStaadnau: Unbound\nStin: Free\nStinselok: Sky’s freedom\nStrun: Storm\nStrundu’ul: Stormcrown\nStrunmah: Mountain\nSu: Air\nSu’um: Breath\nSul: Day\nSuleyk: Power\nSuleyksejun: Dominion (lit. “Power of kings”)\nSunvaar: Beast(s)\nSuvulaan: Twilight\n\nTaazokaan: Tamriel\nTafiir: Thief\nTah: Pack\nTahrodiis: Treacherous\nTahrovin: Treachery\nTey: Tale\nThu’um: (Dragon) Shout, Voice\nThur: Overlord\nTiid: Time\nTiiraz: Sad\nTinvaak: Talk, Speech\nTil: There\nTogaat: Attempt\nTol: That\nToor: Inferno\nTovinaan: Searcher\nTovit: Search\nTu: Hammer\nTum: Down\nTuz: Blade\n\nUfiik: Troll\nUl: Eternity\nUm: Twin\nUn: Our\nUnraak: Marriage, marry, married\nUnslaad/Unahzaal: Unending, Ceaseless, Eternal\nUnt: Try\nUs: Before, in front of (spatially)\nUth: Command, Order\nUv: Or\nUznahgaar: Unbridled, Unending\n\nVaal: Bay (to “hold at bay”)\nVaat: Swear/Swore\nVaaz: Tear, rip (not tears from eyes)\nVah: Spring\nVahdin: Maiden\nVahlok: Guardian\nVahriin: Sworn\nVahzah/Vazah: True\nVahzen: Truth\nVed: Black\nVen: Wind\nVennesetiid: The currents of Time\nVey: Cut\nVeydo: Grass\nVeysun: Ship\nViik: Defeat\nViin: Shine\nViing: Wing\nViintaas: Shining\nViir: Dying\nVindahlheim: Forever\nVith: Serpent\nVo-...: Opposite of...\nVobalaan: Unworthy\nVod: Ago\nVodahmin: Unremembered, forgotten\nVokiin: Unborn\nVokri/Vokrii: Restore\nVokul: Evil\nVokun: Shadow\nVol: Horror\nVolaan: Intruder\nVomindok: Unknown\nVomindoraan: Incomprehensible idea\nVonun: Unseen\nVonuz: Invisible\nVogostiid: Surprised\nVos: Claw\nVoth: With\nVothaarn: Disobedience\nVukein: Combat\nVul: Dark\nVulom: Darkness\nVulon: Night\nVun: Tongue\nVur: Valor\nVus: Nirn\n\nWah: To\nWahl: Build/Create\nWahlaan: Raise, Built/Created\nWen: Whose\nWerid: Praise\nWiix: Trap\nWin: Wage\nWo: Who\nWol: Oak\nWuld: Whirlwind, Vortex\nWuldse: Vortex\nWundun: Travel\nWunduniik: Traveler\nWuth: Old\n\nYah: Seek\nYol: Fire\nYolos: Flame\nYoriik: March\nYuvon: Gold/Golden\n\nZaam: Slave\nZaamhus: Slavery\nZaan: Shout (as in “yell,” not a Dragon Shout)\nZah: Finite\nZahkrii: Sword\nZahrahmiik: Sacrifice\nZeim: Through\nZeymah: Brother(s)\nZeymahzin: Companion (lit. “Brother-Honor”)\nZii: Spirit\nZiil: Soul\nZin: Honor\nZind: Triumph\nZindro: Triumph’s\nZofaas: Fearful\nZohungaar: Heroically\nZok: Most\nZol: Most, Zombie\nZoor: Legend\nZorox: Create\nZu’u: I\nZul: (mortal) Voice\nZun: Weapon", + "display_name": "dragon_language", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Aak: Guide\nAal: May\nAam: Serve\nAan: A(n), Idea, Slave (see also “Zaam”)\nAar: Servant, Slave (see also “Zaam”)\nAav: Join\nAaz: Mercy\nAg: Burn\nAh: Hunter\nAhkrin: Courage\nAhmik: Service\nAhmul: Husband (lit. “Hunter-Strong”)\nAhraan: Wound\nAhrk: And\nAhrol: Hill\nAhst: At\nAhtiid: Wear (verb)\nAhzid: Bitter\nAl: Destroyer\nAlok: Arise\nAlun: Ever\nAm: Lion\nAmativ: Onward\nAtmora: Atmora\nAu: On\nAus: Suffer\n\nBah: Wrath\nBahlaan/Balaan: Worthy\nBahlok: Hunger\nBein: Foul (adjective)\nBel: Foul (verb)\nBex: Open\nBeyn: Scorn\nBii: Blue\nBo: Flow, Fly, Move\nBodiis: Borrow\nBok: Age\nBolaav: Grant/Granted\nBolog: Beg\nBonaar: Humble\nBormah: Father\nBovul: Flee\nBoziik: Bold(ly), Rash\nBrendon: Specter\nBrii: Beauty\nBriinah: Sister (lit. “Beauty-Fury”)\nBriinahii: (for her) sister’s\nBriinahmaar: Sisterhood\nBrit: Beautiful\nBrod: Clan\nBrom: North\nBron: Nord\nBronjun: Jarl (lit. “Nord King”)\nBruniik(ke): Savage(s) (also a reference to Akaviri)\n\nDaal: Return\nDaan/Daanii: Doom\nDaanik: Doomed\nDaar: This/These\nDah: Push\nDahmaan: Remember\nDein: Keep, Guard\nDeinmaar: Keeper\nDenek: Soil\nDenos: Decline\nDey: False (“Laughably false”)\nDeyra: Daedra\nDeyto: Bury\nDez: Fate\nDii: Mine\nDiil: Undead (see also “Dilon”)\nDiin: Freeze\nDiiv: Wyrm\nDiivon: Swallow\nDilon: Dead\nDilos: Deadly\nDinok: Death\nDinoksetiid: End of time (lit. “Death of time”)\nDir: Die\nDo: Of, About\nDok: Hound\nDov: Dragonkind, Dragon (race)\nDovah: Dragon\nDovahgolz: Dragonstone\nDovahkiin: Dragonborn (lit. “Dragon-Born”)\nDovahkriid: Dragonslayer\nDovahzin: A dragon name\nDraal: Pray\nDreh: Do (verb)\nDrem: Peace\nDrey: Did\nDrog: Lord\nDrun: Bring\nDu: Devour\nDu’ul: Crown\nDuaan: Devoured\nDukaan: Dishonor\nDun: Grace\nDur: Curse\nDwiin: Steel\nDwiirok: Carve\n\nEk: Her\nEnook: Each\nEnsosin: Bewitch\nErei: Until\nEruvos: Year\nEvenaar: Extinguish\nEvgir: Season\n\nFaad: Warmth\nFaal: The (less common than “Fin”)\nFaas: Fear\nFaasnu: Fearless\nFaaz: Pain\nFah: For\nFahdon: Friend\nFahlah: Flower (lit. “For-Magicka”)\nFahliil: Elf\nFahluaan: Gardener\nFaraan: Fortune, Wealth\nFeim: Fade\nFel: Feral\nFen: Will\nFent: Shall\nFey: Grove\nFeykro: Forest\nFeyn: Bane\nFiik: Mirror\nFilok: Escape\nFin: The\nFo: Frost\nFod: When\nFodiiz: Hoar\nFolaas: Wrong\nFolook: Haunt\nFonaar: Charge\nFrin: Hot\nFrini: Eagerness\nFrod: (Battle)field\nFron: Kin, Related\nFrul: Ephemeral, Temporary\nFul: So\nFun: Told\nFundein: Unfurl(ed)\nFunt: Fail\nFunta: Failed\nFus: Force\n\nGaaf: Ghost\nGaan: Stamina\nGaar: Unleash/Release\nGahrot: Steal\nGahvon: Yield\nGalik: Pine (noun)\nGeh: Yes\nGein: One\nGeinmaar: Oneself\nGogil: Goblin\nGol: Earth\nGolah: Stubborn\nGolt: Ground\nGolz: Stone\nGoraan: Young\nGovey: Remove\nGraag: Green\nGraan: Rout\nGrah: Battle\nGrahmindol: Stratagem\nGram: Cloud\nGravuun: Autumn\nGrik: Such\nGrind: Meet\nGro: Bound\nGrohiik: Wolf\nGron: Bind\nGruth: Betrayal\nGut: Far\n\nHaal: Hand\nHaalvut: Touch\nHaas: Health\nHadrim/Hahdrim: Mind\nHah: Mind\nHahkun: Axe\nHahnu: Dream (lit. “Mind-Now”)\nHahvulon/Hahvulon: Nightmare (lit. “Mind-Dead”)\nHeim: Forge\nHet: Here\nHevno: Brutal\nHevnoraak: Brutality\nHeyv: Duty\nHi: You\nHim/Hin: Your\nHind: Wish, Hope\nHof: (context unclear, possibly related to “Hofkah”)\nHofkah: Steading\nHofkahsejun: Palace (lit. “Steading of King”)\nHofkiin: Home\nHokoron: Enemy\nHon: Hear\nHorvut: Lure\nHorvutah: Trapped\nHun: Hero\nHungaar: Heroic\nHuzrah: Hearken\n\nIiz: Ice\nIn: Master\nInhus: Mastery\n\nJaag: (context unclear)\nJer: East\nJiid: Moon\nJol: Unsteady\nJoor/Joorre: Mortal(s)\nJot: Maw\nJud: Queen\nJul: Man/Mankind/Humans\nJun: King, Light\nJunaar: Kingdom/Kingship\nJunnesejer: Kings of the East\nJuntiid: Akatosh (lit. “King Time”)\n\nKaal: Champion\nKaan: Kyne\nKaaz: Cat/Khajiit\nKah: Pride\nKein: War\nKeizaal: Skyrim\nKel/Kelle: Scroll(s) (as in Elder Scroll)\nKendov: Warrior\nKest: Tempest\nKey: Horse\nKeyn: Anvil\nKiim: Wife\nKiin: Born\nKiir: Child\nKinbok: Leader\nKinzon: Sharp\nKip: Food\nKipraan: Meal\nKlo: Sand\nKlov: Head\nKo: In\nKod: Wield\nKodaav: Bear\nKogaan: Blessings (thanks)\nKol: Crag\nKolos: In which\nKomeyt: Issue, Let loose\nKonahrik: Warlord\nKoor: Summer\nKopraan: Body\nKoraav: See\nKos: Be/Are\nKosil: Inner, within\nKotin: Into\nKrah: Cold\nKrasaar: Sickness\nKrasnovaar: Disease\nKreh: Bend\nKrein: Sun\nKren: Break\nKrent: Broken\nKriaan: Killed\nKrif: Fight\nKrii: Kill\nKriid: Slayer\nKriin: Slay\nKriist: Stand\nKriivaan: Murderer\nKriivah: Murder\nKril: Brave\nKrilot: Valiant\nKrin: Courageous\nKro: Sorcerer\nKron: Victory, win, conquer\nKrongrah: (Great) Victory\nKroniid: Conqueror\nKrosis: Sorrow (Apologies, Regret, Pity)\nKruziik: Ancient\nKul: Son\nKulaan: Prince\nKulaas: Princess\nKun: Moonlight\n\nLaan: Want, Request\nLaar: Water\nLaas: Life\nLaat: Last\nLah: Magicka\nLahney: Live\nLahvraan: Mustered\nLahvu: Army\nLeh: Lest\nLein: World\nLiiv: Wither\nLiivrah: Diminish\nLingrah: Long\nLir: Worm\nLo: Deceive\nLok: Rise (v.), Sky\nLon: Fist\nLoost: Hath\nLos: Is (used to form present tense)\nLosei: You are\nLost: Was, Have, Has, Had, Were\nLot: Great\nLovaas: Music/Song\nLuft: Face\nLumnaar: Valley\nLun: Leech\nLuv: Tear\n\nMaar: Terror, -hood, -self\nMah: Fall/Fell\nMahfaeraak: Forever\nMahlaan: Fallen\nMal: Little\nMaltiid: Brief (lit. “Little-Time”)\nMed: Like\nMey: Fool\nMeyz: Come (“to become”/“come to be”)\nMid: Loyal\nMiddovah: Ally (lit. “Loyal-Dragon”)\nMidrot/Midun: Loyalty\nMiin: Eye\nMiir: Path\nMiiraad/Miraad: Door, doorway (“miraad” is a typo)\nMiiraak: Portal\nMindin: After\nMindok: Know, Known, Knowable\nMindol: Trick\nMindoraan: Knowledgeable\nMir: Allegiance\nMon: Daughter\nMonah: Mother\nMonahven: Throat of the World (lit. “Mother Wind”)\nMorah: Focus, thought, concentration, attention\nMoro: Glory\nMorokei: Glorious\nMotaad: Shudder\nMotmah: Slip\nMotmahus: Slippery, Elusive\nMu: We\nMul: Strong, Strength\nMulaag: Strength\nMulhaan: Unmoving, unchanging, still\nMun: Man\nMunax: Cruel\nMuz: Men\n\nNaak: Eat\nNaako: Eaten\nNaaktiid: Begin (lit. “Eat-Time”)\nNaal: By\nNaan: Any\nNaar: Summit\nNaas: Tooth\nNah: Fury\nNahgahdinok: Necromancer (“Dinok” = death; “nahgah” may be wizard or fury)\nNahkip: Feed\nNahkriin: Vengeance\nNahl: Living\nNahlaas: Alive, Live\nNahlot: Silenced\nNall: By my\nNau: On\nNax: Cruelty\nNeh: Never\nNey: Both\nNi: Not\nNid/Niid: No\nNii: It\nNiin: Them\nNikrent: Unbroken\nNikriin(ne): Coward(s)\nNil: Void\nNimaar: Itself\nNin: Sting\nNir: Hunt\nNis: Cannot\nNivahriin: Cowardly (lit. “Not Sworn”)\nNok: Lie (to lie down or to tell a lie)\nNol: From\nNonvul: Noble\nNorok: Fiercest\nNos: Strike\nNu: Now\nNunon: Only\nNus: Statue\nNust: They\nNuz: But\n\nOblaan: End (noun), is over, ended\nOd: Snow\nOdus: Snowy\nOfaal: Receive\nOfan: Give\nOgiim: Orc\nOk: His\nOkaaz: Sea\nOl: As\nOm: Hair\nOn: Spirit (empty; lifeless)\nOnd: Lo\nOnik: Wise\nOnikiv: Enlightenment\nOnikaan: Wisdom\nOnt: Once\nOrin: Even\nOsos: Some\nOth: Orphan\nOv: Trust\nOzinvey: Ivory\n\nPaak: Shame\nPaal: Foe\nPaar: Ambition\nPaaz: Fair\nPah: All\nPahlok/Pahklok: Arrogance (“Pahklok” is a typo in some sources)\nPel: Write\nPelaan: Wrote\nPeyt: Rose\nPindaar: Plain(s)\nPiraak: Possess\nPogaan: Many\nPogaas: Much\nPook: Stink\nPraal: Sit, sat\nPraan: Rest\nProdah: Foretold\nPruzaan: Best\nPruzah: Good\n\nQah: Armor\nQahnaar: Vanquish, Denial\nQahnaaran: Is vanquished\nQahnaarin: Vanquisher\nQalos: Touch\nQeth: Bone\nQethsegol: (Word Wall) Stone (lit. “Bone of Earth”)\nQuethsegol: Granite\nQiilaan: Bow (verb)\nQo: Lightning\nQolaas: Herald\nQostiid: Prophecy\nQoth: Tomb\n\nRaal: Survive, last\nRaan: Animal\nRah: Gods\nRahgol: Rage\nRahgot: Anger\nRath: River\nRein: Roar\nRek: She\nRel: Domination\nRevak: Sacred\nReyliik: Race(s)\nReyth: Tree\nRii: Essence\nRiik: Gale\nRinik: Very\nRo: Balance\nRok: He\nRon: Rain\nRonaan: Archer\nRonaaz: Arrow\nRonax: Regiment\nRonit: Rival\nRos: Love\nRot: Word(s)\nRoth: Vine\nRotmulaag: Word of Power\nRovaan: Wander\nRu: Run\nRul: When\nRuth: Rage, Curses/Damn (interjection)\nRuvaak: Raven\nRuz: Then\n\nSadon: Gray, lose\nSah: Phantom\nSahlo: Weak\nSahqo: Red\nSahqon: Crimson\nSahrot: Mighty\nSahsunaar: Villager(s)\nSahvot: Faith\nSaraan: First, Awaits\nSaviik: Savior\nSe: Of\nShaan: Inspire\nShor: Shor\nShul: Sun\nSiiv: Find/Found\nSil: Soul\nSillesejoor: Mortal Souls\nSinak: Finger(s)\nSindugahvon: Unyielding\nSinon: Instead\nSivaas: Beast\nSizaan: Lost\nSlen: Flesh\nSmoliin: Passion\nSo: Sorrow\nSod: Exploit, deed, feat\nSonaan: Bard\nSonaak: Dragon Priest(s)\nSos: Blood\nSosmir: Blood Allegiance\nSosaal: Bleed\nSot: White\nSov: Shock\nSovrahzun: Mercenary, purchase\nSpaan: Shield\nStaadnau: Unbound\nStin: Free\nStinselok: Sky’s freedom\nStrun: Storm\nStrundu’ul: Stormcrown\nStrunmah: Mountain\nSu: Air\nSu’um: Breath\nSul: Day\nSuleyk: Power\nSuleyksejun: Dominion (lit. “Power of kings”)\nSunvaar: Beast(s)\nSuvulaan: Twilight\n\nTaazokaan: Tamriel\nTafiir: Thief\nTah: Pack\nTahrodiis: Treacherous\nTahrovin: Treachery\nTey: Tale\nThu’um: (Dragon) Shout, Voice\nThur: Overlord\nTiid: Time\nTiiraz: Sad\nTinvaak: Talk, Speech\nTil: There\nTogaat: Attempt\nTol: That\nToor: Inferno\nTovinaan: Searcher\nTovit: Search\nTu: Hammer\nTum: Down\nTuz: Blade\n\nUfiik: Troll\nUl: Eternity\nUm: Twin\nUn: Our\nUnraak: Marriage, marry, married\nUnslaad/Unahzaal: Unending, Ceaseless, Eternal\nUnt: Try\nUs: Before, in front of (spatially)\nUth: Command, Order\nUv: Or\nUznahgaar: Unbridled, Unending\n\nVaal: Bay (to “hold at bay”)\nVaat: Swear/Swore\nVaaz: Tear, rip (not tears from eyes)\nVah: Spring\nVahdin: Maiden\nVahlok: Guardian\nVahriin: Sworn\nVahzah/Vazah: True\nVahzen: Truth\nVed: Black\nVen: Wind\nVennesetiid: The currents of Time\nVey: Cut\nVeydo: Grass\nVeysun: Ship\nViik: Defeat\nViin: Shine\nViing: Wing\nViintaas: Shining\nViir: Dying\nVindahlheim: Forever\nVith: Serpent\nVo-...: Opposite of...\nVobalaan: Unworthy\nVod: Ago\nVodahmin: Unremembered, forgotten\nVokiin: Unborn\nVokri/Vokrii: Restore\nVokul: Evil\nVokun: Shadow\nVol: Horror\nVolaan: Intruder\nVomindok: Unknown\nVomindoraan: Incomprehensible idea\nVonun: Unseen\nVonuz: Invisible\nVogostiid: Surprised\nVos: Claw\nVoth: With\nVothaarn: Disobedience\nVukein: Combat\nVul: Dark\nVulom: Darkness\nVulon: Night\nVun: Tongue\nVur: Valor\nVus: Nirn\n\nWah: To\nWahl: Build/Create\nWahlaan: Raise, Built/Created\nWen: Whose\nWerid: Praise\nWiix: Trap\nWin: Wage\nWo: Who\nWol: Oak\nWuld: Whirlwind, Vortex\nWuldse: Vortex\nWundun: Travel\nWunduniik: Traveler\nWuth: Old\n\nYah: Seek\nYol: Fire\nYolos: Flame\nYoriik: March\nYuvon: Gold/Golden\n\nZaam: Slave\nZaamhus: Slavery\nZaan: Shout (as in “yell,” not a Dragon Shout)\nZah: Finite\nZahkrii: Sword\nZahrahmiik: Sacrifice\nZeim: Through\nZeymah: Brother(s)\nZeymahzin: Companion (lit. “Brother-Honor”)\nZii: Spirit\nZiil: Soul\nZin: Honor\nZind: Triumph\nZindro: Triumph’s\nZofaas: Fearful\nZohungaar: Heroically\nZok: Most\nZol: Most, Zombie\nZoor: Legend\nZorox: Create\nZu’u: I\nZul: (mortal) Voice\nZun: Weapon", + "display_name": "dragon_tongue", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Verses for Ragnar the Red song:\nThere once was a hero named Ragnar the Red, who came riding to Whiterun from ole Rorikstead!\nAnd the braggart did swagger and brandish his blade, as he told of bold battles and gold he had made!\nBut then he went quiet, did Ragnar the Red, when he met the shieldmaiden Matilda who said...\nOh, you talk and you lie and you drink all our mead! Now I think it's high time that you lie down and bleed!\nAnd so then came the clashing and slashing of steel, as the brave lass Matilda charged in full of zeal!\nAnd the braggart named Ragnar was boastful no moooooree... when his ugly red head rolled around on the floor!", + "display_name": "ragnar_the_red", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Verses for The Dragonborn Comes song:\nOur hero, our hero, claims a warrior's heart.\nI tell you, I tell you, the Dragonborn comes.\nWith a Voice wielding power of the ancient Nord art.\nBelieve, believe, the Dragonborn comes.\nIt's an end to the evil, of all Skyrim's foes.\nBeware, beware, the Dragonborn comes.\nFor the darkness has passed, and the legend yet grows.\nYou'll know, You'll know the Dragonborn's come.", + "display_name": "the_dragonborn_comes", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Verses for The Age of Oppression song:\nWe drink to our youth, and to days come and gone. For the age of oppression is now nearly done.\nWe'll drive out the Empire from this land that we own. With our blood and our steel we will take back our home.\nAll hail to Ulfric! You are the High King! In your great honor we drink and we sing.\nWe're the children of Skyrim, and we fight all our lives. And when Sovngarde beckons, every one of us dies!\nBut this land is ours and we'll see it wiped clean. Of the scourge that has sullied our hopes and our dreams.", + "display_name": "the_age_of_oppression", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Verses for The Age of Aggression song:\nWe drink to our youth, to days come and gone. For the age of aggression is just about done.\r\nWe'll drive out the Stormcloaks and restore what we own. With our blood and our steel we'll take back our home.\r\nDown with Ulfric the killer of kings. On the day of your death we'll drink and we'll sing.\r\nWe're the children of Skyrim, and we fight all our lives. And when Sovngarde beckons, every one of us dies!\r\nBut this land is ours and we'll see it wiped clean. Of the scourge that has sullied our hopes and our dreams.", + "display_name": "the_age_of_aggression", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Verses for the Dragonborn Song:\nDragonborn, Dragonborn, by his honor is sworn, To keep evil forever at bay!\r\nAnd the fiercest foes rout when they hear triumph's shout, Dragonborn, for your blessing we pray!\r\nHearken now, sons of snow, to an age, long ago, and the tale, boldly told, of the one!\r\nWho was kin to both wyrm, and the races of man, with a power to rival the sun!\r\nAnd the Voice, he did wield, on that glorious field, when great Tamriel shuddered with war!\r\nMighty Thu'um, like a blade, cut through enemies all, as the Dragonborn issued his roar!\r\nAnd the Scrolls have foretold, of black wings in the cold, that when brothers wage war come unfurled!\r\nAlduin, Bane of Kings, ancient shadow unbound, with a hunger to swallow the world!\r\nBut a day, shall arise, when the dark dragon's lies, will be silenced forever and then!\r\nFair Skyrim will be free from foul Alduin's maw, Dragonborn be the savior of men!", + "display_name": "dragonborn_song", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A kalpa is an epoch of time consisting of the birth, life, and death of a world. The chaos of the Dawn Era is believed to take place between each kalpa in a period of untime that marks the end of the previous world and allows the creation of the next. The moment when time became linear is considered to have been the first day of the Merethic Era and of the current kalpa as a whole. These segments of time are sometimes subject to temporary interruptions called Dragon Breaks, which are momentary returns to the non-linearity and chaos of the Dawn Era.\n\nCultural Beliefs:\nIt is said that both Men and Mer know Tamriel is where the \"nexus of creation\" took place, as well as where the Last War will happen.\n\nThe Nords believe that the current kalpa is a byproduct of its predecessor's destruction at the hands of Alduin the World-Eater, and that this world shall also be destroyed to create a new one. What precedes it is the Final War, the final doom, the final battle, where the Nords \"will show their final, best worth\".\n\nRedguards and Argonians also believe in a cyclical world that is, or at least was, periodically consumed by Satakal and Atakota respectively. The Redguards believe that if they do not honor their ancestors, it will bring about a new \"Ending Time\", worse again than those before.\n\nThe spirits of Khajiit whose souls have not been corrupted are taken by Khenarthi to the Sands Behind the Stars, where they await for the \"Next Pounce\". Pre-ri'Datta myths state that at the end of time, Khenarthi will summon the united spirits of the Khajiiti people to defend creation.\n\nThe Reachmen believe that at the \"end of all days\", Hircine will fight alongside them, and the Dark Heart will beat again, reawakened by feeding on the deaths of mortals, and its darkness will spread from its depths to consume everything, sparing only Namira's faithful.\n\nAccording to some sources, the destruction of Lyg took place in the prior kalpa. It is also said that the \"half-Elf\" Umaril's divine father hailed from the previous kalpa.", + "display_name": "kalpa", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Lunar Lorkhan\r\nby Fal Droon\r\n*A theory about the moons Masser and Secunda*\r\n\r\nI will not go into the varying accounts of what happened at Adamantine Tower, nor will I relate the War of Manifest Metaphors that rendered those stories unable to support most qualities of what is commonly known as \"narrative.\" We all have our favorite Lorkhan story and our favorite Lorkhan motivation for the creation of Nirn and our favorite story of what happened to His Heart. But the Theory of the Lunar Lorkhan is of special note.\r\n\r\nIn short, the Moons were and are the two halves of Lorkhan's 'flesh-divinity'. Like the rest of the Gods, Lorkhan was a plane(t) that participated in the Great Construction... except where the Eight lent portions of their heavenly bodies to create the mortal plane(t), Lorkhan's was cracked asunder and his divine spark fell to Nirn as a shooting star \"to impregnate it with the measure of its existence and a reasonable amount of selfishness.\"\r\n\r\nMasser and Secunda therefore are the personifications of the dichotomy-- the \"Cloven Duality,\" according to Artaeum-- that Lorkhan legends often rail against: ideas of the anima/animus, good/evil, being/nothingness, the poetry of the body, throat, and moan/silence-as-the-abortive, and so on -- set in the night sky as Lorkhan's constant reminder to his mortal issue of their duty.\r\n\r\nFollowers of this theory hold that all other \"Heart Stories\" are mythical degradations of the true origin of the moons (and it needn't be said that they observe the \"hollow crescent theory\" as well).", + "display_name": "the_lunar_lorkhan", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skyshards and Sky Prisms are a rare type of meteoric glass. Sometimes called \"Shards of Aetherius\", skyshards are shards of Aetherial magicka that carry the essence of Nirn. They are sometimes linked to Lorkhan or Anu.\r\n\r\nLike other aetherial fragments, Sky Prisms fall to Nirn from Aetherius through the stars, although only during specific lunar alignments. As they fall, the Prisms can be seen splitting into three shards. If three skyshards are subsequently brought together, they reform into a silvery prism and confer the magical energy to any nearby being. As well as allowing mortals to become more powerful through the creation of prisms, absorbing the power of even a single skyshard allows a Soul Shriven to be re-attuned to Anuic magic and thus return to Nirn from Oblivion.\r\n\r\nAlthough usually found outdoors, skyshards are often discovered and brought underground by hoarders. The Ayleids were known to harness skyshards in some way. They can also be summoned through ritual, even in Oblivion. Realms such as Coldharbour and the Clockwork City have a significant number of inexplicable fallen skyshards. It is believed that Breton warriors used to incorporate skyshard slivers in the hilts of their swords.", + "display_name": "skyshard", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dark Moon (or Dark Moons), also known as the Dead Moon, the Hidden Moon, the Hollow Moon, the Ghost Moon, the True Spirit of Lorkhaj, and the Den of Lorkhaj, is rumored to be the corpse of the Missing God, Lorkhaj. Due to the two moons, solar eclipses can happen in Tamriel several times a year and are known as Vampire Days. During a dark eclipse, however, both moons eclipse the sun, and this alignment reveals the \"third moon\" (or \"missing moon\"). This event is significant to the Khajiiti people's spiritual duality. On the upside, their spiritual leaders known as Manes are born during this occurrence. However, those born under the dark eclipse are sensitive to the moons, and thus are subject to the call of the Dark Heart, which could turn them into dro-m'Athra. The Bent Cats themselves show reverence to the Dark Moon, and are referred to as Children of the Dark Moon. Their steeds, the Rahd-m'Athra, are thought to hail from the Dark Moons. Khajiit deviants may mark themselves with tattoos reminiscent of the dark moon to show their defiance of social conventions. Though initially a dangerous being, it is said that Lorkhaj was ultimately redeemed by Azurah and became protector of the Lunar Lattice, with the Moon Beast prowling the Lattice to protect souls from the Void from than on, thus ending its alignment with Namiira. Thus the Hidden Moon is considered the true spirit of Lorkhaj, freed of darkness.\r\n\r\nDepending on the context, the term \"dark moons\" can vary in meaning. One who is born during a dark eclipse may be described by their peers as \"born under Dark Moons\". Various accounts exist on how to craft Daedric armaments, but one belief is that it should never be done during an eclipse. When Jone and Jode are both new, the Khajiit may refer to the sky as having \"two dark moons\". Two dark moons symbolize bad luck. Similarly, Khajiit often exclaim \"dark moons\" as a form of expression when misfortune occurs. New moons are considered the \"dark gambol\" of the dro-m'Athra. The Crow-Wife Clan of Reachmen sacrifice people at random every two-moons'-dark to Namira upon the Ever-Oozing Altar. \"Sangiin's Midnight\" is another term used for when both moons are dark, and Khajiit may turn to using bright crimson red claw polish during this time.", + "display_name": "dark_moon", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pridehome was a monastery of Alkosh(Akatosh) in Tenmar Forest in Elsweyr during the 2nd Era, destroyed by a disciple of the temple turned evil.\n\nPridehome served as a home for the adepts who follow the teachings of the God of Time. A secluded place. A place where they prepared for the Doom to Come, a time when the Dragons return and bring unbalance to the world.\n\nChampion Ja'darri heard the call of Alkosh and crafted Pridehome, making it real for the rest of us. Yes, she fought the Black Beast. Yes, she died even as she succeeded. Yet she succeeded only for a time, in your mind. But, yes, she has always existed and succeeded. She will always exist.", + "display_name": "mane", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The morphology of Khajiit is determined by their date of birth rather than the shape of their parents. It is intrinsically tied to the phases of Jone and Jode and the Lunar Lattice, also known as the ja-Kha'jay. After birth, Khajiit look very similar to one another and are smaller than human newborns. Within weeks, their individual morphology becomes more clear, and their growth is faster than that of humans. The lifespan of Khajiit is around the same as men.\n\nA Khajiit's shape is determined upon birth, and they will remain in that form the rest of their life. It should not be compared to shape-shifting, as Lycanthropy is. It is possible for Khajiit to become werewolves, but lycanthropy is considered heretical to the Lunar Lattice.\n\nThere are seventeen distinct \"furstocks\", different variations of Khajiit, although the Imperial Geographical Society has previously claimed that there are more than twenty. Furstocks with the suffix of -raht are generally bigger than their non-raht counterparts. Common to all Khajiit is their weakness for sweets, especially Moon Sugar. Different furstocks can engage in romantic pairings, though some can prove to be more physically challenging than others.\n\nWithin Khajiiti society, all forms are granted respect regardless of size or shape, but outside of Elsweyr, less humanoid Khajiit such as Alfiq and Senche-raht face more discrimination than their bipedal counterparts. Some non-Khajiit don't take the Alfiq seriously because they look like housecats, assuming they have the intelligence of said animals. Still others attempt to pet and cuddle full-grown Alfiq as if they were pet cats, which the Alfiq find demeaning.\n\nThe following list shows all Khajiiti furstocks and their moon-phase. Note how some sources partially speak of different moon-phases for the same breeds.\n\nAlfiq:\nThe Alfiq (occasionally pluralized as \"Alfiqs\") are a diminutive furstock of magically gifted, quadrepedal Khajiit, who resemble typical housecats. Their resemblance to common housecats has led many to treat them as such, whether by downplaying their intelligence, cooing at them or attempting to cuddle them. While it is rumored among outsiders that Alfiq are mute, they are in fact capable of speech. The misconception that Alfiq are incapable of speech may derive from the scholarly reduction of Alfiq to the status of housecats, or from a disinclination of Alfiq to talk in the presence of outsiders.\n\nDue to the disrespect that Alfiq get as a result of their form, they rarely travel outside Elsweyr. All these factors resulted in Alfiq resenting being labeled as housecats, which they consider patronizing and irritating. The grave lack of knowledge outsiders have of them does allow Alfiq to pose as housecats in order to serve as information gatherers. Alfiq wear clothing, but as they are unable to naturally put it on themselves, they either have others do it for them, or they use magic to clothe themselves.\n\nSome Alfiq live in small houses that are big enough to accommodate them, but too small for non-Alfiq visitors to enter. While they have no thumbs and are too small for manual labor, Alfiq may take jobs as accountants in places where heavy lifting makes up a bulk of the available work. They are capable of casting spells through their tails.\n\nAlfiq-raht:\nThe Alfiq-raht are a quadrepedal furstock of Khajiit. Little is known about their appearance except that they are slightly bigger than the Alfiq. They are sensitive about being mistaken for Alfiq, as their larger size is considered a matter of pride. They are said to make great leaders. \"As crazy as an Alfiq-raht in heat\" was used as an expression in the Second Era.\n\nCathay:\nThe Cathay are a bipedal furstock of Khajiit. Like the Suthay-raht, the Cathay have upright pointed ears, fur covering their entire bodies, and long tails. However, Cathay are slightly larger and stronger than Suthay-raht, around the size of most Men and Mer. Unlike the Suthay-raht, the Cathay are plantigrades, walking flat on their foot and with a skeletal structure much more similar to that of Men and Mer.\n\n*The Cathay are among the most commonly seen Khajiit throughout Tamriel.\n\nCathay-raht:\nThe Cathay-raht are a bipedal furstock of Khajiit. Khajiit of this furstock were nicknamed as \"jaguar-men\" by the Imperial Geographical Society, though many do not actually ressemble jaguars. Khajiit of this furstock naturally resemble Cathay, albeit being larger. They are said to be more agile than a werewolf, and make great warriors. They possess phallic barbs.\n\nDuring the Five Year War, the Cathay-raht were deployed as powerful front-line infantry against the forces of Valenwood.\n\nDagi:\nThe Dagi are a less common furstock of the Khajiit, living in the southern marshes and jungle regions of Elsweyr, as well as the Tenmar Forest. Physically, they have facial features that are comparable to that of lynxes and are short in stature, making them among the smallest of the furstocks. Due to their light weight, they have been reported as being able to dwell in higher branches of trees that cannot hold a Bosmer. There are said to be entire communities of Dagi that live on branches. With their inclination to climb trees, they have been compared to monkeys, though this is considered insulting.\n\nHowever, some folklore claims that a mummified Dagi paw can grant wishes at a price, mirroring the stories of Monkey paws among the Bosmer. Dagi are said to be skilled spellcasters, similar to the Alfiq.\n\nDagi-raht:\nThe Dagi-raht are a less common bipedal furstock of the Khajiit. Similar to the Dagi, Dagi-raht's facial features typically resemble that of lynxes, but some variations exist. They are slightly larger than the Dagi, however the difference between them is considered the slightest of all furstocks. They also prefer to live among the trees rather than on the ground, and are reported to live in the Tenmar Forest.\n\nDue to their stature and light frame, they are able to dwell in the higher jungle branches that cannot hold a Bosmer's weight. Additionally, they are suspected to have more talent with magic than outsider stereotypes would suggest, though this is a generality. Much like with other races, levels of talent vary between individuals. They are said to be especially knowledgeable of Mysticism.\n\nOhmes:\nThe Ohmes are a bipedal furstock of Khajiit. They are said to resemble elves, specifically Bosmer, though they are sometimes shorter. To avoid being mistaken as such, many Ohmes tattoo or paint their faces to resemble a feline aspect. They have also occasionally been described as man-like and man-faced. They are said to be the only furstock not to receive the blessing of fur. They are said make excellent infiltrators.\n\nThe Imperial Geographical Society has claimed them to be the most common kind of Khajiit to be encountered outside of Elsweyr, usually as adventurers or diplomats.\n\nOhmes-raht:\nThe Ohmes-raht are a bipedal furstock of Khajiit. Like the Ohmes, they can easily be mistaken as men or elves, though have a stronger resemblance to humans. They are one of the furstocks that walk plantigrade, much like humans.\n\nHowever, despite their similarities to men and mer, they still display features that mark them as Khajiit. The Ohmes-raht have tails and their bodies tend to be covered with a layer of thin fur. Much like their Ohmes kin, they also paint their faces to resemble a feline-aspect.\n\nSome early literature would say Lorkhaj had Azurah make the Ohmes-raht to provide guidance to humanity. As a result, they could be found among the kings of men. The spirit Boethra has been depicted as distinct from any known furstock, but displays some similarity to the Ohmes-raht.\n\nPahmar:\nThe Pahmar are a furstock of Khajiit. The Pahmar are a giant bipedal furstock, who are similar to their larger counterparts, the Pahmar-raht, and resemble Senche-Tigers. Like the Pahmar-raht, the Pahmar, are often employed as bodyguards and warriors, due to their powerful and robust physique. Due to their physique, foreigners will write them off as \"big, dumb brutes\", though Pahmar themselves can very much be kind and gentle souls.\n\nPahmar-raht:\nThe Pahmar-raht are a giant bipedal Khajiit furstock that have plantigrade legs and are very tall. They are described as the greatest generals and strategists among the Khajiit. Due to them being the strongest of furstocks, they are usually deployed as bodyguards and warriors. They are sometimes ridden upon by the much smaller Alfiq. Like the Pahmar furstock, most resemble Senche-Tigers, but Pahmar-raht differ in that they are larger and more dangerous.\n\nKhunzar-ri, a legendary Khajiit hero, was a Pahmar-raht.\n\nSenche:\nThe Senche are a quadrupedal furstock of Khajiit. They are often confused with their cousins of lesser intelligence, Senche-Cats. As such, they are often also called Senche-Tigers. Part of this confusion is due to the Khajiit also using the term Senche to describe the less intelligent species. They are described as \"Great Chiefs of Lesser Cats\", and their souls are said to be purest and most incorruptible of all Khajiit. Some may use them as steeds if the Senche permits them to.\n\nThe Senche furstock is said to be similar to Pahmar-raht in size. They are said to be very large, standing about as tall as an Altmer, weighing as much as twenty of them, or having a shoulder height of a horse. Though these measurements may be a bit exaggerated. Their forelimbs are thick, and their rear limbs are only half as long, giving them an apelike appearance. They have tawny fur, ribboned with stripes the color of dried blood. They are smaller and faster than Senche-raht.\n\nSenche-raht:\nThe Senche-raht are a quadruped furstock of Khajiit. Nicknamed \"battlecats\", the Senche-raht are larger and slower than the Senche. They possess a shorter body-span and straighter legs. The average Senche-raht is claimed to stand as tall as two Altmer and can weigh as much or more than fifty. However, these measurements may be exaggerated. Nonetheless, they are the largest of all Khajiit furstocks.\n\nDue to their appearance, Senche-rahts are often mistaken for beasts outside of Elsweyr and may be attacked on sight. Senche-rahts are intelligent beings with great memory, are capable of speech, and can cast spells. Although like the Senche, they can function as mounts and beasts of burden and war, they dislike being lowered to a beastly status. They prefer to be seen as equals and dislike when their riders are labeled as owners and handlers. Non-Khajiit may assume Senche-raht cannot speak the common language, or that they merely serve as mounts. This assumption is incorrect, as Senche-raht are perfectly capable of performing jobs, and have even become successful merchant lords.\n\nSenche-raht are excellent hunters, and some prefer to acquire their everyday meals by hunting animals in the wilderness.\n\nSuthay:\nThe Suthay are a furstock of Khajiit. The Suthay are similar to the Suthay-raht, save that they are of lesser stature. Like Suthay-raht, they are evidently bipedal and have digitigrade legs. In early literature, the Suthay's role in Khajiit society was believed to involve being prepared for the end of time.\n\nSuthay-raht:\nThe Suthay-raht are a bipedal furstock of Khajiit. They are sometimes, incomprehensibly for Khajiit themselves, nicknamed \"Ja-Khajiit\" or \"Ja'Khajiit\". They are similar in build to the races of man, but like Suthay, they have digitigrade legs. They are typically similar in height to men, but some are said to have trouble fitting in small spaces. They are completely covered in fur of different colors and patterns and have a tail. Claws are present on hands and feet, and their heads appear very cat-like.\n\nSuthay-raht are known to be good jumpers, agile, sneaky and having a bold spirit. This makes them good adventurers and traders. They are however not as good warriors as Cathay-raht. They are said to be fit to endure harsh punishment, described as burden bearers. Suthay-raht are known to purr and hiss. They also have slight phallic barbs.\n\nThe Suthay-raht furstock was the most common in Morrowind, specifically on Vvardenfell, towards the end of the Third Era.\n\nTojay:\nThe Tojay are a furstock of Khajiit. Little is known of the Tojay, except that they live in the southern marshes and jungle regions of Elsweyr, such as in the Tenmar Forest. They are said to be much like the Cathay. Despite being depicted with digitigrade legs, the Tojay have been described as having plantigrade legs. Tojay are known to be dancers, and they are said wield strange magics.\n\nTojay-raht:\nThe Tojay-raht are a bipedal furstock of Khajiit. While much about the Tojay-raht is unknown, it is evident that they are bipedal and have digitigrade legs. Additionally, The Tojay-raht are renowned for their exceptional combat skills, making them masterful fighters in battle and they are larger than their non-raht counterparts, the Tojay.\n\nMane:\nThe Mane is a unique type of Khajiit. Khajiit tradition holds that only one Mane can be alive at one time and, more specifically, believe that there is actually only one Mane who is reborn again and again in different bodies. There has been no recorded incident of more than one Mane contending for power, although whether due to the truth in the Khajiit belief or whether the ruling Mane takes care of any potential rivals is unknown. Manes can only be born under a rare alignment of the moons Masser and Secunda when, according to legend, a third moon actually appears. In older days the Khajiit would shave off their manes in deference to the Mane, braiding them into locks which the Mane would incorporate into its own mane/headdress. The Mane is so weighted down by the hair that movement is difficult without aid and they often travel the countryside by means of a palanquin. As the population grew, however, this became impractical. As a result, the headdress now only includes hair of the Mane's tribe and Warrior Guard attached to it, which includes several hundred in number.", + "display_name": "furstock", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Mask of Alkosh is a holy relic of the Dragon-Cat Alkosh, his light willing it into existence to help mend the tapestry of time, and is worn by the champions of the Pride of Alkosh. It was first worn by the Ja'darri the Endless, the first champion of Alkosh and the founder of the Pride of Alkosh. A Dragon must awaken the dormant power within the mask before it can be used. When the mask is empowered, it imbues its wielder, known as a Mask-Bearer, with extraordinary power.\r\n\r\nSome may be inclined to compare the Mask of Alkosh to the Amulet of Kings due to the nature of the relic and the power it bestows upon its Mask-Bearer when empowered by a Dragon. While they are similar, and both relics of the Dragon gods of two different cultures, there is no apparent connection between the two. The mask's physical appearance is comparable to a Dragon Priest Mask, and when the mask is empowered, the user is enveloped in an aura identical in appearance to the Dragon Aspect Dragon Shout.\r\n\r\nHistory:\r\nThe Mask of Alkosh was first used by the Khajiiti hero Ja'darri in ancient times to seal away a powerful Dragon named Laatvulon. She was the first to be granted the mask. She attempted to petition the Dragon Nahfahlaar to empower the Mask of Alkosh so that she could defeat Laatvulon, but he refused. Not all was lost, as Nahfahlaar did give Ja'darri one of his horns to aid in the battle against Laatvulon. The dragonhorn was effective, but without Nahfahlaar's aid in empowering the mask, The best Ja'darri and the Dragonguard of the time could do was seal Laatvulon away, a deed that cost Ja'darri her life.\r\n\r\nThe Mask of Alkosh was stowed in the Halls of the Highmane following Ja'darri's death. Those of the Pride of Alkosh found worthy of bearing the mask were to pass several trials, ending in the retrieval of the mask. In 2E 582, a champion of the Dragonguard passed these trials and obtained the Mask of Alkosh. The mask was used to defeat Laatvulon, this time with the help of Nahfahlaar, who empowered the mask and ensured Laatvulon's death.", + "display_name": "mask_of_alkosh", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Pride of Alkosh is an order of Khajiiti warriors devoted to Alkosh, composed of the Forgotten Manes—Khajiit born under the eclipse, attuned to both the Moons’ light and the Dark Heart’s call, ever in danger of becoming dro-m’Athra. Taken as cubs to Pridehome, they are trained as Alkosh’s “claws,” secret defenders who guard time’s tapestry and serve as his champions. The order was founded by Ja’darri the Endless, a Forgotten Mane and Dragonguard who, after confronting the darkness in her heart with a lantern and blade of Alkosh’s light, was granted the Mask of Alkosh and charged to defeat Laatvulon. Though she perished when her ally Nahfahlaar refused to awaken the Mask’s power, Khenarthi raised her beyond even the Sands Behind the Stars. Members of the Pride share this fate, existing with Pridehome outside linear time—both always and never present—and their Clan Mothers are said to be the first and last to hold their station.\n\nAs extratemporal beings, the Pride of Alkosh guards against the “Doom to Come,” when dragons will return to unmake the world’s order. Entrusted with Alkosh’s secrets, their Clan Mothers read the tapestry of time, and Alkosh may grant his champions lions of pure light to ride in their divine missions. A song from the Second Era tells of a Khajiit who sought the Mask of Alkosh in the Halls of the Highmane to stand before Ja’darri herself. The ancient Tale of Dro’Zira recalls how, at Red Mountain, Ra’Wulfharth—wielding the roar of Lorkhaj—commanded the moons to transform the Pride’s warriors into senche to spare them from death; one, Dro’Zira, carried him up the mountain and saved him from Dumalacath. For this, Lorkhaj returned Dro’Zira from Sheggorath’s realm, while the other changed Khajiit grew smaller and lost their cunning forever.", + "display_name": "pride_of_alkosh", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Temples of Two Moons Dance are places of philosophical study and martial training located throughout Elsweyr. They date back to the First Era at the latest, when the Khajiiti kingdom \"Ne Quin-al\" (now called Anequina) was known to trade the mighty graduates of its Temple to other Khajiiti kingdoms in return for various needs. The Temples have been known to produce the most skilled warriors. For untold years, the Temple in Torval has been the finest training ground for unarmed combat in all of Tamriel. Masters of the Two-Moons Dance have designed a prescribed course of training over many years in accordance with the Riddle'Thar. Many begin their training as children. The training is mental as much as physical. One of the most important lessons in their curriculum is to reject one's vanity. Students at the highest level possess such a degree of power and skill that few can best them in weaponless combat, even with the aid of magic. At the completion of their studies, students partake in a festival consisting of competitions in both debate and combat, then either go out into the world or become teachers themselves.\r\n\r\nThere are many Temples of Two-Moons Dance. The known ones include one located in the Anequina region of northern Elsweyr, one in Torval, one on the island of Khenarthi's Roost, one in Dune, and one in Rawl'kha. The temple in Rawl'kha is particularly important as it was where Rid-Thar-ri'Datta, the first Mane, revealed the Riddle'Thar Epiphany in 2E 311. It is considered the most culturally significant Temple of Two-Moons Dance in northern Elsweyr.", + "display_name": "two_moons_dance", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "\"I question the sanity of those who seek to learn Ta'agra as a second tongue. All these tricky patterns of speech! If I was not born to it, I do not know if I would have the fortitude to learn.\"\r\n—Zerith-var\r\n\r\nTa'agra is the language spoken by the Khajiit of Elsweyr. Although natives of Elsweyr can typically speak Tamrielic, it is not uncommon for Khajiit to interject Ta'agra words or phrases into their sentences.\r\n\r\nWhen speaking in Tamrielic, Khajiit also tend to use notably distinct speech patterns and terms, a form of Khajiiti Tamrielic dialect. They also have recognizably distinct names, often combined with honorific prefixes and suffixes.\r\n\r\nThe word \"khajiit\" is derived from the Ta'agra words \"khaj\" and \"-iit\", khaj meaning \"sand\" or \"desert\" and the suffix -iit indicating an occupation or place of residence. As such, khajiit might be translated as \"desert-dweller\" or \"one who works in a desert\"—but since all one commonly does in a desert is walk, khajiit is normally translated as \"desert-walker\", a term often used when referring to Khajiit.\r\n\r\nAn example of Ta'agra written as a sentence, excerpted from a burnt scripture found in Moongrave Fane, goes as follows, \"Zennrili an Zennji tas jaadi atha'a. Shabar aydithozay zaigu di sallidadna jaadi ranjith\".", + "display_name": "ta'agra", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The dro-m’Athra—literally “dark spirits of Elsweyr”—are the corrupted reflections of the Khajiit, born when True Cats fall to the influence of Namiira and the Dark Heart of Lorkhaj. When a Khajiit succumbs to the Bent Dance, their soul and body are twisted into a dro-m’Athra: their fur turns black, streaked with blue lightning, and their eyes glow pale as they dance to the rhythm of the Dark Heart in the “Dark Behind the World.” These beings embody the shadow of Khajiiti duality, their existence tied to the phases of Masser and Secunda. The transformation may come through weakness of will, consuming skooma, or yielding to despair, and once the darkness outweighs the moons’ light, the soul is lost to Namiira. Only Khajiit can become dro-m’Athra, though others may be possessed by them. Among them are dark variants like the do-m’Athra warriors and jo-m’Athra sorcerers, as well as the Rahd-m’Athra steeds and Sa-m’Athra senche. Their armor mirrors their essence—spiked, shadow-black, and adorned with symbols of the waning moons.\n\nIn Khajiiti culture, the dro-m’Athra are both taboo and sacred warning: tales told only under moonlight to ward away their creeping influence. Their hatred is reserved for the gods of light—Azurah, Khenarthi, and the Moons themselves—for they are reminders of what they lost. They haunt ancient temples and can be summoned by dark rituals, spreading corruption wherever the moons are hidden. When the dro-m’Athra manifest, Khajiit trained in the Two-Moons Dance confront them through two sacred paths: the Way of Jone, the warrior’s violent exorcism, or the Way of Jode, the ritual of moonlight and song that can purify or banish them forever. Yet even the most devoted priests claim no Bent Cat has ever truly returned to the light—only been sent back to the darkness from which it came.", + "display_name": "dro-m'athra", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "\"The skies are marked with numberless sparks, each a fire, and every one a sign.\"\n―Uriel Septim VII\n\nThe Apprentice:\nThe Apprentice (known as the Automaton to the Dwemer) is a constellation of eleven stars which is in the night sky during Sun's Height. It is one of the Mage's charges. Those born under the sign of the Apprentice are thought to have an affinity for magic, but also a vulnerability to magic.\n\nThe Atronach:\nThe Atronach (sometimes the Golem, known as the Warmachine to the Dwemer) is a constellation of ten stars which is in the night sky during Sun's Dusk. It is one of the Mage's charges. Those born under the sign of the Atronach are thought to be natural sorcerers with deep reserves of magicka, but that cannot generate their own magicka.\n\nThe Lady:\nThe Lady is a constellation of four stars which is in the night sky during Hearthfire. It is one of the Warrior's charges. Those born under the sign of the Lady are thought to be kind and tolerant.\n\nThe Lord:\nThe Lord is a constellation of nineteen stars which is visible in the night sky during First Seed. It is one of the Warrior's charges. Those born under the sign of the Lord are thought to be stronger and healthier, although they are sometimes referred to as Trollkin due to their innate weakness to fire.\n\nThe Lover:\nThe Lover is a constellation of twelve stars which is in the night sky during Sun's Dawn. It is one of the Thief's charges. Those born under the sign of the Lover are thought to be graceful and passionate.\n\nThe Mage:\nThe Mage (also known as the Wizard, the Sage, the Mechanist to the Dwemer, and the Witch in the Stars or simply the Witch to the Reachmen) is a constellation of twenty-seven stars and the planet Julianos, which is in the night sky during the month of Rain's Hand. Along with the Warrior and the Thief, it is a Guardian constellation, and its charges are the Apprentice, the Atronach, and the Ritual. Those born under the sign of the Mage are thought to have more magicka and a talent for spellcasting. They are also thought to be arrogant and absent-minded.\n\nThe Ritual:\nThe Ritual (known as the Laboratory to the Dwemer) is a constellation of seven stars which is in the night sky during Morning Star. It is one of the Mage's charges. Those born under the sign of the Ritual are thought to have various abilities depending on the aspects of the moons and planets. It is consistently depicted by most cultures as taking the shape of the Aurbic Eye.\n\nThe Serpent:\nThe Serpent (known as the Snake in the Stars to the Reachmen, or simply the Snake to both Reachmen and Redguards) is a constellation of four unstars which is not relegated to being in the night sky during a particular time of the year. Unlike stars, the unstars that form the Serpent move about the sky and do not emit varliance. The Serpent's motions are considered to be unpredictable, though they can be predicted to a degree. Sometimes it is deemed impossible, however. Those born under the sign of the Serpent are thought to have no characteristics in common except being the most blessed and the most cursed.\n\nThe Shadow:\nThe Shadow is a constellation of five stars which is in the night sky during Second Seed. It is one of the Thief's charges. Those born under the sign of the Shadow are thought to have the ability to hide in shadows.\n\nThe Steed:\nThe Steed is a constellation of eight stars which is in the night sky during Midyear. It is one of the Warrior's charges. Those born under the sign of the Steed are thought to be impatient and always hurrying from one place to another. It is typically depicted as a horse. According to some the Steed is prominent in the southern sky during the summer solstice.\n\nThe Thief:\nThe Thief (known as the Hunter to the Reachmen) is a constellation of eighteen or seventeen stars and the planet Arkay which is in the night sky during Evening Star. It is a Guardian constellation, and its charges are the Lover, the Shadow, and the Tower. Those born under the sign of the Thief are thought to take risks and evade harm. Their luck is thought to run out eventually, cutting their lives short.\n\nThe Tower:\nThe Tower is a constellation of twelve or eleven stars which is in the night sky during Frostfall. It is one of the Thief's charges. Those born under the sign of the Tower are thought to have a knack for finding gold and opening locks.\n\nThe Warrior:\nThe Warrior (known as the Headsman to the Reachmen) is a constellation of thirty or twenty-eight stars and the planet Akatosh which is in the night sky during Last Seed. It is one of the Guardian constellations, and its charges are the Lady, the Steed, and the Lord. Those born under the sign of the Warrior are thought to be short-tempered and skilled with weapons.", + "display_name": "birthsigns", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Atronach (sometimes called the Golem, known as the Warmachine to the Dwemer) is a constellation of ten stars which is in the night sky during Sun's Dusk. It is one of the Mage's charges. Those born under the sign of the Atronach are thought to be natural sorcerers with deep reserves of magicka, but that have trouble regenerating their own magicka.\n\nNedes who followed the Cult of the Stars modeled their weapons and armor after the constellations. Each part of their armaments were crafted in honor of different constellation. Maces were linked to the Atronach, \"who bludgeons the sky with magical might\" and \"rolls like juggernaut twixt night and day\". Their maces emulated the Atronach's mighty arm and were designed to \"smite thy foes even as rocks that fall from ye sky\".\n\nThe constellations are present in ancient Yokudan and Redguard poetry. In one of their songs The Golem is \"burning through the night.\"\n\nThe Dwemer associate the Atronach with the letter r.\n\nAccording to the Reachfolk the charges, or the Lesser Stars (the Atronach among them) are protected by the Guardians in the Sky who stand together against the Snake in the Stars.\n\nAccording to the Baandari fortune tellers, the Atronach is associated with sturdiness and adaptability. The Atronach was also believed to \"aid ones with their appointed burden\".\n\nIn certain circumstances, the Altmer attach significant importance to aligning their landmarks with constellations. A prime example of this practice is Ondil, built in the early First Era to house Kinlady Fiorallelle's extensive collection of ceramic figurines. However, the project was abandoned before completion when it was revealed that its alignment with the constellation of the Atronach deviated by seven percent.", + "display_name": "the_atronach", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ritual (known as the Laboratory to the Dwemer) is a constellation of seven stars which is in the night sky during Morning Star. It is one of the Mage's charges. Those born under the sign of the Ritual are thought to have various abilities depending on the aspects of the moons and planets. It is consistently depicted by most cultures as taking the shape of the Aurbic Eye.\r\n\r\nNedes who followed the Cult of the Stars modeled their weapons and armor after the constellations. Each part of their armaments was crafted in honor of a different constellation. Helmets were linked to the Ritual, \"who watcheth all with glowing eye in the face of space\". They believed that Ritual's eye is seen but the visage is hidden, and their helmets were meant to emulate the Ritual and hide their visages beneath cap and behind the visor, seeing but not seen, unknown until their actions make them known.\r\n\r\nThe Breton Druids of old praised the Ritual constellation above all. As of 2E 582, megaliths devoted to the Ritual and charms devoted to the Constellation of Ritual could be found in the Systres, among the modern druidic circles. Seven green beads hung in the shape of the ritual constellations were presumably rubbed for good luck.\r\n\r\nThe constellations are present in ancient Yokudan and Redguard poetry. In one of their songs The Ritual is \"turning through the night.\"\r\n\r\nThe Dwemer associate the Ritual with the letter b.\r\n\r\nAccording to the Reachfolk the charges, or the Lesser Stars (the Ritual among them) are protected by the Guardians in the Sky who stand together against the Snake in the Stars.\r\n\r\nAccording to the Baandari fortune tellers, the Ritual is linked to the arcane and Magrus. The Ritual was also believed to \"speed ones on their star-patterned path\".\r\n\r\n\"This one sees … the arcane. Yes, Magrus dances on light blue paws—tiny flames and the scent of incense ….\r\nThis one hears soft chanting, glimpses flickering candles.\r\nYou are guided by the Ritual, yes? Allies shall seek you out, for your sign guides you to heal and mend. But beware—not all ills can be repaired.\"\r\n—Baandari fortune-telling for those born under the Ritual", + "display_name": "the_ritual", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Steed is a constellation of eight stars which is in the night sky during Midyear. It is one of the Warrior's charges. Those born under the sign of the Steed are thought to be impatient and always hurrying from one place to another It is typically depicted as a horse. According to some the Steed is prominent in the southern sky during the summer solstice.\r\n\r\nNedes who followed the Cult of the Stars modeled their weapons and armor after the constellations. Each part of their armaments was crafted in honor of a different constellation. Boots were linked to the Steed, the noble mount, \"who hurrieth across the sky, bearing night from dusk till dawn\". Their boots were meant to emulate the Steed and crafted to \"bear thee withal like the bearing of ye Steed, to support all in their celestial journeys\".\r\n\r\nThe Dwemer associate the Steed with the letter h and depict it as a scarab.\r\n\r\nThe Celestial Steed represents a Warrior's swiftness, his agitation, the moment he forsakes madness to ride against his enemies.\r\n\r\nThe Steed and other charges of the Warrior are present in ancient Yokudan and Redguard poetry. It \"rides the night, towards scale bright, leaving the seasoned Warrior's care\". After the blade of the Warrior was unmade by the Snake the chargers ceased to wander. In another song it is \"prancing through the night\". The legendary Star Man and his followers revered the Warrior's three charges: the Lord, the Lady, and the Steed, offering them gifts and incense as tokens of respect and devotion. Famously, Grandee Yaghoub following the Steed early on the 17th of Second Seed was how him and his crew first discovered Sentinel on the Iliac Bay.\r\n\r\nAccording to the Reachfolk the charges, or the Lesser Stars (the Steed among them) are protected by the Guardians in the Sky who stand together against the Snake in the Stars.\r\n\r\nAccording to the Baandari fortune tellers, the Steed is associated with being headstrong, swift, and willful. The Steed was also believed to \"speed ones progress on the road to destiny\".\r\n\r\nIncantation of the Steed is a spell that grants the caster increased swiftness. It was known and used by the Direnni wizard of the Sinderill Norianwe. All Star-Born horses are believed to be the children of the Steed.\r\n\r\nThe Altmer Sapiarch's observe the skies in search of signs and portents - patterns and phenomena related to constellations are considered among them. One of such patterns of meaning is the constellation of the Lady riding the constellation of the Steed.", + "display_name": "the_steed", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Apprentice (known as the Automaton to the Dwemer) is a constellation of eleven stars which is in the night sky during Sun's Height. It is one of the Mage's charges. Those born under the sign of the Apprentice are thought to have an affinity for magic, but also a vulnerability to magic.\r\n\r\nNedes who followed the Cult of the Stars modeled their weapons and armor after the constellations. Each part of their armaments was crafted in honor of a different constellation. Leg greaves were linked to the Apprentice, \"right behind thee, to hold thee up to Sun's Height if thou falleth\" \"who supports ye master, and does all needful and minor-magical\". Their armor was meant to emulate the Apprentice and was crafted to be \"as supportful as ye Apprentice, and with a right good will.\"\r\n\r\nThe constellations are present in ancient Yokudan and Redguard poetry. In one of their songs The Apprentice is \"learning through the night.\"\r\n\r\nThe Dwemer associate the Apprentice with the letter i.\r\n\r\nAccording to the Reachfolk the charges, or the Lesser Stars (the Apprentice among them) are protected by the Guardians in the Sky who stand together against the Snake in the Stars.\r\n\r\nAccording to the Baandari fortune tellers, the Apprentice is linked to Magrus and associated with pride and impetuousness. The Apprentice was also believed to \"serve ones at the forge of destiny\".", + "display_name": "the_apprentice", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Lady is a constellation of four stars which is in the night sky during Hearthfire. It is one of the Warrior's charges. Those born under the sign of the Lady are thought to be kind and tolerant.\r\n\r\nNedes who followed the Cult of the Stars modeled their weapons and armor after the constellations. Each part of their armaments was crafted in honor of a different constellation. Bows were linked to the Lady, \"who striketh from a distance, all heart afire with sympathy\". They believed that Lady bends bowing in the firmament and their firm bows were meant to \"bend like a lady whose darts speed true\".\r\n\r\nThe Dwemer associate the Lady with the letter m.\r\n\r\nAccording to the Bosmer the Lady embodies unwavering determination and enduring well-being. Her radiance brings healing to the ailing, bestowing wellness upon them, and she grants rewards to those who persist through challenges.\r\n\r\nThe Celestial Lady represents Warrior's mercy and agitated him to forsake madness and remember peace.\r\n\r\nThe Lady and other charges of the Warrior are present in ancient Yokudan and Redguard poetry. She is associated with the cardinal direction of the East. After the blade of the Warrior was unmade by the Snake the chargers ceased to wander. In another song she is \"dancing through the night.\" The legendary Star Man and his followers revered the Warrior's three charges: the Lord, the Lady, and the Steed, offering them gifts and incense as tokens of respect and devotion. Some Redguards believed that both the Warrior and the Lady were \"friends to all sailors.\"\r\n\r\nAccording to the Reachfolk the charges, or the Lesser Stars (the Lady among them) are protected by the Guardians in the Sky who stand together against the Snake in the Stars.\r\n\r\nAccording to the Baandari fortune tellers, the Lady is associated with elegance, patience, caution, and foresight. The Lady was also believed to \"fortify ones in their quest for glory\".\r\n\r\nThe Altmer Sapiarch's observe the skies in search of signs and portents - patterns and phenomena related to constellations are considered among them. One of such patterns of meaning is the constellation of the Lady riding the constellation of the Steed.", + "display_name": "the_lady", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Lover is a constellation of twelve stars which is in the night sky during Sun's Dawn. It is one of the Thief's charges. Those born under the sign of the Lover are thought to be graceful and passionate.\r\n\r\nNedes who followed the Cult of the Stars modeled their weapons and armor after the constellations. Each part of their armaments was crafted in honor of a different constellation. Gloves and gauntlets were linked to the Lover, \"who draweth off her gloves when the season of safety is nigh\" and \"covers all till Sun's Dawn, then covers none\". Their gloves were meant to emulate the Lover and crafted them \"for thy hands clingsome and supple, protection in peril, yet lovely when undonned\".\r\n\r\nThe constellations are present in ancient Yokudan and Redguard poetry. In one of their songs The Lover is \"sighing through the night.\"\r\n\r\nThe Dwemer associate the Lover with the letter d.\r\n\r\nAccording to the Reachfolk the charges, or the Lesser Stars (the Lover among them) are protected by the Guardians in the Sky who stand together against the Snake in the Stars.\r\n\r\nAccording to the Baandari fortune tellers, the Lover is associated with being charming, fear and love. The Lover was also believed to \"sweeten ones journey as one confronts their fate\".\r\n\r\n\"This one hears the whispers of court—scheming and revelry behind closed doors ….\r\nThis one smells roses and lavender, hears laughter, quiet and demure.\r\nAh, you bear the kiss of the Lover! All fall prey to your sleek charms, yes? Use this gift wisely, walker. To be loved and to be feared are different phases of the same moon.\"\r\n—Baandari fortune-telling for those born under the Lover", + "display_name": "the_lover", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Lord is a constellation of nineteen stars which is visible in the night sky during First Seed. It is one of the Warrior's charges. Those born under the sign of the Lord are thought to be stronger and healthier, although they are sometimes referred to as Trollkin(Troll-kin) due to their innate weakness to fire.\r\n\r\nNedes who followed the Cult of the Stars modeled their weapons and armor after the constellations. Each part of their armaments was crafted in honor of a different constellation. Swords were linked to the Lord, master of sword and harrow, \"who wieldeth both sword and plowshare, planting both seeds and foes\". Their swords were meant to emulate the Lord, straight and wielded justly, in high law and low.\r\n\r\nThe Lord is thought to oversee all of Tamriel during the planting. The Lord is traditionally associated with Morihaus, alluding to his possession of the Lord's Mail. The Dwemer associate the Lord with the letter e. Vivec once alluded that Wulfharth's birthsign is that of the Lord.\r\n\r\nThe Celestial Lord represents Warrior's strength and agitated him to forsake madness and return to health.\r\n\r\nThe Lord and other charges of the Warrior are present in ancient Yokudan and Redguard poetry. He is associated with runes. After the blade of the Warrior was unmade by the Snake the chargers ceased to wander. In another song he is \"advancing through the night\" The legendary Star Man and his followers revered the Warrior's three charges: The Lord, the Lady, and the Steed, offering them gifts and incense as tokens of respect and devotion.\r\n\r\nAccording to the Reachfolk the charges, or the Lesser Stars (the Lord among them) are protected by the Guardians in the Sky who stand together against the Snake in the Stars.\r\n\r\nAccording to the Baandari fortune tellers, the Lord is linked to Alkosh. The Lord was also believed to \"prove a faithful patron as you confront ones fate\".\r\n\r\n\"This one hears the whispers of court—scheming and revelry behind closed doors ….\r\nIt is obscured by pride and hidden intent, but this one sees through that. It is the Lord that guides you—calculating, strong, ambitious, with the vigor of Alkosh.\r\nBut be wary. Even the mightiest nobles can be felled by a flick of a quill.\"\r\n—Baandari fortune-telling for those born under the Lord", + "display_name": "the_lord", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Mage (also known as the Wizard, the Sage, the Mechanist to the Dwemer, and the Witch in the Stars or simply the Witch to the Reachmen) is a constellation of twenty-seven stars and the planet Julianos, which is in the night sky during the month of Rain's Hand. Along with the Warrior and the Thief, it is a Guardian constellation, and its charges are the Apprentice, the Atronach, and the Ritual. Those born under the sign of the Mage are thought to have more magicka and a talent for spellcasting. They are also thought to be arrogant and absent-minded.\r\n\r\nNedes who followed the Cult of the Stars modeled their weapons and armor after the constellations. Each part of their armaments was crafted in honor of a different constellation. Staves were linked to the Mage, of Rain's Hand \"who wieldeth ye staff as the mightiest of armaments\" and \"whose hand raineth magicka by rod and by staff\". Their staves emulated the Mage's qualities and were known for star-disk at their finials for \"faster stellar spellcaster\". The fabrics used to craft the ancient Nedic ornate clothing often referenced the Mage.\r\n\r\nThe Reachmen believe that the Witch shines her light on covens that protect the Reach from outsiders and others who mean to do Reachfolk harm and that her good eye sees through everything—rock, water, and flesh—to find the hard truths. According to them she never lies. Together with the Hunter and the Headsman they are called Reach Guardians and that they protect lesser stars from the Snake.\r\n\r\nThe constellations are present in ancient Yokudan and Redguard poetry. In one of their songs The Mage \"orders through the night.\"\r\n\r\nThe Dwemer associate the Mechanist with the letter f.\r\n\r\nAccording to the Baandari fortune tellers, the Mage is linked to Magrus. The Mage was also believed to \"light one's way on the paths of glory\".\r\n\r\n\"This one sees ... the arcane. Yes, Magrus dances on light blue paws—tiny flames and the scent of incense ....\r\nAh, yes ... this one sees the flaming palm, the starry robe.\r\nIt is the Mage that guides you. A fortuitous sign. As surely as Magrus sheds the sun's white light upon the hidden, if you seek out wonders ... you shall find them.\"\r\n—Baandari fortune-telling for those born under the Mage", + "display_name": "the_mage", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Thief (known as the Hunter to the Reachmen) is a constellation of eighteen or seventeen stars and the planet Arkay which is in the night sky during Evening Star. It is a Guardian constellation, and its charges are the Lover, the Shadow, and the Tower. Those born under the sign of the Thief are thought to take risks and evade harm. Their luck is thought to run out eventually, cutting their lives short.\r\n\r\nNedes who followed the Cult of the Stars modeled their weapons and armor after the constellations. Each part of their armaments was crafted in honor of a different constellation. Daggers and knives were linked to the Thief, \"who cometh in ye dark of Evening Star\" and \"wieldeth the dagger as the surgeon doth his scalpel\". Their daggers emulated the Thief's qualities and were linked to the luck and fortune. The gemstones present in the ancient Nedic ornate clothing often referenced the Warrior and the Thief.\r\n\r\nVivec's Book of the Last Hour talks of him embodying the Thief constellation while on his way to comfort the elderly and dying Uriel VII.\r\n\r\nThe Thief is traditionally associated with Saint Alessia. The Reachmen describe the Hunter as the wiliest of the constellations and as clever as an old fox and swift as a young one. They believe that she watches the Snake in the Stars, finding it no matter where it slithers and that she teaches them to keep their feet quiet and kills as silent as the night. Together with the Witch and the Headsman they are referred to as Reach Guardians.\r\n\r\nThe constellations are present in ancient Yokudan and Redguard poetry. In one of their songs The Thief \"watches through the night.\"\r\n\r\nThe Dwemer associate the Thief with the letter a.\r\n\r\nAccording to the Baandari fortune tellers, the Thief is linked to Baan Dar and is associated with swiftness, cunning, beauty, wealth, and risk. The Thief was also believed to \"guide ones steps on the road to destiny\". Rajhin is also known as the Thief God, though his association to the constellation is unknown, beyond both of them being heavenly entities.\r\n\r\nIt is said that when the Thief constellation shines brightest, bandits, assassins, and all who favor stealth and shadow breathe a little easier. Some of them were known to hope for this protection every day, invoking the Thief's blessing on their skin.\r\n\r\n\"This one sees … a shadow. The flash of steel and fell whispers ….\r\nHmm. Yes, your sign is well known to this one, for it dwells in the hearts of all Khajiit. You have the luck of the Thief…of Baan Dar. You are swift, cunning, and beautiful. Your dance brings wealth and risk.\r\nJust spare this one your touch.\"\r\n—Baandari fortune-telling for those born under the Thief", + "display_name": "the_thief", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Warrior (known as the Headsman to the Reachmen) is a constellation of thirty or twenty-eight stars and the planet Akatosh which is in the night sky during Last Seed. It is one of the Guardian constellations, and its charges are the Lady, the Steed, and the Lord. Those born under the sign of the Warrior are thought to be short-tempered and skilled with weapons.\n\nIt is thought that the Warrior's strength is needed for the Last Seed harvest and that he protects his charges during their seasons.\n\nTo the Reachmen, the Headsman stands for swift ends and payment in kind. They believe that he delivers justice and punishment in equal measure. Together with the Witch and the Hunter they are referred to as Reach Guardians and protect the Lesser Stars from the Snake in the Sky.\n\nThe Warrior and his charges are present in ancient Yokudan and Redguard poetry. He is described as arrayed in hue sails. His blade was believed to be unmade by the Snake. In another song he \"charges through the night\". A Redguard legend speaks of the Star Man, who led the Yokudans by ship, following the path of the Warrior across mountains and vast deserts. Victory followed them, and famine and desolation fled before them. Some Redguards believed that both the Warrior and the Lady were \"friends to all sailors.\"\n\nThe Dwemer associate the Warrior with the letter k.\n\nAccording to the legends of the Star-Gazers, those born under the sign of the Warrior can be called through time and space by the Celestial Warrrior to fight for him, thanks to this connection they have with their patron. In 2E 578, when the constellations fell from the skies above Craglorn great warriors such as Emperor Tarish-Zi and Titus Valerius were directly or indirectly summoned to their future.\n\nNedes who followed the Cult of the Stars modeled their weapons and armor after the constellations. Each part of their armaments was crafted in honor of a different constellation. Axes were linked to the Warrior, \"who wieldeth the axe\". They believed that their axes should resemble the one wielded by the Warrior, strong and sharp of edge and similar to the crescent moons, \"aglow in the light of ye Warrior's stars\". The gemstones present in the ancient Nedic ornate clothing often referenced the Warrior and the Thief.\n\nAccording to the Baandari fortune tellers, the Warrior is linked to Jone and Jode and is associated with strength, straightforwardness, willfulness and wrath. The Warrior was also considered a \"stalwart companion when fortune fades\".\n\n\"This one sees … strength. Yes. The clenched fist and walls of stone.\nHmm. Yes, your guide is difficult to miss. The Warrior. Straightforward, willful, brimming with wrath.\nHeed the counsel of Jone and Jode, walker. Without the little moon, the big one is left to spin alone, lost. Do not count on strength alone.\"\n—Baandari fortune-telling for those born under the Warrior", + "display_name": "the_warrior", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Tower is a constellation of twelve or eleven stars which is in the night sky during Frostfall. It is one of the Thief's charges. Those born under the sign of the Tower are thought to have a knack for finding gold and opening locks.\r\n\r\nNedes who followed the Cult of the Stars modeled their weapons and armor after the constellations. Each part of their armaments were crafted in honor of different constellation. Shields were linked to the Tower, \"what protecteth ye Celestials e'en as it supports the very world\". They believed that Tower, both opens and closes the Way, and their shields were meant to represent its strength, \"closing the way to the weapons of thy foes, yet opening when thou smitest on thine own account\". Following the Tower's guidance, the Nedes built Seaveil Spire, a submerged sanctuary devoted to the Tower.\r\n\r\nThe constellations are present in ancient Yokudan and Redguard poetry. In one of their songs The Tower is \"defying through the night.\"\r\n\r\nThe Dwemer associate the Tower with the letter n.\r\n\r\nAccording to the Reachfolk the charges, or the Lesser Stars (the Tower among them) are protected by the Guardians in the Sky who stand together against the Snake in the Stars.\r\n\r\nAccording to the Baandari fortune tellers, the Tower is linked to strength. The Tower was also believed to \"prove a stout refuge in time of need\".\r\n\r\n\"This one sees … strength. Yes. The clenched fist and walls of stone.\r\nThis one sees claw marks upon cold, wet stone. Smells moss and memory. It is the Tower that guides you. Like a fortress, you may weather fire and claw.\r\nBut do not rely on strength alone. The strongest wall is the one that is hidden.\"\r\n—Baandari fortune-telling for those born under the Tower", + "display_name": "the_tower", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Shadow is a constellation of five stars which is in the night sky during Second Seed. It is one of the Thief's charges. Those born under the sign of the Shadow are thought to have the ability to hide in shadows.\r\n\r\nNedes who followed the Cult of the Stars modeled their weapons and armor after the constellations. Each part of their armaments were crafted in honor of different constellation. Pauldrons, epaulets and arm cops were linked to the Shadow, \"who hideth beneath the Second Seed, uncovering only to strike from below\". They believed that Shadow was unseen although seen, shadowing the sky's every move, and their shields were meant to emulate the Shadow's nature - \"to follow thy form, faithful and silent, and protect betimes ye striketh\".\r\n\r\nThe Shadow is traditionally associated with the Void. While some myths for the Shadow portray the themes of unbeing typically associated with the Void, others portray the Shadow as the dual to the light of Magnus, representing the void through which the stars shine.\r\n\r\nThe constellations are present in ancient Yokudan and Redguard poetry. In one of their songs The Shadow is \"lying through the night.\"\r\n\r\nThe Dwemer associate the Shadow with the letter g.\r\n\r\nArgonians born under the Shadow may be offered to the Dark Brotherhood to become Shadowscales. Argonian accounts warn those born under the Shadow from seeking to use the power of the artifact of Fangs of Sithis and link the downfall of their ancestors to this artifact.\r\n\r\nAccording to the Reachfolk the charges, or the Lesser Stars (the Shadow among them) are protected by the Guardians in the Sky who stand together against the Snake in the Stars.\r\n\r\nAccording to the Baandari fortune tellers, the Shadow is also linked to the void and associated with coldness, patience, and cautiousness. The Shadow was also believed to \"hide ones from destiny's cunning hounds\".\r\n\r\n\"This one sees … a shadow. The flash of steel and fell whispers ….\r\nThis one sees … nothing. A chill void.\r\nIt must be the Shadow that guides you. Cold, cautious. Patient. Shadow is among the deepest signs, for it represents what is not known. Tread not too far down that path, walker, if you want to return.\"\r\n—Baandari fortune-telling for those born under the Shadow", + "display_name": "the_shadow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Serpent (known as the Snake in the Stars to the Reachmen, or simply the Snake to both Reachmen and Redguards) is a constellation of four unstars which is not relegated to being in the night sky during a particular time of the year. Unlike stars, the unstars that form the Serpent move about the sky and do not emit varliance. The Serpent's motions are considered to be unpredictable, though they can be predicted to a degree. Sometimes it is deemed impossible, however. Those born under the sign of the Serpent are thought to have no characteristics in common except being the most blessed and the most cursed.\r\n\r\nDespite consisting of four unstars it was also known as the Scaled Blanket, \"made of not-stars, whose number is thirteen\", as it was the thirteenth constellation.\r\n\r\nNedes who followed the Cult of the Stars modeled their weapons and armor after the constellations. Each part of their armaments was crafted in honor of a different constellation. Belts were linked to the Serpent, of unstars and no moons, \"who circles ye zodiac, and crawleth where it will\". Their belts emulated the Serpent's qualities and were designed to be as \"strong as wyrm and long as a twelve-month, when ye head shall meet ye tail\".\r\n\r\nThe Serpent is present in ancient Redguard poetry, where he chases the charges of the Warrior, and unmakes his blade. According to the Yokudans souls of those born under the Serpent are harder to guide through the necromancer's snare. The Serpent itself respects no master and is unpredictable in its path.\r\n\r\nThe Dwemer associate the Serpent with the symbol \"V\"\r\n\r\nAccording to the Reachfolk accounts the Snake in the Stars, also known as the Enemy and the Corrupter is the enemy of the Reach Guardians. They believe that if permitted, Snake would consume all the Lesser Stars without hesitation. One of the Reachfolk glyphs depict the snake. Its connection to the Snake in the Stars is unknown.\r\n\r\nIn the year 2E 582, Arana and the Witch-rebels agreed to form a proper alliance with House Ravenwatch and the Vestige, but only once the ritual honoring Hircine was performed to finalize the binding pact between parties. The ritual was successful and revealed the sigil of the Snake in the Stars. Initially, Arana interpreted it as the substitute for their prey but soon realized that the clue sent by the Daedric Prince referred to the Sky Tales. The Dwemer plaques led to Bthar-Zel, where they hoped to find materials to arm themselves against the invasion of the Gray Host.\r\n\r\nWeapons and armor named after the Snake in Stars were used by the participants of the Three Banners War.\r\n\r\nAccording to the Baandari fortune tellers, the Serpent is linked to Sangiin and is associated with swift mending and danger. The Serpent was also believed to \"sting the foes who seek ones blood\".\r\n\r\nThe Celestial Serpent has been referred to as Malazar. An entity known as the Mother Serpent was present in the Nedic beliefs, but its connection to the Serpent is unknown.\r\n\r\n\"This one sees … a shadow. The flash of steel and fell whispers ….\r\nThis one sees writhing coils … silent menace.\r\nYou walk with the Serpent. Your presence means danger for all, friend and foe alike. Sangiin has given you the gift of swift mending. Take care—venom is perilous to both poisoned and poisoner.\"\r\n—Baandari fortune-telling for those born under the Serpent", + "display_name": "the_serpent", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "\"Where the Black Books actually came from... no one really knows. Some appear to have been written in the past, others might be from the future.\"\r\n―Neloth, Telvanni Mage and Master of Tel Mithryn\r\n\r\nHermaeus Mors's Black Books are tomes of esoteric knowledge that each contain within their pages a gateway to Mora's Daedric realm of Apocrypha, an infinite lattice of libraries suspended above a writhing sea of black oil and tentacles. Black Books are volatile magic artifacts, otherworldly in nature intended to lure mortals into the service of Hermaeus Mora. When read, they present the reader with exceptional challenge, completion grants escape, and valuable knowledge that comes with incredible powers, the likes of which mortal minds can hardly perceive. Reading the Black Book again while in Apochypha will also release you from Mora's realm. Black Books are created by Seekers in the scriptoriums of Apocrypha, such as Quires Wind in the Endless Library. Ciphers of the Eye, mortal servants of Hermaeus Mora in Apocrypha, are called on to aid in the creation of Black Books by preparing ink, bindings, glues and other bibliographic materials that the Seekers need to inscribe them with their contents and power. Some appear to have been written in the ancient past, while others appear to be from the far future. They are much sought after as they contain hidden knowledge that grants the reader great power.\r\n\r\nThe Black Books have a deep connection to the island of Solstheim, where they can be located, the books them will not allow themselves to be read anywhere else in Tamriel.", + "display_name": "black_books", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Black Book: The Hidden Twilight is one of the seven tomes found across Solstheim that contain the powers of Hermaeus Mora's. The book can be found within Master Neloth's private staff-enchanting room in the Telvanni tower of Tel Mithryn. \n\nChapter I:\nOpens in a dim room. On a raised central platform are two fonts of magicka. To the north ahead is a scrye that opens the gate next to another font of magicka behind the scrye. Beyond the gate is a room with a pod under an elevated central platform with two fonts of stamina and the book to Chapter II.\n\nChapter II:\nChapter II starts in a corridor, with a font of magicka behind the starting point. The corridor leads past four more fonts of magicka to a large room guarded by two seekers with two fonts of stamina, a font of magicka, and a table with a random soul gem. A ramp near the southeast corner ascends to the north to a font of magicka and a scrye that causes two bridges to rise and fall on either side of the platforms ahead to the east. If you fall from the bridges, you will land on the lower platform, where a scrye to the west opens a gate to the previous room.\n\nChapter III:\nChapter III starts in a small room with a pillar in the middle, with a font of magicka behind the starting point. On the far side of the pillar is a font of stamina and an alcove with a pod. To the southwest is a large room with two fonts of magicka and a currently inaccessible raised platform ahead. A pair of curved ramps ascend to a scrye that extends the stairs to the platform. On the platform is a seeker and two tables and a pedestal with three soul gems (two random and one leveled).\n\nTo the south, two fonts of magicka flank the gateway to a room guarded by a lurker. In the middle of the room is a font of stamina and a short set of stairs up to a closed gate. To the south is another short set of stairs up to a font of magicka and a ramp ascending to a scrye that opens the gate. To the southeast is a short corridor leading to a font of magicka and the book to Chapter IV.\n\nBeyond the gate is a font of stamina and another short set of stairs ascending to the southeast. At the top of the stairs is another short set of stairs up to a font of magicka and another closed gate. To the southwest is a short set of stairs up to a font of stamina and a ramp ascending to a scrye that opens the gate. Beyond the gate is a font of stamina and a small network of corridors guarded by a seeker. The corridors lead east to a pod in what appears to be a dead end, but approaching the pod causes the corridor to extend to reveal the books to Chapters V and VI.\n\nChapter IV:\nChapter IV consists of a small room with a seeker, a font of magicka, and a scrye that opens a gate in Chapter V.\n\nChapter V: \nStarts in a small room with a font of magicka and a scrye that opens the gate behind the scrye. \n\nChapter VI:\nChapter VI starts in a corridor, with a font of magicka behind the starting point. The corridor leads to a font of stamina and the books to Chapters VII and VIII.\n\nChapter VII:\nChapter VII consists of an island with a seeker, a font of magicka, a pedestal with two random books, and a scrye that raises a bridge in Chapter VIII.\n\nChapter VIII:\nStarts in a room with a seeker and two pillars, with a font of stamina behind the starting point. Behind the pillar to the left is a table with two soul gems (one black and one grand). To the west is a bridge raised by the scrye in Chapter VII. At the far end of the bridge is an area with two fonts of stamina, two pools from which two lurkers rise, and a scrye that opens the gate behind the scrye. Beyond the gate is another bridge ascending to the final platform. On the platform is a pedestal with the true Black Book: The Hidden Twilight. \n\nThe three Powers offered by this book are:\n\nMora's Agony — Summons a field of writhing tentacles that poisons foes who enter it.\nMora's Boon — Fully restores your Health, Magicka, and Stamina.\nMora's Grasp — Targets are frozen between Oblivion and Tamriel for a short time, making them immune to all damage while they are under it's effects.", + "display_name": "the_hidden_twilight", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Title, Pridehome: A Place Outside Time?\r\nTranscribed by, Kaalaleth of the Mages Guild\r\n*The history of Pridehome and its non-linear nature*\r\n\r\nTranscriber's note: This transcription uses verbs that, in our language, denote the passage of time. I feel like they hamper understanding of what this itinerant Khajiit Moon-Priest tried to explain to me, but I needed to get these concepts down (albeit roughly) before my own mind confused me even more. As a result, any mistakes in this transcription are my own. I only wish I could give you the sense of timelessness that the Moon-Priest provided to me. But, perhaps that way opens a path to the likes of Sheogorath. Also, please note that the Moon-Priest refused to provide his name, stating that he was both a priest with knowledge and a neophyte with no knowledge, all at once.\r\n\r\n* * *\r\nBefore time and the tapestry, Pridehome existed. As an ideal, it has always existed. It will always exist. The Dragon God of Time, Alkosh, wove it into the tapestry and time, making it real for the rest of us with our limited perception of linear time.\r\n\r\nPridehome served as a home for the adepts who follow the teachings of the God of Time. A secluded place. A place where they prepared for the Doom to Come, a time when the Dragons return and bring unbalance to the world.\r\n\r\nChampion Ja'darri heard the call of Alkosh and crafted Pridehome, making it real for the rest of us. Yes, she fought the Black Beast. Yes, she died even as she succeeded. Yet she succeeded only for a time, in your mind. But, yes, she has always existed and succeeded. She will always exist.\r\n\r\nThe ideal and place of Pridehome has always existed. As has the Pride of Alkosh, of which Ja'darri was the first, provided you hold with the concept of events unfolding one after the other instead of all at once.\r\n\r\nCan you imagine, you who are bound to the tapestry and linear time, knowing that Ja'darri both succeeded and failed at the same time? Just as the one called Abnur Tharn succeeded and failed at the same time? And in the same moment, outside of linear time? Perhaps you cannot. Perhaps that asks too much.\r\n\r\nMore champions heeded the call after Ja'darri, in linear time. More came. Clan Mothers came and went as well. Until, as time passed, in the common parlance, one named Ra'khajin arrived. He both succeeded and failed to become a champion, just as Ja'darri before him. How, you ask, is this possible? He succeeded until he left Pridehome in linear time, yes? But outside linear time? He succeeded and failed all at once. Or forever, if you prefer.\r\n\r\nPridehome's most recent Clan Mother, Hizuni, is also its first. All Clan Mothers at Pridehome are the first. But, perhaps I have belabored this topic long enough, yes? If you grasp anything I have told you, know this: Pridehome has always existed and always will. The Pride of Alkosh has always existed and always will. All Clan Mothers of Pridehome have always existed and always will. And the Doom to Come? It exists and always will.", + "display_name": "pridehome:_a_place_outside_of_time?", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Monster Children of Vivec and Molag Bal were said to be a race of god-spawned supermonsters born from the infamous “Pomegranate Banquet,” a blasphemous union between the Warrior-Poet and the King of Rape. Numbering in the thousands, these beings were both divine and abominable, existing in Dunmeri myth as symbols of unbridled creation and destruction. Their origins are described in The 36 Lessons of Vivec: Molag Bal courted Vivec in the ruins of Bal Ur, where pomegranates sprang from the earth as Chimer mystics sanctified the occasion. Over eighty-eight days of divine congress, Bal imparted upon Vivec the secret syllable of royalty—CHIM—and from their union came the monstrous progeny. Yet when the Duke of Scamps rebelled during the feast, the monster children crushed his legions, prompting Molag’s wrath and setting in motion a divine tragedy that tore the earth itself.\n\nWhen Vivec’s head returned from teaching Nerevar, he found his body “tenderly used” and the world overrun with the destructive spawn of imitation. To correct this cosmic corruption, Vivec bit new words onto Molag Bal’s spear, transforming it into Muatra, the Milk-Taker, a weapon that rendered all it touched barren. With Muatra, Vivec struck down Molag Bal, banishing him to Oblivion, then turned upon his own monstrous offspring in a purging hunt. Afterward, he forged the Provisional House, a divine non-space that allowed him to traverse all corners of the world to find and destroy his remaining children. Though most were said to have perished, whispers of their descendants persisted in Vvardenfell—such as the Ruddy Broodmother, a land dreugh believed by some to carry the blood of the Pomegranate Banquet.", + "display_name": "monster_children", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Akaviri Dragonguard began as an army of Tsaesci dragon hunters who invaded Tamriel in 1E 2703, only to surrender to Reman Cyrodiil after recognizing his Dragonborn nature. Sworn to his service, they became his elite bodyguards and dragon slayers, constructing Cloud Ruler Temple as their headquarters and Sky Haven Temple in Skyrim as a northern outpost. Their legacy included the creation of Alduin’s Wall, a prophetic mural foretelling the World-Eater’s return. Throughout the First Era, the Dragonguard played a vital role in Reman’s conquests and dragon extermination campaigns, but their loyalty and purpose declined after Reman III’s assassination in 1E 2920. Officially disbanded, remnants splintered into groups that would inspire later organizations like the Fighters Guild and Dragonknights, while others continued hunting dragons or serving covertly under the Akaviri Potentates.\n\nDuring the Interregnum, various pretenders attempted to revive the Dragonguard’s name to legitimize their rule, but the true order survived only in secret, guarding Imperial relics and potential Dragonborn heirs. The Dragonguard of Varen Aquilarios, led by Sai Sahan, perished after the Soulburst, though Sahan later reformed the order to combat the dragons unleashed from the Halls of Colossus in 2E 582. This new Dragonguard, headquartered at Tideholm, returned to its original purpose—slaying dragons and preserving the legacy of the Reman Emperors—while forging a pragmatic alliance with the dragon Nahfahlaar. Ultimately, the Dragonguard’s traditions endured into the early Third Era, when they were reorganized by Tiber Septim into the Blades: the sworn protectors of the Dragonborn Emperors and the keepers of Alduin’s prophecy.", + "display_name": "dragonguard", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Khajiiti cuisine is among the sweetest in all Tamriel, defined by its near-religious use of moon-sugar, believed by the Khajiit to be crystallized moonlight drawn from the Twin Moons and infused into the sugarcane of Elsweyr by the tides. To eat moon-sugar is to consume a fragment of divine essence—an act of communion with Jone and Jode—and the ensuing visions are thought to be blessings from the gods. Every Khajiit consumes it daily, in quantities so great that outsiders would find toxic. Their dishes are rich, syrupy, and fragrant, designed for palates born to sweetness. A foreigner might describe their feasts as cloying or hallucinatory, yet to Khajiit it is sacred nourishment. Before eating with guests, many clans perform the cake ritual: a small round cake sprinkled with moon-sugar and kissed with four drops of golden liquor, shared while names are spoken—signifying temporary friendship and protection. Their tableware reflects their reverence for the moons: crescent pans for festival cakes, moon-painted spice shakers, and ladles striped like senche tails. Moon-sugar spoons are large, as moderation is considered joyless.\n\nNotable Khajiiti Dishes and Drinks\n\nSugar Claws – A festival pastry of flour, honey, and corn glazed in moon-sugar syrup, shaped like feline paws.\n\nMoon-Sugar Pie – A delicate custard-like pie made entirely of refined moon-sugar and cream. Fatal to outsiders.\n\nSweet-Glazed Fish Bits – Crispy fish morsels tossed in moon-sugar and fire-fried, a Baandari caravan favorite.\n\nBananas in Moon-Sugar Syrup – A soft dessert of sliced fruit simmered in molten sugar and cinnamon.\n\nSweet-Stuffed Duck – Roasted duck filled with bananas, cheese, and honeyed grains, served on feast days.\n\nCandied Mammoth Tail – A Pellitine delicacy served in sparkle-syrup; rumored to cause euphoric visions.\n\nDried Sugarmeat – Strips of cured meat rolled in moon-sugar and sun-dried, favored by travelers.\n\nCurried Fish and Rice – A Senchal coastal staple, mixing sweet spices, cream, and fruit with curry heat.\n\nElsweyr Fondue – Melted cheese laced with moon-sugar, eaten with fruit and sweet bread.\n\nHoney and Date Stew – One of the few dishes safe for outlanders, made without moon-sugar but rich in honey.\n\nMoon-Sugar Tea – The quintessential Khajiiti drink, brewed with jasmine and enough sugar to crystallize the rim.\n\nKhenarthi’s Wings Chai – A jasmine-spiced tea sweetened with honey, served before travel for divine favor.\n\nTwo-Moon Cordial – A potent, glowing liqueur said to reflect both moons in its surface when poured by moonlight.\n\nTenmar Apricot Liqueur – A fragrant, silken spirit distilled from apricots, traditionally served to honored guests.\n\nTimestorm – A legendary Elsweyr spirit of brandy and dragon’s tongue; said to erase memories with each sip.", + "display_name": "khajiit_cuisine", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pridehome is a monastery found deep in the jungle reaches of the Tenmar Forest, in the province of Elsweyr. It is a place of meditation for those that worship the Dragon-King of Cats, Alkosh and prepare for the end times when dragons return after years of extinction. It is the home of the Pride of Alkosh, a group of warrior-monks that consist of the Forgotten Manes, who dedicate themselves to maintaining peace throughout the province until they pass on. The Pride, and the Monastery itself are fabled to exist beyond the constraints of time's linear progression.\r\n\r\nHistory\r\nPridehome was built in the late First Era (sometime during the reign of Reman I) by the Forgotten Mane, Ja'darri, before she fell in battle against the Black Beast at Doomstone Keep. The Grandmaster of the Dragonguard, Vashu-Pir called to the moon-priests of Pridehome for help and defeated the dragon with the wisdom of Alkosh. It has since brought other Forgotten Manes in, giving them a purpose in life, as they are overseen and cared for by the clanmother.\r\n\r\nIn 2E 582, one of their own Forgotten Manes, Ra'khajin had left the monastery when he learned all that he could from Alkosh, but felt that he could overcome the other spirits of Elsweyr, like Azurah, and felt that he need to rule over his people. He became manipulated by the returned Black Beast, Laatvulon, who promised him the power of the New Moon, turning him his Dragon Priest. From then on, Ra'khajin created the Order of the New Moon and gathered significant influence throughout the region. All of which lead to the razing of Pridehome and the slaughter of its priesthood. The Clanmother, Hizuni was killed in action, but the Dragonguard intervened and dispelled the order before any further damage occurred.", + "display_name": "pridehome", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The departed spirits of the House Dunmer, enshrined in their ancestral tombs, persist after death. The knowledge and power of departed ancestors benefits the bloodlines of their descendants. The bond between the living family members and immortal ancestors is partly blood, partly ritual, partly volitional.\n\nBoth House Dunmer and Ashlander do not emphasize the distinction between Mundus, Aetherius and Oblivion. They regard all these planes as a whole with many paths from one end to the other rather than separate worlds of different natures with distinct borders. This philosophical viewpoint may account for the greater affinity of elves for magic and its practices. Dark Elves don't believe that death is the end, but the beginning.\n\nAncestral tomb-bound spirits will always recognize their own kind, regardless of time passed since the last time they communed with the living. However, if they are angry with their descendants, they may attack them, although even a stranger could gain their trust if first pay the proper respects in the family shrines within the tomb. Spirits do not like to visit the mortal world, and they do so only out of duty and obligation. For them, the otherworld is more pleasant, or at least more comfortable for spirits than Mundus, which is cold, bitter, and full of pain and loss. The ectoplasmic remains of spirits are sometimes used in the creation of wraithshrouds, which may retain its ghostly appearance. Ashlanders consider this a sign of favor.\n\nCertain Dunmer have their skin covered in magic script seen as white tattoos, which are wards against the undead. It's thought that, during times of great trouble, Dunmer interred in ancestral tombs are restless and aggressive. Respect for the departed ones is a central part of Ashlander culture. If an outlander wants to be respected, they should honor them as well.", + "display_name": "dunmer_afterlife", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Tonal architecture is the manipulation of sound to alter reality. The most notable users of tonal architecture were the Dwemer tonal architects who could shape tones through their own vocalizations, amplified by magical torcs; they would wear protective headgear known as Dwemeri tonal attenuators, which would protect their ears and thought-organs from the harmonic feedback fluctuations of their work. The Dwemer exhibited near total mastery of tonal forces and would use it in mining, medicine, architecture, and even psychology. Ancient Chimeri scholarship states that the Dwemer could employ tonal forces to bend weaker minds to their will—a form of complex aural hypnosis. The Dwemer were able to create massive devices called tonal resonators, complex architectural wonders that stood taller than the most imposing giants, and filled cavernous chambers with pipes, dials, and pistons. When enabled, the resonators released a series of powerful tones that could alter the brainwaves of lesser mer and men, with the ability to induce deep calm, profound pleasure, or paranoia and terror; it is said these devices had virtually limitless uses.\r\n\r\nIn the First Era, following the discovery of the Heart of Lorkhan by the Dwemer, Lord Kagrenac and his tonal architects created Kagrenac's Tools to manipulate the Heart via tonal architecture and use it to create their own god, the Numidium. Instead, this act ultimately led to the disappearance of the Dwemer in 1E 700, and the tools were subsequently used by the Tribunal and Dagoth Ur to achieve divinity.\r\n\r\nA Dwarven Resonator was discovered in the Kwama mines of Gnisis, when miners uncovered a Dwemer ruin within. It caused madness to the kwama inside, making the kwama hostile and making them turn on their own queen and on the miners. The miners inside also became mad, becoming fixated upon the song, humming it over and over and becoming fixated on making the melody right. People afflicted by it described the experience as being able to see the melody, its shimmer, putting a tone and a color to describe it. The resonator itself was disabled by the Vestige and the miners were able to return to normal. Theories existed of it being a mind control device.\r\n\r\nSotha Sil drew inspiration from the Dwemer for his creations, and their influence in his work is rumored to be traceable as far back as before their disappearance. Among these influences was his research on Dwemer tonal architecture, which he uses to perform his divine workings. He refined it further and created items based on their research, such as improving Dwemer tonal forks that could function as a divining rod, and the Resonant Sphere, one of Sotha Sil's minor marvels. The sphere produces an aural response upon applying magic to it, and chimes with a sound similar to the ones that ring in the Brass Fortress.", + "display_name": "tonal_architecture", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ehlnofey (also spelled Elhnofey) are Dawn Era spirits widely regarded as the progenitors of mortal life and, in many elven traditions, as the earliest form of the Aedra manifest within Nirn. The term translates roughly to “Earthbones” in Ehlnofex, but in practice “Ehlnofey” most often refers to the spirits who did not fully sacrifice themselves during the making of the world and whose descendants become mortals, while “Earthbones” more properly refers to those who, like Y’ffre, gave themselves completely to stabilize the Mundus and became the underlying laws of nature—the literal “bones of the earth.” Different texts blur or separate these usages, and some treat both terms as referring to the early offspring of the Aedra rather than the Aedra themselves, instructed to populate the world and live on through their children.\r\n\r\nThere are two major origin models in the lore. The Anuad describes the Ehlnofey (and the Hist) as survivors of an earlier cosmos—the “Twelve Worlds” shattered by Padomay—who were carried, along with fragments of their realms, into the new world of Nirn. In this telling, one group arrived together with a large intact landmass and became the ancestors of the mer in a region later remembered as Old Ehlnofey (often equated with Aldmeris), while other scattered Ehlnofey became the forebears of men on broken shores. Other traditions, especially among elves, instead identify them as Aedric spirits who were party to the construction of Nirn, remained after Magnus and the Magna‑Ge fled, and then split between those who became Earthbones (fixing natural law) and those who became ancestors to mortals through a process of gradual diminishment in power over generations. Their language, Ehlnofex, is referenced as a dangerous, shifting script, and remnants or derivatives of Ehlnofey power—such as certain bones, pearls, and “Old Blood” in Altmer lines—are said to carry unusually strong, law‑tied magicka used in early Aldmeri talismans and covenants with the land.", + "display_name": "ehlnofey", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Book of Dawn and Dusk is a collection of sayings and aphorisms attributed variously to the Tribunals and to their saints and servants. Many of these sayings have become common cliches of everyday life in Morrowind. The following selection of slogans will illustrate many of the simplest notions of the Tribunal faithful.\r\nSpeak none but good of the Gods.\r\nWe can have no opinions about Truth.\r\nRumors flow from the House of Troubles.\r\nCount only the happy hours.\r\nNo child has a sinner's heart.\r\nLet faith be your only law.\r\nFear of the fool is the beginning of wisdom.\r\nAlmsivi in every hour.\r\nWalk always in the presence of your Lords.\r\nComfort is given, justice is taken.\r\nLearn by serving.\r\nFrom the heart, the light; from the head, the law.\r\nBlessed Almsivi, Mercy, Mastery, Mystery.\r\nForge a keen Faith in the crucible of suffering.\r\nEngrave upon thy eye the image of injustice.\r\nDeath does not diminish; the ghost gilds with glory.\r\nFaith conquers all. Let us yield to Faith.\r\nBetter to suffer a wrong than to do one.\r\nThe heavens are in their glory, applaud!\r\nFolly secures its power to harm.\r\nThough forbidden to some, not to you.\r\nOh, how rarely wisdom rules our hearts!\r\nBlessed are we who serve Almsivi.\r\nThree mouths sing Mercy, Mastery, Mystery.\r\nGather no seed in the fields of Oblivion.\r\nThe Thrice-Sealed House withstands the Storm.\r\nBy Breath and Blood protect us all!\r\nCan ghosts or justice change with time?\r\nConsider your end, mortal!\r\nAccept grace without limits.\r\nEnter the rhapsody of the God-Poet.\r\nKneel before the Teacher's chair.\r\nThree Hands, three Hearts, three Eyes.\r\nKeep no secret from your Judge's scale.\r\nForge Darkness into Light.\r\nRefuse neither brother nor ghost.\r\nBlessed Almsivi, through birth, life, ghost.\r\nFrom glowing ashes the Poet's wrath shall shine.\r\nIf Vivec is for us, who can stand against us?\r\nFate, monstrous and empty, the whirling wheel of evil.\r\nHow black my heart, roasting fiercely?", + "display_name": "book_of_dawn_and_dusk", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Interregnum refers to the period between the fall of the Reman Dynasty and the founding of the Third Empire under Tiber Septim—a span of roughly four centuries marked by political collapse, fractured provinces, and the absence of a Dragonborn emperor to maintain the Dragonfires. After Reman III’s assassination and the failure of the Potentate Savirien-Chorak’s line, Cyrodiil lost centralized rule entirely. Provincial powers rose and fell in rapid succession, and Daedric influences, such as the Soulburst and the Planemeld, further destabilized the era.\n\nThis period is characterized in surviving Imperial records as a time of “petty-kings and claimant-thrones.” The Akaviri Potentate’s bureaucracy declined, the Elder Council lost its authority, and many regions reverted to local governance or warlordism. Scholarship from the Arcane University and the Synod indicates that the disruption of the Dragonfires weakened the conceptual boundary between Nirn and Oblivion, helping explain why large-scale Daedric crises—such as Molag Bal’s attempted Planemeld—occurred during this era. The Interregnum ended only when Tiber Septim conquered Cyrodiil and reestablished stable rule, later founding the Third Empire.", + "display_name": "interregnum", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "\"Shadows are not an absence of light, they are reflections from another world.\"\r\n—Skelos Undriel, Shadowmage\r\n\r\nShadow Magic is an obscure arcane discipline first unlocked by Azra Nightwielder, who discovered that shadows are not the absence of light but reflections cast from alternate possibilities—echoes of other worlds shaped by clashing forces. Every shadow records conflict: light against object, intent against intent, even nation against nation. By manipulating these reflections, a shadowmage can influence the forces that created them. This makes Shadow Magic metaphysically dangerous; its expressions reach across potential realities, and its energies often turn against their wielder.\r\n\r\nHistorical records of the Interregnum describe Nightblades and specialized shadowmages using these arts to step through shadows, project themselves into shadow-realms, drain vitality, forge weapons and armor from condensed shadow, and even merge with alternate selves. The practice carries severe risks: mental distortion, sensory collapse, shriveling of flesh, dissociation, or corruption into an “echo of what’s right.” Scholars disagree on its formal classification, but most associate it with advanced Illusion and Mysticism, with some overlap into Oblivion studies due to its planar reach. Artifacts such as the Shadowkeys, Shade Sickle, and Shadowrend demonstrate Shadow Magic’s capacity to affect life, soul, shadow, and possibility itself.", + "display_name": "shadow_magic", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Sixth House, also known as House Dagoth, was a long-vanished Great House of the Chimer that resurfaced in the Third Era as a secretive, quasi-religious cult led by the ascended Dagoth Ur. Historically, House Dagoth was destroyed during the Battle of Red Mountain in the First Era, its lands dissolved and its members absorbed by the surviving Great Houses. Official Dunmeri histories recorded it as extinct.\r\n\r\nHowever, Dagoth Ur did not die at Red Mountain. Instead, he awoke centuries later, empowered by the corrupted Heart of Lorkhan within the volcano of Red Mountain. There he established a subterranean kingdom of sleepers, dreamers, ash creatures, and blight-corrupted followers. The Sixth House sought to overthrow the Tribunal, unite Morrowind under the “true” faith of the New Temple, and spread the Blight across Tamriel.\r\n\r\nThe organization operated through dreams, telepathic influence, and disease propagation—particularly through corprus, a magically mutative affliction tied directly to the Heart. Sixth House bases, known as Ash Vampire citadels, were hidden within Red Mountain’s Ghostfence. Each citadel was ruled by an Ash Vampire—an immortal servant of Dagoth Ur linked to him through the Heart’s power. The Sixth House was ultimately destroyed in 3E 427 when the Nerevarine severed Dagoth Ur’s connection to the Heart, ending the Blight and collapsing the cult’s power structure.", + "display_name": "sixth_house", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Tale of Dro’Zira is a Khajiiti campfire legend recounting how the ancient warriors of the Pride of Alkosh once answered the Time Dragon’s roar and raced across Tamriel to join his cause. In this telling, Lorkhaj—jealous of their devotion—granted his Voice to the Ash King, Ra’Wulfharth, who used its lunar power to alter the moons and transform the Khajiiti warriors into Senche, stripping them of reason. Only Dro’Zira among the “Rhojiit” retained memory and answered Wulfharth’s later summons at Red Mountain. The tale credits Dro’Zira with saving the Ash King from Dulmalacath and aiding him in the climactic struggle upon the mountain.\n\nThe legend further claims that Lorkhaj restored Dro’Zira from the realm of Sheogorath in recognition of this bravery, while the remaining Rhojiit dwindled into the wild sabre cats of Skyrim. Though framed as paternal boasting and colored by cultural pride, certain mythic parallels—particularly regarding Wulfharth, Red Mountain, and lunar transformation—intersect intriguingly with Nordic and Dunmeri traditions. Scholars regard the tale as an etiological myth explaining the origin of sabre cats in Tamriel’s northern regions, as well as a rare Khajiiti perspective on events otherwise preserved in Nordic song.", + "display_name": "the_tale_of_dro’zira", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Thieves Guild book “Shadowmarks,” authored by Delvin Mallory, which serves as a guide for initiates learning to read the code.\n\nGuild — Marking: a diamond-shaped symbol with a circle inside it.\nMeaning: A member or ally of the Thieves Guild is nearby.\n\nSafe — Marking: an upright triangle containing a circle.\nMeaning: The location is safe for thieves; the path ahead has been scouted or cleared.\n\nDanger — Marking: a downward-pointing triangle with its bottom point enclosed in a circle.\nMeaning: Something dangerous lies inside or ahead.\n\nProtected — Marking: a diamond containing two circles or paired markings.\nMeaning: The person or property is under Thieves Guild protection and must not be robbed.\n\nFence — Marking: a split diamond or diamond with its top separated by a line.\nMeaning: A fence operates here and will purchase stolen goods.\n\nLoot — Marking: a circle containing a striped square or box-like shape.\nMeaning: Valuable items are known to be present inside.\n\nEmpty — Marking: a circle containing a plain square.\nMeaning: The building has already been cleared or contains nothing worth stealing.\n\nThieves’ Cache — Marking: a diamond with a barrel-like circle or container symbol inside.\nMeaning: A hidden stash left by the guild can be found nearby.\n\nEscape Route — Marking: a circle with an arrow or triangular point leading outward.\nMeaning: Indicates a hidden escape route, often used in dungeons or jail cells.", + "display_name": "shadowmarks", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "In Khajiiti historical tradition, A Rage of Dragons refers not merely to scattered dragon attacks, but to the organized incursion of a powerful draconic host led by the dragon Kaalgrontiid, who sought to harness the lunar power of the moons and ascend to godhood. During this period—traced in Khajiiti accounts to ancient times when Elsweyr was divided into many kingdoms—the dragons established dominance over large portions of the land, threatening both the physical and spiritual order of the Khajiit by attempting to manipulate the Lunar Lattice itself.\r\n\r\nKhajiiti legend holds that this crisis was ultimately ended not through direct warfare, but through cunning. The hero Khunzar-ri and his companions deceived Kaalgrontiid and his followers, turning their own ambitions against them and sealing the dragons away rather than destroying them outright. These events became embedded in Khajiiti cultural memory as a defining example of guile overcoming brute strength. In later eras, the phrase A Rage of Dragons would be invoked again when these same dragons were released and once more threatened Elsweyr, reinforcing its meaning as both a historical event and a recurring warning of draconic catastrophe.", + "display_name": "a_rage_of _dragons", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The text attributed to Torhal Bjorik presents the Dragon War as a decisive rebellion against draconic tyranny, emphasizing the role of mortal resistance and unity in overthrowing the dragons’ dominion. It describes how dragons were once worshipped as gods, ruling through appointed priests who enforced their will across Skyrim. Central to this narrative is the notion that mortals, though initially subjugated, eventually rose against their overlords through courage and growing defiance, culminating in a war that broke the dragons’ power.\r\n\r\nScholars note that while The Dragon War is widely circulated and treated as a reliable summary, it simplifies a far more complex period. Other accounts suggest the conflict involved internal divisions among dragons themselves, as well as the intervention of figures such as Paarthurnax, whose defection is said to have aided mankind. Additionally, the development or rediscovery of the Thu’um as a weapon against dragons is often understated in the text. As such, the work is valued as an accessible overview, though not a complete or fully nuanced record of the events it describes.", + "display_name": "dragon_war_by_torhal_bjorik", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The work attributed to Torhal Bjorik attempts to consolidate known accounts of dragons into a rational framework, though it reflects the limitations of its time. It asserts that dragons are not born in any conventional sense, claiming there are no verified accounts of eggs, mating, or young, and instead presents them as beings that simply “are”—eternal and unchanging in nature. This conclusion is supported in the text by dubious sources, including testimonies attributed to Daedra, revealing both the ambition and methodological weaknesses of the author’s approach.\r\n\r\nThe text also recounts the apparent decline of dragons, noting their near destruction during the ancient Dragon War and subsequent hunts by later powers, including the Akaviri and those who followed Tiber Septim. It presents the belief that dragons had vanished entirely from Tamriel, either slain or driven into hiding, a conclusion widely accepted prior to their return. However, scholars recognize that There Be Dragons omits or misunderstands key aspects of draconic existence—such as their relationship to time, their capacity for resurrection, and internal divisions among their kind—rendering it a useful but incomplete treatise, shaped as much by absence of evidence as by fact.", + "display_name": "there_be_dragons", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "sought and entered his service. From that moment, they became instrumental in the founding and protection of the Second Empire, serving as both imperial bodyguards and dragon hunters. Their techniques, said to be inspired by draconic power, distinguished them from conventional warriors and contributed to their formidable reputation.\r\n\r\nFollowing the assassination of Reman III, the Dragonguard was officially disbanded, though the text suggests this marked a transformation rather than an end. Some members continued in secret under the Akaviri Potentates as a covert force, while others dispersed across Tamriel, carrying fragments of their knowledge into new roles. Notably, the work attributes the origins of the so-called Dragon Knights to a surviving master who ensured the continuation of Akaviri martial traditions through deliberate teaching. As such, the “legacy” described is not merely institutional, but cultural—persisting through splinter groups, successor organizations, and the transmission of specialized techniques long after the order itself had faded.", + "display_name": "legacy_of_the_dragonguard", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Authored by Hela Thrice-Versed, the text presents a thesis that the roars of dragons are not merely instinctive sounds, but structured words belonging to a coherent and decipherable language. Drawing upon reports from explorers and crypt delvers, the author identifies recurring references to ancient walls inscribed with unknown symbols across Skyrim. Through direct examination of these sites, she concludes that these inscriptions—now commonly associated with Nordic barrows and ruins—preserve the written form of the dragon tongue, likely copied or adapted by ancient Nords who lived under draconic rule.\r\n\r\nThe work proceeds through recorded transcriptions and attempted translations of these inscriptions, identifying repeated grammatical structures and recurring phrases such as funerary markers and commemorations of the dead. These findings lead the author to assert that the word walls serve multiple functions: grave markers, memorials, and records of events. She further proposes that certain words carry an inherent power beyond their literal meaning, suggesting a link between language and the destructive force attributed to dragons. While influential, the text reflects its speculative methodology, relying heavily on pattern recognition and field observation rather than established linguistic tradition, and leaves unresolved questions regarding how such power is accessed or why it persists.", + "display_name": "dragon_language_myth_no_more", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Seven Fights of the Aldudagga is not a single authored work, but a compiled series of skaldic verses attributed to Bretonordic oral tradition, later gathered and preserved in written form. The text is drawn from a larger body of songs known as the Aldudaggavelashadingas, translated as “The Songs of Dragon and Dagon,” and recounts a sequence of mythic episodes involving dragons, mortals, and entities that blur the boundary between history and legend.\r\n\r\nThe narratives themselves are highly symbolic and often defy conventional chronology or causality. Figures such as Alduin appear in forms that differ from more formal Nordic accounts, alongside events involving transformation, consumption, and rebirth. One tale describes the origin of Mehrunes Dagon through an act of violent creation, while others recount contests between dragons and mortals that resemble allegory as much as recorded history. The structure and language of the text suggest it preserves fragments of older mythic frameworks, possibly reflecting early attempts to understand draconic beings and their relation to destruction, time, and cyclical existence. Scholars generally treat the work as mytho-poetic material rather than reliable history, though its themes echo elements found in more accepted traditions.", + "display_name": "the_seven_fights_of_the_aldudagga", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alkosh weaves and pulls threads tight, a tapestry of endless time. He sees a snag and frowns. With a single claw he pierces the fabric, catching the snag and pulling it below. The threads realign.\r\n\r\nI sing of that tapestry, of those tight threads of endless story. The priests of Pridehome sing with me, until our voices become harmony. But those who enter into the Pride of Alkosh will become the Dragon King’s claws, to catch and pull those dangling threads.\r\n\r\nThey come to us as cubs, born under the dark eclipse. They are Forgotten Manes, destined to never rule. We give them purpose, guidance. We sing the words of Alkosh so that his wisdom may collect in their hearts like the bottom of an hourglass. These secret defenders who shall join the Pride of Alkosh.\r\n\r\nWhen Alkosh frowns, they rise. When Elsweyr cries, they fight. And with their dying breath, Khenarthi will be there to guide them to a place beyond the Sands Behind the Stars.", + "display_name": "the_pride_of_alkosh", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Authored by Xandria Prevette, Scholar-at-Large, the text documents direct observations made during the resurgence of dragons in Elsweyr during the Season of the Dragon. Unlike accounts centered on Anequina, the work focuses on Pellitine and records encounters near Senchal, where dragons are observed behaving in ways that do not always align with their destructive reputation. One such dragon is noted to have caused no harm, prompting speculation regarding variation in temperament or intent among individual dragons.\r\n\r\nThe account also records a separate encounter involving a hostile dragon slain by hunters, during which the author attempts to obtain the creature’s name—highlighting the importance of names in draconic identity and speech. A third observation identifies the dragon Laatvulon by name, confirming both hierarchy and command among certain dragons active in the region. The text closes with reference to the re-emergence of the Dragonguard, situating these events within a broader historical continuity tied to earlier dragon hunts and the legacy of Akaviri intervention.", + "display_name": "dragons_of_southern_elsweyr", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Written by Axulsha of Black Marsh, the text presents a structured examination of dragons observed in Southern Elsweyr, with particular attention given to physical traits, behavior, and combat tendencies. The author distinguishes between dragons by coloration, describing both a red and a black specimen, and notes deviations from earlier assumptions regarding draconic hierarchy. In both cases, the dragons observed appear to operate independently rather than as part of a clearly defined social order, challenging prior interpretations drawn from older sources.\r\n\r\nDetailed observations include diet, hunting patterns, and combat methods. The red dragon is described as an aggressive apex predator employing flame and conjured atronachs, while the black dragon demonstrates nocturnal habits, ambush tactics, and the use of storm-based abilities. These findings suggest variation not only in physical form but in elemental affinity and behavioral specialization. The work reflects a methodical but limited sample size, and its conclusions remain provisional, representing one of the first attempts to systematically categorize dragons through direct study rather than inherited tradition.", + "display_name": "varieties_of_dragons_an_initial_exploration", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The text presents a cosmological narrative rooted in Khajiiti theology, centered on the figure of Akha, the First Cat, whose many paths and offspring give rise to a wide array of spirits and beings. Among these are entities associated with natural forces, divine functions, and more dangerous or chaotic aspects of existence. The narrative describes Akha’s disappearance and the subsequent rise of Alkosh, who assumes his role and authority, inheriting dominion over time and the Many Paths.\n\nDragons are framed within this system as the rebellious or wayward children of Alkosh, tying them directly to the structure of time and divine order rather than presenting them as mere beasts. The text further connects Alkosh’s restoration to the intervention of Khenarthi, reinforcing the interplay between divine forces in maintaining cosmic balance. As with many Khajiiti traditions, the account blends metaphor and theology, offering insight into how dragons, spirits, and gods are understood within a unified mythic framework rather than as separate categories of existence.", + "display_name": "the_wandering_spirits", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Companions are a legendary group of honorable warriors based in Whiterun, Skyrim, with their headquarters at Jorrvaskr. They trace their origins to Ysgramor and his Five Hundred Companions, who returned to Skyrim seeking vengeance against the elves. Today, they operate as neutral mercenaries, led by a Harbinger, and avoid political conflicts. The Companions hold a respected role in Skyrim's history, valuing tradition and honor above all. There are rumors that they are secertly werewolves.", + "display_name": "companions", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Thieves Guild in Skyrim is a secretive organization focused on criminal activities like theft and smuggling while maintaining order among criminals. Based in Riften's underground Ragged Flagon, the guild avoids targeting the poor and excessive violence, earning a degree of tolerance from authorities. The guild's influence extends across Skyrim, restoring its power through key assignments in major cities.", + "display_name": "thieves_guild", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dark Brotherhood is a secretive guild of assassins in Skyrim, specializing in murder-for-hire. Once powerful, it has declined in recent years and operates outside the law, feared by many. They are known to send notes with vague threats with a blackhand drawn on them. It is also rumored that you can summon the Dark Brotherhood to perform an assination using a secret dark ritual.", + "display_name": "dark_brotherhood", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Imperial Legion is the Empire of Tamriel's primary military force, tasked with maintaining peace, enforcing laws, and protecting the Empire. Known for its discipline and diverse, highly trained troops, it includes specialized units like archers, cavalry, and battlemages. Established in the First Era, the Legion has expanded Imperial power and played a key role in major conflicts, including the Great War and the Skyrim Civil War. Despite challenges, it remains a symbol of the Empire's strength and unity.", + "display_name": "imperial_legion", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Stormcloaks, led by Jarl Ulfric Stormcloak of Windhelm, are a rebel faction in Skyrim fighting for independence from the Empire. Their rebellion arose from opposition to the White-Gold Concordat, particularly the ban on Talos worship, which they see as an attack on Nordic traditions. Controlling much of eastern Skyrim, the Stormcloaks aim to install Ulfric as High King and establish Skyrim as a sovereign kingdom free from Imperial and Thalmor influence. The civil war divides Skyrim, with holds and cities choosing sides in the conflict.", + "display_name": "stormcloaks", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Bards College, located in Solitude near Proudspire Manor and the Blue Palace, is a renowned institution dedicated to music, poetry, and storytelling. Aspiring bards from across Skyrim come to train in the art of song and tale-telling, making the college a key influence on Skyrim's cultural traditions.", + "display_name": "bards_college", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Tribunal Temple was the primary religion of the Dunmer in Morrowind, worshiping the god-like Tribunal: Almalexia, Sotha Sil, and Vivec. It was central to Dunmer society, defending Morrowind through efforts like the Ghostfence and maintaining ties with Great Houses like Indoril and Redoran. After the Tribunal's fall and the Red Year, it reformed into the New Temple, returning to the ancestral worship of Azura, Mephala, and Boethiah. Despite this shift, underground groups continued to secretly venerate the Tribunal, facing persecution from the New Temple.", + "display_name": "tribunal_temple", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Volkihar Vampire Clan, led by Lord Harkon, is an ancient and powerful vampire group in Skyrim. Based in Volkihar Keep, a castle on an island off Haafingar's coast, the clan is known for its pure-blooded members and fearsome reputation as one of the region's most formidable vampire courts.", + "display_name": "volkihar", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Blades, originally formed from the Akaviri Dragonguard, were an elite group dedicated to serving and protecting the Dragonborn emperors of Tamriel. Initially bodyguards to Emperor Reman I, they evolved into a secretive intelligence network, playing crucial roles in Tamriel's history. Known for their loyalty to the Dragonborn, they served figures like Tiber Septim and Uriel Septim VII. Disbanded after the Great War and persecuted by the Thalmor, the Blades went into hiding and have not been seen since.", + "display_name": "blades", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Blood Horkers are a ruthless pirate group led by the battlemage Haldyn, operating in the Sea of Ghosts. Exploiting Skyrim's Civil War, they conduct raids along Tamriel's northern coast.", + "display_name": "blood_horkers", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Forsworn, also called the Madmen of the Reach, are a faction of Reachmen fighting to reclaim the Reach in western Skyrim. Their rebellion began after the Markarth Incident in 4E 176, when they were ousted by Ulfric Stormcloak's militia. Living in the wilderness, they formed a guerrilla faction, known for their tribal society and allegiance to hagravens, who conduct dark rituals like creating Briarhearts. Rejecting peace, the Forsworn wage a violent campaign against Nords and the Empire to restore their independence.", + "display_name": "forsworn", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Greybeards are an ancient order of monks living at High Hrothgar on Skyrim's Throat of the World. Masters of the Thu'um, or Voice, they follow the Way of the Voice, a philosophy of peaceful meditation advocating the Thu'um's use only in times of \"True Need.\" Founded by Jurgen Windcaller, they lead lives of spiritual study and silence, breaking it only to express reverence for the gods through their shouts.", + "display_name": "greybeards", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Penitus Oculatus is an elite Imperial organization tasked with protecting the Emperor and conducting espionage to ensure the Empire's stability. Replacing the Blades, they carry out covert operations, including assassinations, across Imperial territories. In Skyrim, they maintain a small outpost in Dragon Bridge to safeguard Imperial interests during the civil war, operating discreetly but with unwavering loyalty to the Emperor.", + "display_name": "penitus_oculatus", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Psijic Order is the oldest monastic group in Tamriel, dedicated to the study of Mysticism, or the \"Old Ways.\" Based on the Isle of Artaeum in the Summerset archipelago, the reclusive Order is renowned for its mastery of magic and spirituality. Comprised mainly of Altmer, with select members from other races, the Psijics guide the world through periods of change, a force they consider sacred, while avoiding direct political involvement.", + "display_name": "psijic_order", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Silver Hand is a criminal group that originated as werewolf hunters but became corrupted over time. They now engage in indiscriminate violence, often using brutal tactics such as capturing, torturing, and killing civilians, targeting anyone they consider an enemy.", + "display_name": "silver_hand", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Skaal are a tribe of Nords living in northeastern Solstheim, near Lake Fjalding, known for their deep spiritual bond with the land and self-sufficient lifestyle. Believing Solstheim was once part of Skyrim, their culture, rooted in oral traditions, formed through centuries of isolation. They rely solely on the land, rarely trading with outsiders, and uphold strong community ties.", + "display_name": "skaal", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Synod is a magical organization formed after the dissolution of the Mages Guild, rivaling the College of Whispers. Known for its restrictive approach, the Synod bans necromancy and limits some forms of conjuration. It emphasizes control over magical knowledge, requiring members to pay dues and work for years to access advanced spells.", + "display_name": "synod", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Thalmor are the ruling government of the Third Aldmeri Dominion, an alliance of Altmer and Bosmer promoting elven supremacy and seeking dominance over Tamriel. By 4E 201, they enforce the White-Gold Concordat in Skyrim, including the controversial ban on Talos worship, sparking resentment among Nords, especially Stormcloak rebels. Operating from their embassy near Solitude and using Northwatch Keep as a detention center, Thalmor Justiciars patrol Skyrim's roads, enforcing their policies and suppressing dissent.", + "display_name": "thalmor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Vigil of Stendarr is a holy order dedicated to eradicating Daedra, vampires, werewolves, witches, and other \"abominations\" in the name of Stendarr, the Divine of Mercy. Vigilants patrol Skyrim's roads, offering healing services and curing diseases. Their main base, the Hall of the Vigilant, is south of Dawnstar, with an additional presence at Stendarr's Beacon in The Rift.", + "display_name": "vigil_of_stendarr", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Argonians, or Saxhleel, are the reptilian natives of Black Marsh, known for their natural resistance to poison and disease, their ability to breathe underwater, and their skills in stealth and guerrilla warfare. Deeply connected to the Hist, sentient trees central to their culture, Argonians are often seen as mysterious by outsiders due to their reserved demeanor. While some integrate into other societies by adopting foreign customs, those who take the time to understand them find a resilient and noble people.", + "display_name": "argonian", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bretons, a race of mixed human and elven ancestry, primarily inhabit High Rock and the Systres Archipelago. Known for their natural affinity for magic and resistance to spells, they excel in spellcraft, alchemy, and enchantment. Bretons are shaped by a feudal society, emphasizing nobility, knighthood, and chivalry, with a shared tradition of bardic storytelling and heroism. Despite their politically fragmented lands, they balance their human and elven heritage, blending magic, honor, and adventure into a unique culture.", + "display_name": "breton", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dunmer, or Dark Elves, are the grey-skinned, red-eyed natives of Morrowind, known for their intellect, agility, and mastery of both combat and magic. Their culture values loyalty to family and clan, with a reputation for being grim, aloof, and distrustful of outsiders. While often perceived as harsh and vengeful due to a history of conflict and betrayal, they hold honor in high regard. Dunmer raised in Morrowind are more traditional, while those integrated into Imperial culture are seen as more approachable. Their long lifespans and resilience reflect their ability to thrive in their harsh homeland.", + "display_name": "dark_elf", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dunmer, or Dark Elves, are the grey-skinned, red-eyed natives of Morrowind, known for their intellect, agility, and mastery of both combat and magic. Their culture values loyalty to family and clan, with a reputation for being grim, aloof, and distrustful of outsiders. While often perceived as harsh and vengeful due to a history of conflict and betrayal, they hold honor in high regard. Dunmer raised in Morrowind are more traditional, while those integrated into Imperial culture are seen as more approachable. Their long lifespans and resilience reflect their ability to thrive in their harsh homeland.", + "display_name": "dunmer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Altmer, or High Elves, are a tall, golden-skinned race from the Summerset Isles, renowned for their unparalleled mastery of magic and intellectual pursuits. Their long lifespans enable them to excel in the arcane arts, scholarship, and culture, with much of Tamriel's language, laws, and traditions influenced by their contributions. While admired for their achievements, they are often seen as aloof and elitist due to their belief in their cultural superiority, causing tension with other races. Despite this, their impact on magic and civilization is undeniable.", + "display_name": "high_elf", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Altmer, or High Elves, are a tall, golden-skinned race from the Summerset Isles, renowned for their unparalleled mastery of magic and intellectual pursuits. Their long lifespans enable them to excel in the arcane arts, scholarship, and culture, with much of Tamriel's language, laws, and traditions influenced by their contributions. While admired for their achievements, they are often seen as aloof and elitist due to their belief in their cultural superiority, causing tension with other races. Despite this, their impact on magic and civilization is undeniable.", + "display_name": "altmer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Khajiit are a feline race from Elsweyr, known for their agility, stealth, and distinctive cat-like traits such as fur, tails, and digitigrade walking. Skilled as thieves, warriors, and traders, they are tied to the moons Masser and Secunda, which influence their form at birth. Their culture revolves around moon sugar, central to their economy and traditions, though its refinement into skooma has caused controversy. Despite facing prejudice, the Khajiit take pride in their rich heritage, vibrant arts, and unique contributions to Tamrielic society.", + "display_name": "khajiit", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nords, or the Children of the Sky, are tall, fair-haired humans from Skyrim, known for their resistance to cold and frost magic. Renowned as fierce warriors, they excel in combat and value honor, loyalty, and independence. Their culture, rooted in ancestor worship and the Old Ways, venerates gods like Kyne and Shor and honors the mystical Thu’um, or Voice. With a rich history of warfare and a distinct architectural style of wooden longhouses, Nords remain a proud and formidable people, deeply connected to their traditions and homeland.", + "display_name": "nord", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orcs, or Orsimer (\"Pariah Folk\"), are an elven race from mountainous regions like Wrothgar and Skyrim, known for their martial skill and exceptional craftsmanship. Historically feared as barbarians, they are now respected for their honor, strength, and berserker warriors, often serving in the Imperial Legion. Orc society is clan-based, centered around strongholds led by chiefs, and they worship Malacath, the Daedric Prince of Outcasts, whose teachings shape their cultural and moral code. Despite their rugged reputation, Orcs are disciplined and value fairness and justice within their communities.", + "display_name": "orc", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Redguards, a human race from Hammerfell with ancestral ties to Yokuda, are renowned for their martial skill, tactical brilliance, and adaptability in combat. Shaped by their arid, harsh homeland, they possess natural resilience, including resistance to poison, and are known for their agility and strength. Physically, they are tall and muscular, with skin tones ranging from light brown to nearly black, often with tattoos and piercings. Rooted in a warrior culture, they revere the legendary Sword-Singers and are widely recognized as adventurers, sailors, and mercenaries across Tamriel.", + "display_name": "redguard", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Bosmer, or Wood Elves, are the native Elves of Valenwood, known for their harmony with nature and exceptional archery and scouting skills. Agile and stealthy, they can command animals and blend into forests. Their society is shaped by the Green Pact, a belief forbidding harm to Valenwood's plants, making them strict carnivores and ritualistic cannibals. While less politically influential than other Elves, their wit, survival skills, and deep connection to the wilderness make them a resilient and unique people.", + "display_name": "wood_elf", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Bosmer, or Wood Elves, are the native Elves of Valenwood, known for their harmony with nature and exceptional archery and scouting skills. Agile and stealthy, they can command animals and blend into forests. Their society is shaped by the Green Pact, a belief forbidding harm to Valenwood's plants, making them strict carnivores and ritualistic cannibals. While less politically influential than other Elves, their wit, survival skills, and deep connection to the wilderness make them a resilient and unique people.", + "display_name": "bosmer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dark Seducers, or Mazken, are Daedric beings serving Sheogorath, the Daedric Prince of Madness. Humanoid in appearance and clad in dark, serpentine-themed armor, they are known for their enigmatic allure and composed demeanor. Unlike the prideful Golden Saints, Dark Seducers exhibit politeness and patience when interacting with mortals, reflecting their distinct role within Sheogorath's realm.", + "display_name": "dark_seducer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dremora, or the Kyn, are a disciplined and warlike Daedric race primarily serving Mehrunes Dagon. Known for their intelligence and rigid hierarchies, they pride themselves on unwavering loyalty to oaths and their structured order. Frequently summoned to Nirn, they act as warriors, taskmasters, or emissaries, often guarding Daedric shrines or aiding conjurers. Despite their disdain for mortals, their dedication and strength make them formidable allies or enemies. Dremora are known for their sharp memories, holding grudges, and viewing dishonor as a grave insult.", + "display_name": "dremora", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Golden Saints, or Aureal, are golden-skinned Daedra aligned with Sheogorath, the Daedric Prince of Madness. Recognizable by their striking appearance and avian-themed armor, they are highly intelligent and skilled in combat. Fiercely loyal to Sheogorath, they exhibit immense pride, which can lead to arrogance and a quick temper. Their harsh judgments and unwavering dedication make them both formidable allies and fearsome opponents.", + "display_name": "golden_saint", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Golden Saints, or Aureal, are golden-skinned Daedra aligned with Sheogorath, the Daedric Prince of Madness. Recognizable by their striking appearance and avian-themed armor, they are highly intelligent and skilled in combat. Fiercely loyal to Sheogorath, they exhibit immense pride, which can lead to arrogance and a quick temper. Their harsh judgments and unwavering dedication make them both formidable allies and fearsome opponents.", + "display_name": "gold_saint", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Snow Elves, or Ancient Falmer, were a magical race of mer who once thrived in Skyrim and parts of High Rock. Distinguished by their pale skin, white hair, and frost resistance, they excelled in magic and lived in advanced civilizations rivaling the Altmer of Summerset. Their long lifespans and resilience allowed them to flourish in cold regions, but they were gradually displaced by the Nords during the late Merethic and early First Eras.", + "display_name": "snow_elf", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dawn Era, or Dawn Age, is a primordial period in Tamriel's history marked by a nonlinear concept of time and the absence of established natural laws. Events during this era often blended ideological conflicts with tangible wars, creating a chaotic and elusive historical narrative. With no fixed dates, debates persist over whether certain occurrences, like the Velothi dissident movement, belong to this era or the Merethic Era. The Dawn Era's influence lingers in phenomena like Dragon Breaks, where remnants of its chaos resurface in later history.", + "display_name": "dawn_era", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Merethic Era, or Mythic Age, is a historical period rich in myth and legend, with few concrete dates or timelines. Traditionally dated backward from Year Zero of the First Era, marking the Camoran Dynasty's founding, its events are uncertain and often debated, contributing to the era's enigmatic and legendary nature.", + "display_name": "merethic_era", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The First Era, or First Age, was a pivotal period in Tamriel's history, beginning with the founding of the Camoran Dynasty in 1E 0. It was marked by the rise and fall of kingdoms, cultural development, and significant conflicts. Key events included the consolidation of Nordic power under High King Harald, the Alessian Slave Rebellion that ended Ayleid rule, and the War of the First Council between the Chimer and Dwemer. The era ended in 1E 2920 with Emperor Reman III's assassination, leading to the Akaviri Potentate and the Second Era.", + "display_name": "1st_era", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The First Era, or First Age, was a pivotal period in Tamriel's history, beginning with the founding of the Camoran Dynasty in 1E 0. It was marked by the rise and fall of kingdoms, cultural development, and significant conflicts. Key events included the consolidation of Nordic power under High King Harald, the Alessian Slave Rebellion that ended Ayleid rule, and the War of the First Council between the Chimer and Dwemer. The era ended in 1E 2920 with Emperor Reman III's assassination, leading to the Akaviri Potentate and the Second Era.", + "display_name": "first_era", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Second Era, or Common Era, was a time of political turmoil, the decline of the Second Empire, and the rise of influential factions and alliances. Beginning in 2E 1 with Potentate Versidue-Shaie's stewardship, it saw events like the founding of the Mages Guild (2E 230), the Elsweyr Confederacy (2E 309), and the assassination of Versidue-Shaie (2E 324), which led to the Empire's fragmentation. Key conflicts included Varen's Rebellion (2E 576) and the Three Banners War, as factions vied for the Ruby Throne. The era ended in 2E 896 with Tiber Septim's unification of Tamriel, paving the way for the Third Era.", + "display_name": "2nd_era", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Second Era, or Common Era, was a time of political turmoil, the decline of the Second Empire, and the rise of influential factions and alliances. Beginning in 2E 1 with Potentate Versidue-Shaie's stewardship, it saw events like the founding of the Mages Guild (2E 230), the Elsweyr Confederacy (2E 309), and the assassination of Versidue-Shaie (2E 324), which led to the Empire's fragmentation. Key conflicts included Varen's Rebellion (2E 576) and the Three Banners War, as factions vied for the Ruby Throne. The era ended in 2E 896 with Tiber Septim's unification of Tamriel, paving the way for the Third Era.", + "display_name": "second_era", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Third Era, or Septim Era, began in 3E 0 with Emperor Tiber Septim's unification of Tamriel. Defined by the Septim dynasty's rule, it saw periods of prosperity and strife, including the War of the Red Diamond and the influence of figures like Potema, the Wolf Queen. Key events included the rise and fall of knightly orders and the Empire's expansion. The era ended in 3E 433 with the Oblivion Crisis, when Daedric forces invaded, culminating in Martin Septim's transformation into the Avatar of Akatosh to defeat Mehrunes Dagon, closing the Third Era and reshaping Tamriel's future.", + "display_name": "3rd_era", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Third Era, or Septim Era, began in 3E 0 with Emperor Tiber Septim's unification of Tamriel. Defined by the Septim dynasty's rule, it saw periods of prosperity and strife, including the War of the Red Diamond and the influence of figures like Potema, the Wolf Queen. Key events included the rise and fall of knightly orders and the Empire's expansion. The era ended in 3E 433 with the Oblivion Crisis, when Daedric forces invaded, culminating in Martin Septim's transformation into the Avatar of Akatosh to defeat Mehrunes Dagon, closing the Third Era and reshaping Tamriel's future.", + "display_name": "third_era", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Fourth Era began in 4E 1 after the Oblivion Crisis and the end of the Septim dynasty. The Empire struggled to maintain unity as provinces exploited its weakened state. Major events included the eruption of Red Mountain in 4E 5, devastating Vvardenfell, and Morrowind's invasion by Argonians. The rise of the Aldmeri Dominion brought further conflict, with the Great War (4E 171–175) culminating in the sacking of the Imperial City and the harsh White-Gold Concordat. Hammerfell's secession and the Stormcloak Rebellion in Skyrim marked continued unrest, defining the era as one of decline and turmoil for the Empire.", + "display_name": "4th_era", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Fourth Era began in 4E 1 after the Oblivion Crisis and the end of the Septim dynasty. The Empire struggled to maintain unity as provinces exploited its weakened state. Major events included the eruption of Red Mountain in 4E 5, devastating Vvardenfell, and Morrowind's invasion by Argonians. The rise of the Aldmeri Dominion brought further conflict, with the Great War (4E 171–175) culminating in the sacking of the Imperial City and the harsh White-Gold Concordat. Hammerfell's secession and the Stormcloak Rebellion in Skyrim marked continued unrest, defining the era as one of decline and turmoil for the Empire.", + "display_name": "fourth_era", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Dragonborn, or Dovahkiin, is a mortal blessed by Akatosh with the soul and blood of a dragon. This rare gift allows them to master the thu'um, or dragon shouts, by absorbing the souls and knowledge of slain dragons. This ability disrupts a dragon's immortality and shields them from necromantic control, evoking both fear and hostility among dragons.", + "display_name": "dragonborn", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonborn, known as Dovahkiin in the Dragon Language, is a mortal endowed with the blood and soul of a dragon by Akatosh, the Father of Dragons. This rare blessing grants individuals an extraordinary ability to harness the power of the thu'um, or dragon shouts, enabling them to absorb the knowledge of these powerful vocalizations directly from the souls of slain dragons. As a result, Dragonborn evoke both fear and animosity among dragons, since their unique ability to consume a dragon's soul disrupts the creature's immortality and shields them from necromantic influences.", + "display_name": "dovahkiin", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Great War (4E 171–175) was a major conflict between the Third Empire and the Third Aldmeri Dominion. Sparked by the Thalmor's demands for tributes, territorial concessions, and the suppression of Talos worship, the Empire's rejection led to a Thalmor invasion and the capture of the Imperial City. Though the Empire reclaimed the city, the war concluded with the White-Gold Concordat, a treaty imposing harsh terms, including banning Talos worship and ceding southern Hammerfell. The war signified the Empire's decline and the Aldmeri Dominion's rise as a dominant power in Tamriel.", + "display_name": "great_war", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Oblivion Crisis, or Great Anguish, began in 3E 433 when the assassination of Emperor Uriel Septim VII and his heirs enabled the Daedric Prince Mehrunes Dagon to unleash his forces on Tamriel through Oblivion Gates. Facilitated by the Mythic Dawn cult, the Daedra wrought devastation, destroying cities like Kvatch and besieging regions such as Skyrim. In Black Marsh, the Argonians, guided by the Hist, successfully repelled the Daedric hordes. Amid the chaos, Martin Septim, the last of the Septim bloodline, sacrificed himself by becoming the Avatar of Akatosh, using the Amulet of Kings to banish Mehrunes Dagon and end the crisis, concluding the Third Era.", + "display_name": "oblivion_crisis", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Warp in the West, or the Miracle of Peace, occurred between 9th and 11th Frostfall in 3E 417, reshaping the Iliac Bay region. Triggered by the death of King Lysandus and centered around the Totem of Tiber Septim, which controlled the Numidium, the event caused a Dragon Break-like phenomenon. Competing factions, including Daggerfall, Wayrest, Sentinel, and Orsinium, vied for the Totem's power. The chaos ended with the consolidation of forty-four city-states into four loyal to the Empire. The Warp's aftermath saw figures like Mannimarco ascending and the Underking reclaiming his heart, creating an anti-magic zone. The Blades agent instrumental in activating Numidium is rumored to have perished during the event.", + "display_name": "warp_in_the_west", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Numidium, also known as the Brass God or Walking Star, is a massive Dwemer construct created by Tonal Architect Lord Kagrenac. Designed to serve as a new deity for the Dwemer, it was intended to harness the Heart of Lorkhan to reclaim Resdayn from the Chimer and achieve immortality. However, the Dwemer mysteriously vanished before activating Numidium, with their disappearance often attributed to this ambitious project.", + "display_name": "numidium", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dwemer, or Deep-Elves, were a legendary race of Mer from Dwemereth, now modern-day Morrowind, known for their advanced technology and sprawling underground cities near the Velothi Mountains and Red Mountain. Their name means \"the Deep\" or \"Deep-Counseled,\" reflecting their secretive and intellectual nature. Renowned for their expertise in science, engineering, and magic, the Dwemer's origins are mysterious, with theories of shared ancestry with the Chimer or an earlier presence in Tamriel. Their society vanished around 1E 700, leaving behind ruins and artifacts that continue to intrigue scholars and adventurers.", + "display_name": "dwemer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dwemer, or Deep-Elves, were a legendary race of Mer from Dwemereth, now modern-day Morrowind, known for their advanced technology and sprawling underground cities near the Velothi Mountains and Red Mountain. Their name means \"the Deep\" or \"Deep-Counseled,\" reflecting their secretive and intellectual nature. Renowned for their expertise in science, engineering, and magic, the Dwemer's origins are mysterious, with theories of shared ancestry with the Chimer or an earlier presence in Tamriel. Their society vanished around 1E 700, leaving behind ruins and artifacts that continue to intrigue scholars and adventurers.", + "display_name": "dwarves", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Camoran Dynasty, founded by King Eplear in Year Zero of the First Era, ruled Valenwood for much of its history. Eplear is renowned for uniting the Bosmer tribes, a remarkable military achievement. The dynasty resisted the Alessian Empire's expansions but was eventually subdued by the Second Empire in 1E 2714 after prolonged warfare and the Thrassian Plague. Though the Camorans survived, their influence waned as the Empire decentralized Valenwood, granting independence to lesser nobles.", + "display_name": "camoran_dynasty", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dragon Cult, or Atmoran Dragon Cult, originated from Atmoran traditions of animal worship, revering dragons as divine beings linked to Akatosh. Dragon priests served as intermediaries, enforcing laws and maintaining order, with temples erected in their honor. Over time, the cult became oppressive, enslaving the Nordic populace under Alduin's dominance. This led to the Dragon War, where humans, aided by some dragons, defeated Alduin and overthrew the priests, forcing dragons into hiding. Though the cult fell, they continued constructing dragon mounds for fallen dragons, awaiting their return. By 1E 140, the cult's last remnants perished at Forelhost, marking their extinction.", + "display_name": "dragon_cult", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ayleids, or Heartland High Elves, were the first to establish an empire in Tamriel, ruling modern-day Cyrodiil for generations. Known for their lean build, bronze-toned skin, and varied eye colors, they spoke Ayleidoon and built the Imperial City and the White-Gold Tower, inspired by the Adamantine Tower. Their empire fell in the early First Era after the Alessian Slave Rebellion. While legends suggest some Ayleids may survive in Tamriel's wilds, no confirmed sightings have been reported since the Third Era.", + "display_name": "ayleids", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Alessian Empire, founded in 1E 243 after the Alessian Slave Rebellion, was established by freed Nede slaves led by Queen Alessia, who received the Amulet of Kings from Akatosh. Centered in the Imperial City, it expanded to include parts of Cyrodiil, Skyrim, and High Rock, lasting over two thousand years. The empire shifted from monarchy to theocratic rule under the influence of the Alessian Order, whose doctrines shaped its governance from 1E 361. Internal conflicts and the rise of the Colovian Estates led to its fragmentation by 1E 2331, paving the way for the Second Empire under Reman I in 1E 2703.", + "display_name": "alessian_empire", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Colovia, or the Colovian West, forms the western half of Cyrodiil, known for its rugged landscapes of hills, forests, and grasslands. Its strong-willed and industrious people uphold a rich martial tradition, with many serving in the Imperial Legion. Renowned for self-sufficiency, Colovians excel in timber craftsmanship for construction and weaponry. Key cities include Anvil, Chorrol, Kvatch, and Skingrad, while the nobility often reside on private estates along the Gold Coast. Colovia's blend of frontier spirit and agricultural resourcefulness makes it a vital part of Cyrodiil's identity.", + "display_name": "colovian", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Nedes, or Nedic peoples, were early human races inhabiting Tamriel during the Merethic and First Eras. They included proto-Cyrodilians, ancestors of the Bretons, and aboriginal groups in regions like Hammerfell. Notably, the Duraki Nedes of Hammerfell worshipped celestial beings through the Cult of the Stars. Over time, Nedic culture declined due to assimilation and conflicts, with the Yokudan invasion of Hammerfell leading to their extermination there. The Nedes' legacy endures in the cultures that evolved from their societies across Tamriel.", + "display_name": "nedes", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Aldmer, or \"First Folk,\" were the original inhabitants of Tamriel, settling in Summerset Isle and beyond during the Merethic Era. Believed to have originated from the mythical Aldmeris, they are regarded as Nirn's first advanced civilization, though this is debated. Over time, the Aldmer evolved into distinct elven groups, including the Altmer, Bosmer, Dwemer, Chimer, Ayleids, and others. Known for their high culture and musical traditions, figures like High Lord Torinaan and Topal the Pilot are central to their history. Modern Altmer closely emulate their Aldmer ancestors, and \"Aldmeri\" often collectively refers to all elves or their shared heritage.", + "display_name": "aldmeri", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Green Pact is a strict code followed by the Bosmer of Valenwood, focused on protecting the forest and prohibiting the harming of plants or eating plant-based foods. Bosmer are required to consume the flesh of enemies and are fiercely protective of Valenwood, with exceptions for certain foods like dairy and insects. The Pact also grants Bosmer magical abilities to shape settlements and perform the Wild Hunt, a ritual that transforms them into powerful beasts. The Bosmer are deeply devoted to the Pact, with violations often punishable by sacrifice to the Green.", + "display_name": "greenpact", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Chimer, or \"People of the North,\" were Aldmeri tribes who, led by the prophet Veloth, migrated to Morrowind, rejecting Summerset's customs and embracing the teachings of Boethiah and other Daedra. Known for their golden skin and yellow eyes, they developed the High Velothi culture, emphasizing ambition and ancestor worship. Their transformation into the Dunmer, or Dark Elves, marked a pivotal shift in their history, though some Tribunal figures, like Almalexia and Vivec, retained Chimeric traits. The Chimer's cultural and religious practices profoundly shaped Morrowind's history and identity.", + "display_name": "chimer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Dragon Break is a phenomenon where linear time is disrupted, becoming non-linear and incomprehensible to mortals. Named after Akatosh, the Dragon God of Time, it signifies a divine disruption of reality, often triggered by events that challenge the normal flow of time and space. Resembling the chaos of the Dawn Era, its effects vary across Tamriel, creating a fractured and unpredictable timeline.", + "display_name": "dragon_break", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Thrassian Plague, unleashed in 1E 2200 by infected sea creatures, was a catastrophic disease that spread rapidly across Tamriel, killing hundreds of thousands. Victims suffered from painful boils, brittle bones, eye and ear seepage, and a maddening thirst. An Altmer Kinlord described it as an all-encompassing force that tainted every living being and water source, leaving widespread devastation and despair in its wake.", + "display_name": "thrassian_plague", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Sload, or Slugmen, are a slug-like race from the Coral Kingdoms of Thras, southwest of Tamriel. Known for their necromantic culture and semi-aquatic nature, they are infamous for their role in unleashing the Thrassian Plague in 1E 2260, which decimated over half of Tamriel's population. Described as highly dangerous by explorers, they are often compared to krakens and sea serpents, cementing their reputation as a significant threat to the region.", + "display_name": "sload", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Three Banners War, or Alliance War, occurred during the Interregnum, driven by the struggle for control over the Imperial City and the Ruby Throne. Beginning around 2E 580, it saw Tamriel divided into three alliances: the Aldmeri Dominion, Daggerfall Covenant, and Ebonheart Pact. Centered in Cyrodiil, the war caused widespread devastation and displaced many civilians. Although its exact resolution is unclear, it led to the collapse of the alliances and the Empire of Cyrodiil by the late Second Era. The war is symbolized by a three-headed ouroboros, with each head representing one alliance: an eagle (Aldmeri Dominion), a lion (Daggerfall Covenant), and a dragon (Ebonheart Pact).", + "display_name": "three_banners_war", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Planemeld was a Daedric invasion of Tamriel in 2E 582, led by Molag Bal during the Interregnum. His goal was to merge Nirn with his realm of Coldharbour using Dark Anchors—massive machines that created rifts of darkness, linking Tamriel directly to Coldharbour. This catastrophic event threatened the continent with destruction and domination by the Daedric Prince.", + "display_name": "planemeld", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "In 2E 882, Dagoth Ur's awakening triggered the Ash Blight in Morrowind, a volcanic phenomenon from Red Mountain that caused ash-heavy storms carrying crimson, tainted dust. These blight storms worsened by 3E 400, leading to widespread soul sickness near Red Mountain. House Redoran mobilized volunteers to combat the crisis, but by 3E 427, the storms peaked, isolating Vvardenfell as boats were barred from mainland Mournhold. Deformed \"corprus men\" and blight-twisted creatures emerged, making the Ashlands increasingly perilous and exacerbating the Vvardenfell Crisis.", + "display_name": "ash_blight", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "After the fall of the Septim Dynasty at the end of the Third Era, High Chancellor Ocato became Potentate but was assassinated, sparking the Stormcrown Interregnum. This chaotic period ended in 4E 22 when Colovian warlord Titus Mede seized the Imperial City and established the Mede Dynasty. Despite efforts to restore order, the Empire fractured as Black Marsh, Elsweyr, and Summerset Isle seceded, while Morrowind was devastated by Red Mountain's eruption and an Argonian invasion. Under Titus Mede II, the Empire faced the Great War (4E 171–175) with the Aldmeri Dominion, ending with the White-Gold Concordat and the loss of Hammerfell. By 4E 201, the Empire was reduced to Cyrodiil, High Rock, and Skyrim, which faced the Stormcloak and Forsworn rebellions.", + "display_name": "mede_dynasty", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Second Treaty of Stros M'Kai, signed in 4E 180, ended a decade-long conflict between the Aldmeri Dominion and the Redguards of Hammerfell. The treaty required the Dominion to withdraw its forces, confirming Hammerfell's independence but leaving the nation weakened. The treaty followed tensions sparked by Emperor Titus Mede II's acceptance of the White-Gold Concordat, which ceded Hammerfell territory to the Dominion. Hammerfell's protest against these terms led to its renouncement as an Imperial province. In the aftermath, the clandestine group known as the Remnants formed to monitor Dominion compliance and address potential treaty violations.", + "display_name": "second_treaty_of_stros_mkai", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "CHIM is a state of being that transcends limitations, originating from the Ehlnofex language. It involves understanding the universe and one's role in it while maintaining individuality, allowing for the power to reshape reality. Achieving CHIM is one of the \"Walking Ways\" to divinity and is linked to Lorkhan, who discovered it during the creation of Mundus. Tiber Septim is believed to have used CHIM to transform Cyrodiil. Vivec saw CHIM as a step toward Amaranth, a union with the Godhead that represents transcendence and a new state of creation.", + "display_name": "chim", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Hist are ancient, sentient spore trees from Black Marsh, revered by Argonians as creators and spiritual guides. With a collective consciousness spanning Nirn, they nurture Argonian eggs and guide their culture through visions and rituals involving Hist sap, a substance that enhances abilities but can be dangerous if misused. The Hist played key roles in Tamriel's history, such as rallying Argonians during the Oblivion Crisis, and are linked to artifacts like the Dreaming Tree. Central to Argonian identity, they embody the balance between primal origins and spiritual purpose.", + "display_name": "hist", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Morag Tong, an ancient assassin guild in Morrowind, operates under the patronage of Mephala, settling Great House disputes through sanctioned Honorable Writs of Execution, granting legal immunity to its assassins. Founded in the First Era, the guild is known for its precision, subtlety, and use of shortblades and chitinous-themed weaponry, reflecting Mephala's influence. Though their power declined after events like the Red Year, they remain active in Solstheim and Morrowind, often clashing with the Dark Brotherhood, a splinter group linked to their Sithis-worshipping origins. The Morag Tong continues to embody Morrowind's dark yet lawful traditions.", + "display_name": "morag_tong", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Glenmoril Wyrd, or Glenmoril Coven, is a network of female-dominated Bretonic covens across Tamriel, known for their reverence of nature and association with Daedric Princes like Hircine. These covens, often led by beastfolk such as hagravens, practice unique rites like curing lycanthropy and vampirism and shape-shifting into animals. Originally linked to the Druids of Galen, they became reclusive protectors of the wilds. Their covens, spread across High Rock, Skyrim, and Bangkorai, are influenced by various Daedric Princes, creating both alliances and rivalries. They played key roles in events like the Bloodmoon Prophecy and the introduction of lycanthropy to the Companions of Whiterun. Despite their decline, the Glenmoril Wyrd remains a powerful and mysterious force tied to the natural and supernatural realms.", + "display_name": "glenmoril_witches", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Glenmoril Wyrd, or Glenmoril Coven, is a network of female-dominated Bretonic covens across Tamriel, known for their reverence of nature and association with Daedric Princes like Hircine. These covens, often led by beastfolk such as hagravens, practice unique rites like curing lycanthropy and vampirism and shape-shifting into animals. Originally linked to the Druids of Galen, they became reclusive protectors of the wilds. Their covens, spread across High Rock, Skyrim, and Bangkorai, are influenced by various Daedric Princes, creating both alliances and rivalries. They played key roles in events like the Bloodmoon Prophecy and the introduction of lycanthropy to the Companions of Whiterun. Despite their decline, the Glenmoril Wyrd remains a powerful and mysterious force tied to the natural and supernatural realms.", + "display_name": "witches", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Camonna Tong is a notorious Dunmer criminal syndicate in Morrowind, known for its opposition to foreign influence and involvement in activities like smuggling, extortion, slavery, and murder. Active since at least the Second Era, the Tong promotes Dunmeri sovereignty, often targeting outsiders, though it sometimes collaborates with them for profit. By the Third Era, the Tong gained significant influence through its alliance with House Hlaalu, manipulating politics and secretly working with the Sixth House during the Nerevarine prophecy. The Tong's power diminished after the Nerevarine's actions and the Oblivion Crisis, with its future uncertain following Morrowind's devastation. Despite this, the Camonna Tong remains a symbol of Dunmeri xenophobia and criminal enterprise.", + "display_name": "camora_tong", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Black-Briars are a powerful family in Riften, Skyrim, led by the ruthless Maven Black-Briar, who controls local politics, industry, and the criminal underworld. Through manipulation, bribery, and alliances with groups like the Thieves Guild and the Dark Brotherhood, Maven ensures the family's dominance, particularly through their profitable business, Black-Briar Meadery. The family includes Maven's loyal son Hemming, the disgraced Sibbi, and the eccentric Ingun, who focuses on alchemy rather than the family's schemes. The Black-Briars are a formidable force in Skyrim, with their influence extending far beyond Riften.", + "display_name": "black_briar", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Blackwood Company was a notorious mercenary faction active in Cyrodiil during the late Third Era, particularly around the Oblivion Crisis. Comprised mainly of Argonians and Khajiit, they originated from soldiers who failed to reclaim Black Marsh for the Empire and operated out of Leyawiin. Unlike the Fighters Guild, the Company accepted morally questionable contracts and recruits with criminal backgrounds, creating a dangerous rivalry. Their use of Hist sap, which enhanced combat abilities but caused hallucinogenic bloodlust in non-Argonians, played a key role in their rise. The Hero of Kvatch infiltrated the Company, destroyed the Hist tree, and ended their influence, saving the Fighters Guild from collapse.", + "display_name": "blackwood_company", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Mythic Dawn was a secretive cult worshiping Mehrunes Dagon, the Daedric Prince of Destruction. Known for its pivotal role in the Oblivion Crisis, the cult, led by Mankar Camoran, assassinated Emperor Uriel Septim VII and his heirs, enabling Dagon’s invasion of Tamriel. The cult operated in secrecy, with sleeper agents and a hidden shrine. The Hero of Kvatch ultimately defeated the cult, killing Camoran and banishing Dagon. In the centuries following their downfall, remnants of the Mythic Dawn lingered, with figures like Silus Vesuius and Vonos reviving the cult’s history and influence by 4E 201.", + "display_name": "mythic_dawn", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Maormer, also known as Sea Elves or Pyandoneans, are a mysterious race of Mer from the mist-shrouded island of Pyandonea. Known for their pearlescent to blue skin and sea-adapted features, they are ruled by the immortal King Orgnum, a sorcerer who grows younger with age. The Maormer harbor a deep hatred for the Altmer and seek to conquer the Summerset Isles. Mastering snake magic and storm magic, they use sea serpents and elemental forces in naval warfare. While their ambitions have waned, their history of conflict with Tamrielic nations, including the War of the Isle, and their enduring enmity with the Altmer make them a lingering threat on Tamriel's seas.", + "display_name": "sea_elves", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Maormer, or Sea Elves, are an elusive race of Mer native to the mist-covered island of Pyandonea, south of the Summerset Isles. With pearlescent white to blue skin, fin-like ears, and sometimes gills, they are adapted to life at sea. Led by the immortal King Orgnum, a sorcerer who grows younger with age, the Maormer seek to conquer the Summerset Isles, driven by their hatred for the Altmer. Masters of snake magic and storm magic, they use sea serpents and elemental powers in naval warfare. Though their ambitions have lessened, their enmity toward the Altmer and mysterious homeland make them a persistent threat on the seas of Tamriel.", + "display_name": "maormer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Falmer, also known as Snow Ghosts or the Betrayed, are the degenerated descendants of the ancient Snow Elves, now blind and living in the depths of Skyrim. Once a proud race, they were driven underground by Nords and forced into servitude by the Dwemer, who blinded them with toxic fungi. Over generations of cruelty, the Falmer became twisted, pale, hunched creatures feared for their viciousness. Despite their degeneration, they have adapted to life underground, cultivating fungi, fishing, and breeding Chaurus for weapons and armor. Their society is brutal and tribal, raiding surface dwellers for slaves and resources. While some, like Gelebor, hope for their redemption, the Falmer's increasing aggression suggests a future of conquest.", + "display_name": "falmer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dragon War was a significant conflict in the Merethic Era, sparked by a violent uprising between dragons and humans in Skyrim. The Nords, led by Ysgramor, brought a faith that revered dragons as god-kings, with dragon priests ruling humanity. Over time, the priests became tyrannical, enslaving the population, which led to a rebellion. The dragons retaliated, but the tide turned when some dragons allied with humans, teaching them powerful magics, possibly with Akatosh's influence. The dragon priests were overthrown, and dragons were nearly hunted to extinction. The remnants of the dragon cult preserved their faith in the dragons' return, entombing dragons in mounds. The war's legacy is seen in Skyrim's ruins, myths, and the fearsome reputation of dragons.", + "display_name": "dragon_wars", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Alessian Slave Rebellion, occurring between 1E 242 and 1E 243, was a pivotal conflict in Tamriel's history, led by the Slave-Queen Alessia. It marked the liberation of the Nedic people from the oppressive Ayleid overlords, who ruled Cyrodiil through Daedra worship and cruelty. With divine guidance from the Eight Divines and support from allies like Pelinal Whitestrake and Morihaus, Alessia led a rebellion that culminated in the Siege of White-Gold Tower. The Ayleids were defeated, and Alessia became the first Empress of Cyrodiil, establishing the Alessian Empire and the Amulet of Kings. The rebellion weakened the Ayleid Empire, causing many Ayleids to flee or be destroyed, and reshaped Cyrodiil’s political, religious, and cultural landscape, marking the rise of men over mer.", + "display_name": "alessian_slave_rebellion", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "16 Accords of Madness, you do not know the author of the book, explores Sheogorath’s cunning manipulations of other Daedric Princes and mortals, showcasing his ability to create chaos and expose vulnerabilities. The stories highlight his destructive creativity, where his schemes lead to madness, conflict, and unexpected outcomes.", + "display_name": "16_accords_of_madness", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Children's Anuad: The Anuad Paraphrased, you do not know the author of the book and have limited knowledge of it, retells the Anuad creation myth in a simplified manner, focusing on the cosmic struggle between Anu and Padomay, their offspring, and the formation of Nirn. The myth traces the origins of Tamriel’s races and the shaping of the world through war, migration, and the rise of the Ehlnofey and Hist.", + "display_name": "a_children's_anuad", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Dance in Fire, you do not know the author of the book and have limited knowledge of it, is a satirical adventure chronicling the misadventures of Decumus Scotti, an Imperial clerk, as he navigates the political chaos and dangers of Valenwood. The book explores themes of survival, greed, imperialism, and cultural misunderstanding, critiquing bureaucracy and the absurdity of colonial ambitions in a foreign land.", + "display_name": "a_dance_in_fire", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Game at Dinner, you do not know the author of the book and have limited knowledge of it, tells the harrowing story of a spy embedded in Prince Helseth's court, where a dinner party becomes a deadly test of loyalty. The book explores themes of betrayal, paranoia, and the ruthlessness of political ambition, highlighting the psychological torment of espionage and the precariousness of trust in a manipulative, power-hungry environment.", + "display_name": "a_game_at_dinner", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Hypothetical Treachery, you do not know the author of the book and have limited knowledge of it, is a one-act play that delves into the treacherous dynamics among a group of adventurers seeking the Ebony Mail. The play explores themes of trust, ambition, and betrayal, highlighting the destructive nature of greed and suspicion, with its dark humor and satirical portrayal of manipulative characters who ultimately meet their downfall.", + "display_name": "a_hypothetical_treachery", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Kiss, Sweet Mother, you do not know the author of the book and have limited knowledge of it, is a chilling guide to performing the Black Sacrament, a dark ritual used to invoke the Dark Brotherhood in Skyrim. The book explores themes of desperation, vengeance, and moral corruption, illustrating the lengths people go to for justice or retribution, while highlighting the deadly consequences of making a pact with the Dark Brotherhood.", + "display_name": "a_kiss_sweet_mother", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Minor Maze: Shalidor & Labyrinthian, you do not know the author of the book and have limited knowledge of it, explores the history of Labyrinthian, from its origins as a Dragon Cult temple to its later use by Archmage Shalidor as a testing ground for aspiring archmages. The book reflects themes of power, ambition, and the pursuit of knowledge, contrasting the brutal rituals of the Dragon Cult with Shalidor's intellectual challenges, leaving a legacy of leadership and magical mastery that continues to intrigue scholars and adventurers.", + "display_name": "a_minor_maze", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Tragedy in Black, you do not know the author of the book and have limited knowledge of it, tells the story of a young mage who, driven by overconfidence, summons a Dremora to create a gift for his mother, only to fall victim to the Daedra's manipulation. The book explores themes of hubris, innocence, and the dangers of unchecked ambition, warning against the recklessness of engaging with Daedric forces without fully understanding their power.", + "display_name": "a_tragedy_in_black", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Locked Room, you do not know the author of the book and have limited knowledge of it, is a practical guide to lockpicking, offering advice on overcoming different lock designs while reflecting the author's self-assessment as a thief. The book emphasizes resourcefulness, adaptation, and the value of practical experience in mastering a craft, serving both as a how-to manual and an insight into the mind of a thief.", + "display_name": "advances_in_lockpicking", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An Accounting of the Scrolls, written by Quintus Nerevelus, Former Imperial Librarian, explores the mysteries of the Elder Scrolls through the author's attempts to catalog them, only to encounter their unquantifiable and paradoxical nature. The book reflects on the limits of human understanding, the allure of forbidden knowledge, and the shift from intellectual curiosity to spiritual surrender, portraying the Scrolls as enigmatic artifacts tied to fate and metaphysical truths beyond mortal comprehension.", + "display_name": "an_accounting_of_the_scrolls", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An Accounting of the Scrolls, you do not know the author of the book and have limited knowledge of it, explores the mysteries of the Elder Scrolls and the author's transition from skepticism to spiritual surrender upon encountering their unquantifiable nature. The book delves into themes of forbidden knowledge, the limits of human understanding, and the connection between the Scrolls and fate, prophecy, and metaphysical truths.", + "display_name": "the_adabal-a", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Aedra and Daedra, you do not know the author of the book and have limited knowledge of it, explains the differences between Aedra and Daedra, focusing on their roles in creation, change, and influence in Tamriel's cosmology. The book explores themes of permanence versus adaptability, creation versus influence, and divine authority, while also addressing cultural interpretations, especially those of the Dunmer.", + "display_name": "aedra_and_daedra", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Aetherium Wars, you do not know the author of the book and have limited knowledge of it, explores the collapse of the Dwemer cities, proposing that internal strife over the powerful crystal Aetherium, rather than external conquest, led to their downfall. The book emphasizes themes of greed, ambition, and the destructive pursuit of power, illustrating how technological brilliance and a lack of unity contributed to the Dwemer's ruin.", + "display_name": "the_aetherium_wars", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Story of Aevar Stone-Singer, you do not know the author of the book and have limited knowledge of it, tells the myth of Aevar, a young Skaal who retrieves the stolen Gifts of the All-Maker and restores harmony to his people. The book emphasizes themes of humility, selflessness, and the dangers of greed, highlighting the importance of living in balance with nature and the consequences of disrupting that harmony.", + "display_name": "aevar_stone-singer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ahzidal's Descent, you do not know the author of the book and have limited knowledge of it, recounts the tragic tale of Ahzidal, an enchanter whose obsessive pursuit of vengeance and power ultimately led to his ruin. The book explores themes of unchecked ambition, the dangers of obsession, and the corrupting influence of power, serving as a cautionary tale about losing oneself in the quest for revenge and perfection.", + "display_name": "ahzidal's_descent", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ahzirr Traajijazeri, you do not know the author of the book and have limited knowledge of it, is the manifesto of the Renrijra Krin, a Khajiit resistance group against Imperial rule, advocating for cultural preservation and freedom through defiance and strategic warfare. The book explores themes of bravery, survival, and defiance, blending humor and pragmatic wisdom, while emphasizing the importance of reclaiming what was unjustly taken and maintaining a strong cultural identity.", + "display_name": "ahzirr_traajijazeri", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alduin is Real, and He Ent Akatosh, you do not know the author of the book and have limited knowledge of it, is an essay by Thromgar Iron-Head, defending the distinction between the Nordic dragon god Alduin and Akatosh, emphasizing their cultural and moral differences. The book highlights themes of Nordic pride, skepticism toward Imperial beliefs, and the importance of oral tradition in preserving cultural identity, using humor and conviction to critique the blending of these figures by other cultures.", + "display_name": "alduin_is_real", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Alduin Akatosh Dichotomy, you do not know the author of the book and have limited knowledge of it, examines the theological conflict between Akatosh and Alduin, contrasting the interpretations of the Altmer and Nords. The book explores themes of cultural differences, the distortion of oral history, and the pursuit of truth in reconciling conflicting religious beliefs, ultimately suggesting that Alduin is a misrepresentation of Akatosh.", + "display_name": "the_alduin_akatosh_dichotomy", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Amongst the Draugr, you do not know the author of the book and have limited knowledge of it, delves into the mysterious behaviors of draugr and their connections to ancient dragon cults. The book explores themes of religious devotion, the preservation of life force, and the boundary between life and undeath, while highlighting the risks of scholarly curiosity in uncovering such ancient and eerie truths.", + "display_name": "amongst_the_draugr", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancestors and the Dunmer, you do not know the author of the book and have limited knowledge of it, explores the Dunmer's practices of ancestor veneration, spirit magic, and the sacred bond with their ancestors. Thematically, it examines reverence, familial loyalty, and the clash of cultural perceptions, especially regarding the misinterpretation of ancestor worship as necromancy, while highlighting the Dunmer's unique spiritual relationship with death and Oblivion.", + "display_name": "ancestors_and_the_dunmer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Annals of the Dragonguard, you do not know the author of the book and have limited knowledge of it, details the Dragonguard's history, focusing on their role as protectors and preservers of dragon lore. The book explores themes of loyalty, duty, and the moral conflict between political loyalty and the group's dedication to safeguarding Tamriel's history.", + "display_name": "annals_of_the_dragonguard", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Anticipations, you do not know the author of the book and have limited knowledge of it, explores the shift in Dunmer religious practices from Daedra worship to reverence for the Tribunal. Thematically, it examines divine hierarchy, devotion, and the evolving role of Daedra in the Dunmer belief system, highlighting the Three Good Daedra as protectors of the Tribunal and the Rebel Daedra as symbols of chaos and heresy.", + "display_name": "the_anticipations", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Apprentice's Assistant, you do not know the author of the book and have limited knowledge of it, offers advice for aspiring mages, blending practical strategies with theatrical tips for success in magical duels. Thematically, it emphasizes self-awareness, strategy, and showmanship, illustrating the balance between magical skill and the performance aspect required for maintaining a mage's reputation.", + "display_name": "the_apprentice's_assistant", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Arcana Restored, you do not know the author of the book and have limited knowledge of it, serves as a manual for restoring magical artifacts using a hazardous ritual involving a Mana Fountain. Thematically, it explores the risks and precision required in arcane restoration, the interplay of knowledge and danger, and the author's arrogance and critique of academic rivalries.", + "display_name": "arcana_restored", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Arcturian Heresy, you do not know the author of the book and have limited knowledge of it, challenges the official narratives of Tiber Septim's rise to power and explores his complex relationship with the Underking. Thematically, the book delves into divine ambition, mortal frailty, betrayal, and the manipulation of history for political purposes, casting doubt on the myths surrounding Tiber Septim’s reign.", + "display_name": "the_arcturian_heresy", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Argonian Account, you do not know the author of the book and have limited knowledge of it, chronicles the absurd and dangerous misadventures of Decumus Scotti in Black Marsh, highlighting the clash between Imperial ambitions and local resilience. Thematically, the book explores the futility of external interventions, the absurdity of bureaucracy, and the unintended consequences of imposing foreign systems on a land that thrives on its own unique rhythm.", + "display_name": "argonian_account", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Armorer's Challenge, you do not know the author of the book and have limited knowledge of it, tells the story of a competition between two armorsmiths, Sirollus Saccus and Hazadir, highlighting the clash between practicality and extravagance. Thematically, the book explores the value of local knowledge, ingenuity, and the dangers of overconfidence, with Hazadir's swamp-optimized armor triumphing over Saccus's more technologically advanced designs.", + "display_name": "the_armorer's_challenge", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Art of War Magic, you do not know the author of the book and have limited knowledge of it, examines the philosophy and strategy behind combining arcane and conventional tactics in warfare. Thematically, it emphasizes the importance of preparation, foresight, and subtlety in achieving victory, advocating for efficient, resource-preserving strategies rather than brute force.", + "display_name": "the_art_of_war_magic", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Atlas of Dragons, 2E 373, you do not know the author of the book and have limited knowledge of it, provides a detailed catalog of dragons in Skyrim, documenting their history from the Dragon War to the Second Era. Thematically, it explores the ongoing struggle between mortals and dragons, emphasizing perseverance, historical record-keeping, and the blending of myth and reality.", + "display_name": "atlas_of_Dragons", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Axe Man, you do not know the author of the book and have limited knowledge of it, tells the story of Minas Torik, a Morag Tong assassin whose expertise with an axe stems from a traumatic and abusive childhood. Thematically, it explores how oppression and repetitive hardship can shape unexpected skills, the psychological toll of abuse, and the transformation of trauma into a tool for survival and violence.", + "display_name": "the_axe_man", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancient Tales of the Dwemer, Part XI: Azura and the Box, you do not know the author of the book and have limited knowledge of it, explores the Dwemer’s skepticism toward divine power through the story of a sage who tests Azura’s omniscience. Thematically, the book delves into the pursuit of knowledge, mortal skepticism, and the complex relationship between gods and mortals, with a focus on the Dwemer’s irreverence and their mysterious disappearance.", + "display_name": "azura_and_the_box", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Bear of Markarth, you do not know the author of the book and have limited knowledge of it, offers a critical examination of Ulfric Stormcloak’s conquest of the Reach during the Forsworn Uprising, focusing on his brutal actions and the resulting political tensions. Thematically, the book delves into the morality of rebellion, the consequences of war, and the difficult political compromises that shape Ulfric’s legacy.", + "display_name": "the_bear_of_markarth", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Before the Ages of Man, you do not know the author of the book and have limited knowledge of it, explores the mythical and historical events of the Dawn and Merethic Eras, focusing on the creation of the cosmos, the rise of the Aldmeri, and the cultural conflicts that shaped Tamriel. Thematically, the book examines divine intervention, the rise and fall of civilizations, and the blending of myth and history in Tamrielic tradition.", + "display_name": "before_the_ages_of_Man", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Before the Ages of Man, you do not know the author of the book and have limited knowledge of it, explores the mythical and historical events of the Dawn and Merethic Eras, focusing on the creation of the mortal plane, the rise of the Aldmeri, and the cultural conflicts between Elves and humans. Thematically, the book examines the role of divine intervention, the rise and fall of civilizations, and how myth and history intertwine to shape Tamriel's past.", + "display_name": "beggar_prince", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Biography of Queen Barenziah, you do not know the author of the book and have limited knowledge of it, chronicles the life of Queen Barenziah, detailing her rise from displacement to power, political struggles, and role in key historical events. Thematically, the trilogy explores resilience, political ambition, personal sacrifice, and the complexities of leadership and loyalty in a tumultuous Tamriel.", + "display_name": "biography_of_barenziah", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Biography of the Wolf Queen, you do not know the author of the book and have limited knowledge of it, chronicles the life of Queen Potema, detailing her ruthless rise to power, political manipulation, and eventual fall from grace. Thematically, the book explores unchecked ambition, the destructive nature of political manipulation, and the consequences of hubris, painting Potema as a cautionary figure whose pursuit of power led to ruin.", + "display_name": "biography_of_the_wolf_queen", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Black Arrow, you do not know the author of the book and have limited knowledge of it, tells a tale of revenge and justice centered around the tragic events at the Duchess of Woda's estate and the skillful archery of Missun Akin. Thematically, the book explores the power of vengeance, the resilience of the oppressed, and the artistry of skill, contrasting the arrogance of nobility with the quiet strength and precision of those society overlooks.", + "display_name": "the_black_arrow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Black Arts On Trial, you do not know the author of the book and have limited knowledge of it, chronicles the debate within the Mages Guild over the practice of Necromancy, weighing the risks of corruption against the need for knowledge. Thematically, the book explores the ethical boundaries of scholarly inquiry, the responsibility of knowledge, and the potential corruption that arises from the pursuit of forbidden magic.", + "display_name": "the_black_arts_on_trial", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Boethiah's Glory, you do not know the author of the book and have limited knowledge of it, serves as a devotional text to Boethiah, emphasizing the sacredness of combat, treachery, and death. Thematically, the book explores devotion, mortality, and the glorification of conflict, urging followers to embrace Boethiah’s teachings with strength, loyalty, and reverence for life’s trials and inevitable end.", + "display_name": "boethiah's_glory", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Book of Daedra, you do not know the author of the book and have limited knowledge of it, provides an overview of the Daedric Princes, their spheres of influence, and their complex relationships with mortals. Thematically, the book explores power, chaos, morality, and the influence of the Daedric Princes on mortal desires and fears, while also touching on legendary Daedric artifacts and their perilous nature.", + "display_name": "the_book_of_daedra", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Book of the Dragonborn, you do not know the author of the book and have limited knowledge of it, explores the history, significance, and divine mystery surrounding the Dragonborn, individuals blessed by Akatosh with \"dragon blood.\" Thematically, the book delves into divine intervention, legitimacy of rule, and the mystical connection between mortals and dragons, while speculating on the prophecy of the Last Dragonborn and its connection to Tamriel's cataclysmic events.", + "display_name": "the_book_of_the_dragonborn", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Breathing Water, you do not know the author of the book and have limited knowledge of it, tells the story of Tharien Winloth, a smuggler who seeks the power to breathe underwater, only to tragically drown due to his obsession with treasure and overconfidence in his magical abilities. The book explores themes of the pursuit of power, the dangers of overconfidence, and the importance of understanding the limitations of magic and life.", + "display_name": "breathing_water", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Brief History of the Empire, you do not know the author of the book and have limited knowledge of it, chronicles the rise and reign of the Septim Dynasty, from Tiber Septim’s conquest of Tamriel to the reign of Uriel Septim VII. The book explores themes of power, unity, ambition, and the challenges of governance, highlighting the political struggles and fluctuating fortunes of the Empire throughout its history.", + "display_name": "brief_history_of_the_empire", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Brothers of Darkness, you do not know the author of the book and have limited knowledge of it, explores the origins and evolution of the Dark Brotherhood, tracing its roots from the Morag Tong cult to a profit-driven assassin organization. The book highlights themes of secrecy, power, and moral ambiguity, emphasizing the Brotherhood’s dual identity as both a feared cult and a necessary force in Tamriel's political landscape.", + "display_name": "brothers_of_darkness", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Buying Game, you do not know the author of the book and have limited knowledge of it, provides practical advice on bargaining, emphasizing strategy, cultural awareness, and etiquette in negotiations. Themes of adaptability, cultural nuance, and strategic thinking highlight the importance of recognizing different merchant types and seizing opportunities in Tamrielic commerce.", + "display_name": "the_buying_game", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Cabin in the Woods, Volume II, as Told By Mogen Son of Molag, you do not know the author of the book and have limited knowledge of it, recounts a soldier's encounter with a ghostly woman in a haunted forest, showcasing his courage and perseverance as he confronts supernatural terror. Themes of fear, isolation, and the haunting realization that some forces linger beyond escape are central to the story.", + "display_name": "the_cabin_in_the_woods", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Cake and the Diamond, you do not know the author of the book and have limited knowledge of it, tells the story of Abelle Chriditte, an alchemist who outsmarts thieves through cunning and deception, ultimately stealing a diamond while leaving her attackers humiliated. Themes of trickery, greed, and poetic justice are central, showcasing how underestimating others can lead to unexpected consequences.", + "display_name": "the_cake_and_the_diamond", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Complete Catalogue of Enchantments for Armor, you do not know the author of the book and have limited knowledge of it, provides an overview of armor enchantments that enhance various attributes, resistances, and abilities, offering practical solutions for warriors, wizards, and adventurers. Themes of adaptability, innovation, and the practical use of magic are central, highlighting how enchantments serve to meet the diverse needs of those in combat and exploration.", + "display_name": "catalogue_of_armor_enchantments", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Complete Catalogue of Enchantments for Weaponry, you do not know the author of the book and have limited knowledge of it, outlines various weapon enchantments that enhance combat effectiveness, including elemental effects, fear, and soul trap enchantments. The book emphasizes themes of power, morality, and the evolving nature of magical knowledge, while exploring the strategic and ethical considerations of these enchantments.", + "display_name": "catalogue_of_weapon_enchantments", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cats of Skyrim, you do not know the author of the book and have limited knowledge of it, provides an account of feline species in Skyrim, focusing on the sabrecat and its adaptations to the harsh environment. Themes of adaptation, survival, and the practical utility of these creatures for crafting and alchemy are explored throughout the text.", + "display_name": "cats_of_skyrim", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chance's Folly, you do not know the author of the book and have limited knowledge of it, tells the tale of Minevah Iolos, a thief whose greed and betrayal lead to her tragic end. Themes of greed, mistrust, divine intervention, and the consequences of deceit are explored, highlighting the unpredictable influence of Sheogorath and the folly of overconfidence.", + "display_name": "chance's_folly", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Charwich-Koniinge Letters, you do not know the author of the book and have limited knowledge of it, follows the dangerous pursuit of the Daedric artifact Azura's Star, revealing a tale of betrayal, manipulation, and deadly encounters. Themes of ambition, trust, the corrupting influence of power, and the consequences of greed are central, illustrating the destructive cost of meddling with Daedric artifacts and the fragility of trust.", + "display_name": "charwich-koniinge_letters", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cherim's Heart of Anequina, you do not know the author of the book and have limited knowledge of it, explores the work of Khajiiti tapestry artist Cherim, particularly his depiction of the Five Year War and the contrast between Khajiiti and Nordic military traditions. Themes of cultural identity, the intersection of art and warfare, and the blending of tradition with foreign influence are central to the narrative, highlighting Cherim’s personal experiences and artistic expression.", + "display_name": "cherim's_heart", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Children of the Sky, you do not know the author of the book and have limited knowledge of it, explores the Nords' connection to the Thu'um, their powerful cultural and spiritual bond with the sky and wind. Themes of power, identity, and the elemental forces of Skyrim are central, with a focus on the toll of mastering the Thu'um and the Nords' sense of alienation despite their strength.", + "display_name": "children_of_the_sky", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Children of the All-Maker, you do not know the author of the book and have limited knowledge of it, explores the Skaal people's unique worldview centered around the All-Maker and their sustainable, harmonious lifestyle. Themes of respect for nature, simplicity, and the cyclical nature of life and death are central, with an emphasis on preserving the Skaal's way of life amidst the challenges they face.", + "display_name": "children_of_the_all-maker", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chimarvamidium, you do not know the author of the book and have limited knowledge of it, explores themes of deception, technological and magical warfare, and the hubris of the Chimer in their conflict with the Dwemer. The story reveals the Dwemer's strategic mastery and alludes to their mysterious disappearance, highlighting the contrast between the Chimer's reliance on raw power and the Dwemer's cunning use of technology.", + "display_name": "chimarvamidium", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chronicles of Nchuleft, you do not know the author of the book and have limited knowledge of it, focuses on themes of political rivalry, betrayal, and the deadly consequences of unchecked ambition within the Dwemer Freehold Colony. The story highlights the tension and violence inherent in Dwemer politics, where power struggles lead to tragic and fatal outcomes.", + "display_name": "chronicles_of_nchuleft", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The City of Stone: A Sellsword's Guide to Markarth, you do not know the author of the book and have limited knowledge of it, explores themes of survival, opportunism, and the harsh realities of mercenary life in the politically charged environment of Markarth. It highlights the tensions within the city, offering practical advice on navigating its dangerous and divided society while focusing on earning gold without unnecessary conflict.", + "display_name": "the_city_of_stone", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Code of Malacath: A Sellsword's Guide to the Orc Strongholds, you do not know the author of the book and have limited knowledge of it, explores themes of tradition, self-reliance, and the warrior-focused culture of the Orcs, emphasizing the Code of Malacath, which values strength, honor, and the resolution of conflicts through combat. It offers insights into Orc life, focusing on their fierce independence and the respect they hold for strength, making them formidable allies or enemies.", + "display_name": "the_code_of_malacath", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Darkest Darkness, you do not know the author of the book and have limited knowledge of it, explores the nature and classification of Daedra in Oblivion, distinguishing between \"Good\" and \"Bad\" Daedra and examining the risks of summoning and binding them. The book highlights themes of power, control, and the dangerous relationship between mortals and the supernatural, particularly within the context of Morrowind's spiritual practices.", + "display_name": "darkest_darkness", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bravil: Daughter of the Niben, you do not know the author of the book and have limited knowledge of it, explores the rich history and folklore of Bravil, from its Ayleid origins to the legend of the Lucky Old Lady statue. The themes of luck, generosity, and the intertwining of past and present highlight the city's unique identity and cultural legacy.", + "display_name": "daughter_of_the_niben", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "De Rerum Dirennis, you do not know the author of the book and have limited knowledge of it, reflects on the Direnni clan's legacy, particularly focusing on Asliel Direnni's pivotal role in advancing alchemy. The themes of legacy, knowledge, and the evolution of magical practices are explored, showing how one individual's contributions can shape an entire field.", + "display_name": "de_rerum_dirennis", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Death Blow of Abernanit, you do not know the author of the book and have limited knowledge of it, is an epic poem about the fall of Abernanit, focusing on the battle between the Temple Ordinators and the Daedric-worshipper Dagoth Thras. Themes of divine favor, perseverance, pride, and the importance of wisdom in battle are central, highlighting the role of divine intervention and the limits of power.", + "display_name": "death_blow_of_abernanit", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Death of a Wanderer, you do not know the author of the book and have limited knowledge of it, is a tragic tale of an Argonian's ill-fated exploration of a Draugr crypt. Themes of forbidden knowledge, the inevitability of death, and the ironies of life and survival are central, as the Argonian learns the crypt's deadly secrets too late, reflecting on the cost of discovery.", + "display_name": "death_of_a_wanderer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Doors of Oblivion, you do not know the author of the book and have limited knowledge of it, follows the journey of Morian Zenas, a mage consumed by the pursuit of forbidden knowledge across various Daedric realms. Themes of obsession, the dangers of seeking knowledge beyond mortal understanding, and the descent into madness are central, emphasizing the cost of uncovering hidden truths in the world of Oblivion.", + "display_name": "the_doors_of_oblivion", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dragon Break Reexamined, you do not know the author of the book and have limited knowledge of it, challenges the myth of the \"Dragon Break\" during Tiber Septim's rise, arguing it was a historical error rooted in misinterpretations of ancient records. Themes of the fallibility of historical records, the influence of religious and cultural beliefs on history, and the dangers of perpetuating myths through scholarly inertia are central to the book.", + "display_name": "the_dragon_break_reexamined", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Dream of Sovngarde, you do not know the author of the book and have limited knowledge of it, explores themes of bravery, honor, and the Nordic belief that a Nord is judged by how they die, not how they live. The story highlights the importance of courage in battle, respect for ancestors, and the wisdom imparted by Ysgramor in Skardan’s dream, providing him with strength to face his impending battle.", + "display_name": "a_dream_of_sovngarde", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Collected Essays on Dwemer History and Culture, you do not know the author of the book and have limited knowledge of it, explores the historical misrepresentation of the Dwemer, particularly through Marobar Sul's lighthearted and inaccurate portrayal. The book critiques the simplification of the Dwemer's complex and often unsettling history, emphasizing the danger of popular fiction in shaping cultural perceptions and urging a more nuanced understanding of this enigmatic race.", + "display_name": "dwemer_history_and_culture", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwemer Inquiries: Their Architecture and Civilization, you do not know the author of the book and have limited knowledge of it, is a scholarly exploration of the Dwemer's architectural practices, intellectual pursuits, and the mysteries surrounding their disappearance. The work delves into the intricacies of Dwemer construction, their focus on logic and science over magic, and the enigmatic aspects of their civilization, challenging traditional beliefs and suggesting deeper, hidden aspects of their culture.", + "display_name": "dwemer_inquiries", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Effects of the Elder Scrolls, you do not know the author of the book and have limited knowledge of it, is a scholarly examination of the dangerous and transformative effects of the Elder Scrolls on readers, categorized by their mental preparedness and understanding. The book emphasizes the perilous pursuit of forbidden knowledge, highlighting the physical and mental toll it takes, as well as the discipline required to safely engage with these powerful texts.", + "display_name": "effects_of_the_elder_scrolls", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fall of the Snow Prince, you do not know the author of the book and have limited knowledge of it, recounts the Battle of the Moesring, focusing on the Snow Prince's death and its impact on the conflict. The book explores themes of honor, fate, and death, emphasizing the respect for bravery in both enemies and the harsh realities of war.", + "display_name": "fall_of_the_snow_prince", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Father of the Niben, you do not know the author of the book and have limited knowledge of it, is a translation of the fragmented journal of Topal the Pilot, chronicling his failed exploration of Tamriel and his encounters with ancient civilizations. The book explores themes of exploration, failure, and the uncertainty of discovery, highlighting the ambition and perseverance of explorers amidst the unpredictability of their journeys.", + "display_name": "father_of_the_niben", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Feyfolken, you do not know the author of the book and have limited knowledge of it, tells the story of Thaurbad Hulzik, a scribe whose discovery of a cursed quill leads him to artistic success but ultimately drives him to madness and death. The themes of creativity, the destructive nature of power, and the fine line between genius and madness are explored, illustrating the corrupting influence of magical tools.", + "display_name": "feyfolken", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fire and Darkness: The Brotherhoods of Death, you do not know the author of the book and have limited knowledge of it, examines the history of the Morag Tong and its split into the Dark Brotherhood, focusing on themes of secrecy, betrayal, and the shifting nature of power. The book explores the moral and philosophical divisions between the two guilds, emphasizing their influence on Morrowind's politics and Tamriel's darker history.", + "display_name": "fire_and_darkness", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Firmament, you do not know the author of the book and have limited knowledge of it, explores the constellations of Tamriel and their connection to birthsigns, emphasizing how the stars influence individuals' fates and characteristics. Themes of destiny, influence, and the symbolic role of the constellations in shaping lives are central to the work.", + "display_name": "the_firmament", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Firsthold Revolt, you do not know the author of the book and have limited knowledge of it, explores political intrigue and betrayal in Summerset Isle, focusing on the conflict between Lady Gialene and Queen Morgiah. Themes of power, loyalty, and the dangers of ambition and treachery within a royal court are central to the narrative.", + "display_name": "the_firsthold_revolt", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Five Songs of King Wulfharth, you do not know the author of the book and have limited knowledge of it, is a collection of epic tales chronicling the legendary Nordic King Wulfharth, exploring themes of destiny, betrayal, and vengeance. The songs reflect on the complex relationship between loyalty, divine manipulation, and the consequences of ambition.", + "display_name": "five_songs_of_king_wulfharth", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Flight from the Thalmor, you do not know the author of the book and have limited knowledge of it, is a first-person account of a Nord skald’s defiance against the Thalmor and his desperate flight for survival. The book explores themes of resistance, personal conviction, and the harsh consequences of defying oppressive rule.", + "display_name": "flight_from_the_thalmor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An Overview of Gods and Worship in Tamriel, you do not know the author of the book and have limited knowledge of it, explores the relationship between mortals and the gods, focusing on divine influence and the power of worship. The book delves into themes of divine intervention, the mystery of the gods' actions, and the evolving nature of divinity through mortal devotion.", + "display_name": "gods_and_worship", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "History of Raven Rock, you do not know the author of the book and have limited knowledge of it, chronicles the transformation of Raven Rock from an imperial colony to a thriving Dunmer settlement, highlighting themes of perseverance, leadership, and the struggle for autonomy. The book explores the challenges faced by the town, including external pressures, internal rivalries, and the resilience of its people.", + "display_name": "history_of_raven_rock", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Holds of Skyrim: A Field Officer's Guide, you do not know the author of the book and have limited knowledge of it, offers a detailed analysis of the nine holds of Skyrim, focusing on their strategic value and the challenges faced by the Empire in maintaining control. The themes of the book include the complexities of governance, military struggle, and the harsh realities of managing a province marked by rebellion and difficult terrain.", + "display_name": "the_holds_of_skyrim", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Horror of Castle Xyr, you do not know the author of the book and have limited knowledge of it, is a one-act play that explores a dark investigation uncovering necromantic experiments and betrayal within the eerie Castle Xyr. The themes of the play include the abuse of magical power, the moral decay of those who seek knowledge at any cost, and the psychological torment inflicted by unchecked ambition.", + "display_name": "horror_of_castle_xyr", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Incident in Necrom, you do not know the author of the book and have limited knowledge of it, is a suspenseful tale of a group of adventurers battling a vampire infestation in a haunted cemetery, where betrayal and dark magic play key roles. The themes focus on deception, the power of illusion magic, and the unexpected nature of allies, with a twist highlighting Massitha's growth and her ultimate role in the group’s survival.", + "display_name": "incident_at_necrom", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Invocation of Azura, you do not know the author of the book and have limited knowledge of it, is a personal reflection on the author's devotion to Azura, contrasting her compassionate and emotionally engaged nature with other more impersonal Daedric Princes. The book emphasizes Azura's nurturing qualities, the importance of authentic love and self-reflection in worship, and presents her as a superior and more caring figure in Tamriel's pantheon.", + "display_name": "invocation_of_azura", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Legend of Red Eagle, you do not know the author of the book and have limited knowledge of it, tells the story of Faolan, the legendary Red Eagle, who unites the Reach to fight against the First Empire, but ultimately makes a tragic pact with dark forces. The themes of destiny, sacrifice, and the cost of power are explored, highlighting the Reach's enduring resistance against oppression and the consequences of seeking power through dangerous alliances.", + "display_name": "the_legend_of_red_eagle", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Lusty Argonian Maid, you do not know the author of the book and have limited knowledge of it, is a comedic play filled with sexual innuendo and playful exchanges between an Argonian maid and her employer. The themes of desire, subservience, and humorous misunderstandings are explored through their flirtatious and suggestive interactions.", + "display_name": "the_lusty_argonian_maid", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mystery of Talara, you do not know the author of the book and have limited knowledge of it, is a tale of memory, identity, and betrayal centered on Princess Talara’s presumed death and the discovery of her true identity. The story explores the manipulation of power within royal families, the trauma of lost memories, and the corruption at the heart of the Camlorn monarchy.", + "display_name": "mystery_of_talara", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Commentaries on the Mysterium Xarxes, you do not know the author of the book and have limited knowledge of it, explores the philosophy and rituals of the Mythic Dawn cult, emphasizing liberation through destruction, chaos, and the rejection of established order. The series focuses on self-destruction, rebirth, and the pursuit of freedom and power through submission to Lord Dagon’s destructive forces.", + "display_name": "mythic_dawn_commentaries", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Myths of Sheogorath, you do not know the author of the book and have limited knowledge of it, is a collection of whimsical myths that explore the chaotic and unpredictable nature of the Daedric Prince of Madness, Sheogorath. The stories illustrate the consequences of resisting creativity and the fine line between genius and insanity, with Sheogorath’s influence driving mortals toward madness and destruction.", + "display_name": "myths_of_sheogorath", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nerevar at Red Mountain, you do not know the author of the book and have limited knowledge of it, is a scholarly retelling of the Battle of Red Mountain, focusing on the betrayal of Nerevar by the Tribunal and their corruption through the Heart of Lorkhan. The themes of the book include betrayal, greed, the corrupting influence of power, and the tragic transformation of the Chimer into the Dunmer, highlighting the consequences of forsaking honor and old ways.", + "display_name": "nerevar_at_red_mountain", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nerevar Moon-and-Star, you do not know the author of the book and have limited knowledge of it, is a monograph that explores the legendary life of Indoril Nerevar, focusing on his unification of the Dunmer and his tragic assassination by those who later claimed godhood. The themes of the book center around betrayal, the struggle for power, the preservation of tradition, and the hope for Nerevar's return to restore justice and honor to the Dunmer.", + "display_name": "nerevar_moon_and_star", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nords Arise!, you do not know the author of the book and have limited knowledge of it, is a passionate recruitment essay urging the Nords of Skyrim to rebel against the Empire, emphasizing their right to worship Talos and their historical struggles for freedom. The themes of the essay focus on resistance, national pride, religious freedom, and the call for unity against Imperial oppression and the Thalmor.", + "display_name": "nords_arise", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Olaf and the Dragon, you do not know the author of the book and have limited knowledge of it, recounts the legendary battle between Olaf One-Eye and the dragon Numinex, exploring themes of heroism, power, and the distortion of history. The book delves into how legends are shaped by those in power, questioning the authenticity of the story while reflecting on Nordic strength and unity.", + "display_name": "olaf_and_the_dragon", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "On Oblivion, you do not know the author of the book and have limited knowledge of it, explores the nature and motives of the Daedra, emphasizing their diverse spheres of influence and the complexities of interacting with these powerful entities. Themes of knowledge, power, and the consequences of engaging with the Daedra are central, highlighting their destructive potential and their profound impact on the mortal world.", + "display_name": "on_oblivion", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "How Orsinium Passed to the Orcs, you do not know the author of the book and have limited knowledge of it, tells the story of Gortwog gro-Nagorm's legal and physical battle to claim Orsinium from Lord Bowyn, highlighting themes of honor, pride, and the complexities of combat and cultural differences. The book examines the strategic use of legal disputes and physical prowess to assert control, demonstrating the power dynamics between Orcs and Bretons.", + "display_name": "orsinium_and_the_orcs", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Palla, you do not know the author of the book and have limited knowledge of it, is a tragic tale about a conjurer's dangerous obsession with resurrecting a deceased woman he believes to be the embodiment of beauty and strength. The story explores themes of obsession, love, and the destructive consequences of defying death through magic, ultimately illustrating the peril of seeking to revive the past.", + "display_name": "palla", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Experimentation in the Physicalities of the Werewolf, you do not know the author of the book and have limited knowledge of it, is a disturbing scientific examination of the physical transformations of werewolves, conducted through gruesome experiments on live subjects. The book explores themes of obsession with the unnatural, scientific curiosity, and the ethical implications of experimenting on living beings, emphasizing the brutal consequences of such experiments.", + "display_name": "physicalities_of_werewolves", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Poison Song, you do not know the author of the book and have limited knowledge of it, follows the tragic journey of Tay, a boy haunted by a mysterious \"Song\" and his inherited legacy from House Dagoth. The book explores themes of identity, destiny, and the destructive power of inherited legacies, focusing on the cyclical nature of violence and the inescapable consequences of one's past.", + "display_name": "the_poison_song", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Racial Phylogeny and Biology, Seventh Edition, you do not know the author of the book and have limited knowledge of it, explores the biological and reproductive characteristics of various races in Tamriel, including their interbreeding capabilities. The book delves into themes of racial diversity, heredity, and the ethical dilemmas faced in studying inter-species biology, while addressing the limitations and complexities of scientific understanding in the field.", + "display_name": "racial_phylogeny", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Real Barenziah, you do not know the author of the book and have limited knowledge of it, follows the life of Queen Barenziah, exploring her rise to power, political maneuvering, and personal struggles. Themes of ambition, betrayal, survival, and the complex interplay between power, manipulation, and personal sacrifice are central to the narrative.", + "display_name": "the_real_barenziah", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Red Year, you do not know the author of the book and have limited knowledge of it, chronicles the devastating eruption of Red Mountain and its aftermath through the personal stories of survivors. Themes of survival, community, resilience, and the emotional toll of catastrophe are central, emphasizing the strength and solidarity of the Dunmer people in the face of unimaginable loss.", + "display_name": "the_red_year", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Rise and Fall of the Blades, you do not know the author of the book and have limited knowledge of it, chronicles the history of the Blades, from their origins as dragon hunters to their role as protectors of the Empire and their eventual destruction by the Thalmor. The book explores themes of loyalty, secrecy, duty, sacrifice, and the consequences of maintaining power, highlighting the Blades' enduring legacy despite their downfall.", + "display_name": "the_rise_and_fall_of_the_blades", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rising Threat, you do not know the author of the book and have limited knowledge of it, is a multi-volume series that explores the rise of the Thalmor and their subversive tactics to consolidate power across Tamriel. The book focuses on themes of power, deception, and survival, portraying the Thalmor as manipulative and dangerous, while urging resistance against unchecked authority.", + "display_name": "rising_threat", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ruminations on the Elder Scrolls, you do not know the author of the book and have limited knowledge of it, is a philosophical exploration of the Elder Scrolls, examining their role in shaping knowledge, existence, and transformation. The book delves into themes of knowledge, self-transformation, and the paradoxical relationship between fear, growth, and the wisdom held within the Scrolls.", + "display_name": "ruminations_on_the_elder_scrolls", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shezarr and the Divines, you do not know the author of the book and have limited knowledge of it, explores the evolving role of the god Shezarr in Cyrodiilic religion, focusing on his transformation from a warrior against the Elves to a symbol of human endeavor. The book examines the intersection of religion and politics, the blending of cultural pantheons, and the balance between tradition and adaptation in the Empire's religious landscape.", + "display_name": "shezarr_and_the_divines", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Short History of Morrowind, you do not know the author of the book and have limited knowledge of it, provides a detailed account of Morrowind's history, focusing on the rise of the Dunmer, their integration into the Empire, and the political and environmental challenges they face. Themes of colonization, power struggles, and the impact of internal and external conflicts, particularly the Red Mountain blight and Dagoth Ur, are central to the narrative.", + "display_name": "short_history_of_morrowind", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Song of Pelinal, you do not know the author of the book and have limited knowledge of it, is a multi-volume collection that chronicles the life of Pelinal Whitestrake, a legendary warrior in Tamriel, highlighting his heroism, madness, and eventual downfall. Themes of divine intervention, sacrifice, unchecked rage, and the complexities of heroism are central, portraying Pelinal as both a savior and destroyer caught between his divine purpose and destructive tendencies.", + "display_name": "the_song_of_pelinal", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Third Era: An Abbreviated Timeline, you do not know the author of the book and have limited knowledge of it, provides a succinct overview of the major events in Tamriel during the Third Era, emphasizing political instability, the rise and fall of emperors, and constant warfare. The book highlights the cyclical nature of history, focusing on the challenges of maintaining an empire amid internal struggles and external threats, offering both a historical record and a cautionary tale for future generations.", + "display_name": "the_third_era_timeline", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Three Thieves, you do not know the author of the book and have limited knowledge of it, follows the story of three thieves in Morrowind as they carry out a heist, exploring themes of betrayal, trust, and the complexities of the criminal underworld. The narrative delves into the dynamics of the thieves' relationships, highlighting manipulation and treachery, and culminating in a chilling act of revenge.", + "display_name": "three_thieves", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Varieties of Daedra, you do not know the author of the book and have limited knowledge of it, provides an analysis of the different forms of Daedra, focusing on the Dremora and their complex relationships with their Daedric Lords. The book explores themes of hierarchy, loyalty, and the unpredictable nature of Daedric power dynamics, highlighting the challenges of understanding and dealing with these volatile entities.", + "display_name": "varieties_of_daedra", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Varieties of Faith in the Empire, you do not know the author of the book and have limited knowledge of it, explores the pantheons and deities worshiped across Tamriel's cultures, examining their significance and varying roles in different societies. The book delves into themes of divine hierarchy, cultural influence, and the fluidity of religious beliefs, highlighting the complexity and diversity of faith throughout the Empire.", + "display_name": "varieties_of_faith_in_the_empire", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Where Were You When the Dragon Broke?\"offers a collection of cultural perspectives on the Dragon Break, an enigmatic event characterized by fractured time and conflicting realities. The text explores themes of cosmic instability, divine influence, and the coexistence of multiple truths, reflecting the diverse interpretations of Tamriel's peoples.", + "display_name": "where_were_you_when_the_dragon_broke", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wind and Sand, you do not know the author of the book and have limited knowledge of it, explores the relationship between the Alik'r Desert's harsh environment and the subtle, efficient magic shaped by sand and air. The book emphasizes themes of resilience, adaptation, and the interconnectedness of nature and mystical forces.", + "display_name": "wind_and_sand", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Wild Elves, you do not know the author of the book and have limited knowledge of it, examines the enigmatic Ayleids, focusing on themes of cultural isolation, ancient traditions, and the fear of the unknown. The book highlights how their seclusion preserves their unique customs while keeping their history and ways shrouded in mystery and myth.", + "display_name": "the_wild_elves", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Wolf Queen, you do not know the author of the book and have limited knowledge of it, explores themes of ambition, power, and betrayal through the life of Queen Freydis, a ruthless and controversial Nord ruler. The book examines the personal and political costs of her unrelenting quest for control, portraying her as a tragic figure in Skyrim's history.", + "display_name": "the_wolf_queen", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Yellow Book of Riddles, you do not know the author of the book and have limited knowledge of it, centers on themes of wit, logic, and intellectual refinement through a collection of engaging riddles. The book highlights the social and mental value of riddles as both entertainment and a means of sharpening one's mind.", + "display_name": "yellow_book_of_riddles", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Yngol and the Sea-Ghosts, you do not know the author of the book and have limited knowledge of it, delves into themes of grief, vengeance, and kinship, recounting Ysgramor's tragic loss of his kinsman Yngol to vengeful sea-ghosts. The tale highlights the early struggles of the Nords in Tamriel and their enduring traditions of honor and remembrance.", + "display_name": "yngol_and_the_sea-ghosts", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know the dragon language. Only a Dragon would.", + "display_name": "dragon_language", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know the dragon language. Only a Dragon would.", + "display_name": "dragon_tongue", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The song tells the story of Ragnar the Red, a boastful hero who brags about his battles and wealth, only to be confronted and defeated by the shieldmaiden Matilda, who silences him with a swift and fatal blow. You don't know the lyrics by heart.", + "display_name": "ragnar_the_red", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dragonborn Comes song speaks of the arrival of the Dragonborn, a legendary hero with the power of the ancient Nord Voice, destined to vanquish evil and bring an end to Skyrim's foes, with their legend growing as they fulfill their destiny. You don't know the lyrics by heart.", + "display_name": "the_dragonborn_comes", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Age of Oppression song celebrates the defiance of the Nords against the Empire, with a call to reclaim their homeland through blood and steel, honoring their leader Ulfric and vowing to fight until their last breath to preserve Skyrim and its legacy. You don't know the lyrics by heart.", + "display_name": "the_age_of_oppression", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Age of Aggression the song expresses the perspective of those loyal to the Empire, vowing to defeat the Stormcloaks and restore control over Skyrim, celebrating their resistance against Ulfric and the rebellion, while asserting their determination to protect their land and its future. You don't know the lyrics by heart.", + "display_name": "the_age_of_aggression", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dragon Born song is an ancient song calling for the return of the Dragonborn to save the people of tamriel from the evil dragon Alduin.", + "display_name": "dragonborn_song", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Most cultures of Tamriel teach that existence itself does not escape the cycle of life and death, the world had a birth, and will one day have an ending. Though people with a socialized upbringing will likely be familiar with the concept of kalpa in one way or another, the implications of such a subject mean little when compared to the trials of daily life.", + "display_name": "kalpa", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Lunar Lorkhan is a book writen by the author of *The Dragon Break Re-Examined* Fal Droon. The book outlines Lorkhan's relation to the two moons, Masser and Secunda, and acknowledges the multitude of of myths surrounding Lorkhan and their heart.", + "display_name": "the_lunar_lorkhan", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skyshards are rare blue crystals that fall to Nirn from the heavens, they are often refered to as \"Shards of Aetherius\", and are said to posses powerful magic properties.", + "display_name": "skyshard", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dark Moon is the term for the phenomenon known to appear during solar eclipses, also known widely as \"vampire days\", when a \"third moon\" can be seen in the darkened sky. A Special type of Khajiit, known as a Mane, can only be born on these rare days, when the \"Den of Lorkhaj\" is in full view.", + "display_name": "dark_moon", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Mane is the spiritually-ordained ruler of Elsweyr, as well as a unique type of Khajiit, only born during solar eclipses known as the \"Dark Moon\". It's said that the rulers hair has so many braids that he can't walk without assistance. Khajiit will tell you that this is a misconception born of an old tradition of respect, and the Mane wears a more manageable headdress these days.", + "display_name": "mane", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "After birth, Khajiit look very similar to one another and are smaller than human newborns. Within weeks, their individual morphology becomes more clear, and their growth is faster than that of humans. The lifespan of Khajiit is around the same as men.\n\nA Khajiit's shape is determined upon birth, and they will remain in that form the rest of their life. It should not be compared to shape-shifting, as Lycanthropy is. It is possible for Khajiit to become werewolves, but lycanthropy is considered heretical to the Lunar Lattice.", + "display_name": "furstock", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Mask of Alkosh is an ancient and priceless relic of the Khajiit people, it was used by a hero of the Dragonguard to defeat the dragon Laatvulon, whom the famed legend Ja'darri fought and died to imprison beneath the Doomkeep in the First Era. It is said to exist outside of linier time, and thus appears and disappears seemingly randomly throughout history.", + "display_name": "mask_of_alkosh", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Pride of Alkosh was a cult of guardians that protected Elsweyr from threats in the first and second eras, said to be comprised soley of Forgotten Manes, those Manes who did not become the spiritual leader of the Khajiit people. They were said to have trained for the \"Doom to Come\", a time when dragons would return to threaten the world. The two most common types of Khajiit ourside of Elsweyr are Cathay caravans that travel Tamriel, and Suthay-raht, who congregate in Morrowind.", + "display_name": "pride_of_alkosh", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Temples of Two Moons Dance are places of philosophical study and martial training located throughout Elsweyr. Khajiit often start training as children in the deadly matrial art called \"Two-Moons Dance\" (sometimes \"The Dance of Two Moons\"), and continue practicing throughout their life, some more rigorously than others.", + "display_name": "two_moons_dance", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "ta'agra is a language primarily spoken by the cat-folk of Elsweyr, the Khajiit. It sounds vary hard to learn, but luckily, the vast majority of Khajiit also speak the common tongue of Tamrielic. Khajiit have the only Tamrielic culture to speak with a third-person vernacular, using their name in place of the word \"me\", and \"this one\" instead of \"I\".", + "display_name": "ta'agra", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Khajiit almost always refuse questions if one asks about the darkness their soul grapples with, but there are whispers that some of them turn into dark beasts, as terrible to behold and encounter as a daedra.", + "display_name": "dro-m'athra", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "In Tamriel, birthsigns( also spelled Birth Signs, or alternatively called Star Signs) correspond to the thirteen constellations under which a person is born. Each constellation appears during a different month, with The Serpent being the only Star Sign to appear randomly. Each birthsign blesses those born under it with physical and mental traits unique to that sign. The nature of these inborn traits usually correspond to the three acrchotypical charges: The Warrior, The Mage and The Theif.\n\n1.Morning Star = The Ritual(mage)\n2.Sun's Dawn = The Lover(thief)\n3.First Seed = The Lord(warriror)\n4.Rain's Hand = The Mage(mage)\n5.Second Seed = The Shadow(thief)\n6.Mid Year = The Steed(warrior)\n7.Sun's Height = The Apprentice(mage)\n8.Last Seed = The Warrior(warrior)\n9.Hearthfire = The Lady(warrior)\n10.Frost Fall = The Tower(thief)\n11.Sun's Dusk = The Atronach(mage)\n12.Evening Star = The Thief(thief)\n13. The Serpent appears randomly.(no charge)", + "display_name": "birthsigns", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Atronach is a constellation of stars visible during the eleventh month, Sun's Dusk, and can occasionally be seen during the day as well as at night. Those born during the season when The Atronach in visible bare it's Birthsign( also spell Birth Sign, or alternatively called Star Sign). Those with The Atronach Birthsign often possess potent arcane potential, at the cost of accumulating Magicka more slowly, or not at all.", + "display_name": "the_atronach", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ritual (known as the Laboratory to the Dwemer) is a constellation of seven stars which is in the night sky during Morning Star. It is one of the Mage's charges. Those born under the sign of the Ritual are thought to have various abilities determined by the phases and positions of the moons at the time of birth.", + "display_name": "the_ritual", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Steed is a constellation of eight stars which is in the night sky during Midyear. It is one of the Warrior's charges. Those born under the sign of the Steed are thought to be impatient and always hurrying from one place to another It is typically depicted as a horse. According to some the Steed is prominent in the southern sky during the summer solstice.\n\nThe Celestial Steed represents a Warrior's swiftness, his agitation, the moment he forsakes madness to ride against his enemies.", + "display_name": "the_steed", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Apprentice is a constellation of eleven stars which is in the night sky during Sun's Height. It is one of the Mage's charges. Those born under the sign of the Apprentice are thought to have an affinity for magic, but also a vulnerability to magic. The personality associated with The Apprentice is generally one of support and good will, one who follows, learns quickly, and serves \"at the forge of destiny\".", + "display_name": "the_apprentice", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Lady is a constellation of four stars which is in the night sky during Hearthfire. It is one of the Warrior's charges. Those born under the sign of the Lady are thought to be kind and tolerant.\r\n\r\nThe Celestial Lady represents Warrior's mercy and agitated him to forsake madness and remember peace.", + "display_name": "the_lady", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Lover is a constellation of twelve stars which is in the night sky during Sun's Dawn. It is one of the Thief's charges. Those born under the sign of the Lover are thought to be graceful and passionate.", + "display_name": "the_lover", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Lord is a constellation of nineteen stars which is visible in the night sky during First Seed. It is one of the Warrior's charges. Those born under the sign of the Lord are thought to be stronger and healthier, although they are sometimes referred to as Trollkin(Troll-kin) due to their innate weakness to fire.", + "display_name": "the_lord", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Mage (also known as the Wizard, the Sage, the Mechanist to the Dwemer, and the Witch in the Stars or simply the Witch to the Reachmen) is a constellation of twenty-seven stars and the planet Julianos, which is in the night sky during the month of Rain's Hand. Along with the Warrior and the Thief, it is a Guardian constellation, and its charges are the Apprentice, the Atronach, and the Ritual.They are also thought to be arrogant and absent-minded.", + "display_name": "the_mage", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Thief (known as the Hunter to the Reachmen) is a constellation of eighteen or seventeen stars and the planet Arkay which is in the night sky during Evening Star. It is a Guardian constellation, and its charges are the Lover, the Shadow, and the Tower. Those born under the sign of the Thief are thought to take risks and evade harm. Their luck is thought to run out eventually, cutting their lives short.", + "display_name": "the_thief", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Warrior (known as the Headsman to the Reachmen) is a constellation of thirty or twenty-eight stars and the planet Akatosh which is in the night sky during Last Seed. It is one of the Guardian constellations, and its charges are the Lady, the Steed, and the Lord. Those born under the sign of the Warrior are thought to be short-tempered and skilled with weapons.", + "display_name": "the_warrior", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Tower is a constellation of twelve or eleven stars which is in the night sky during Frostfall. It is one of the Thief's charges. Those born under the sign of the Tower are thought to have a knack for finding gold and opening locks.", + "display_name": "the_tower", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Shadow is a constellation of five stars which is in the night sky during Second Seed. It is one of the Thief's charges. Those born under the sign of the Shadow are thought to have the ability to hide in shadows.", + "display_name": "the_shadow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Serpent (known as the Snake in the Stars to the Reachmen, or simply the Snake to both Reachmen and Redguards) is a constellation of four unstars which is not relegated to being in the night sky during a particular time of the year. The Serpent's motions are considered to be unpredictable. Those born under the sign of the Serpent are thought to have no characteristics in common except being the most blessed and the most cursed.", + "display_name": "the_serpent", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Black Books are volatile magic artifacts, otherworldly in nature intended to lure mortals into the service of Hermaeus Mora.", + "display_name": "black_books", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The City of Inkseeds rose from the desert, shining and decadent. Somehow, it still stood. I crossed through the gate, and the beast knew exactly where to take me: the way worn by beggars and poets. The only place a man of my appetites can find satisfaction. I'm not proud, but then, nobody ever is.\n\n\"\n-- Legible text within The Hidden Twilight\n\nHermaeus Mora's Black Books: The Hidden Twilight, The Winds of Change and Untold Legends, were discovered by a Mages Guild agent in 2E 582. Reports vary regarding their exact locations, with some suggesting they were found in Ondil, a ruin in Auridon, others in Inner Sea Armature in Stonefalls, and yet others in Silumm in Glenumbra. According to the Ciphers of the Eye, this Black Book was believed to be lost in a ruin near Auridon at that time. It was recovered by Master Neloth at some point in the Fourth Era.", + "display_name": "the_hidden_twilight", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pridehome was a monastery of Alkosh(Akatosh) in Tenmar Forest in Elsweyr during the 2nd Era, and again in the 4th, destroyed first by a disciple turned evil, the second time by an army of Thalmor Justiciars. \n\nPridehome served as a home for the adepts who follow the teachings of the God of Time. A secluded place. A place where they prepared for the Doom to Come, a time when the Dragons return and bring unbalance to the world.\n\nChampion Ja'darri heard the call of Alkosh and crafted Pridehome, making it real for the rest of us. Yes, she fought the Black Beast. Yes, she died even as she succeeded. Yet she succeeded only for a time, in your mind. But, yes, she has always existed and succeeded. She will always exist.", + "display_name": "pridehome:_a_place_outside_of_time?", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Monster children of Vivec and Molag Bal are a race of supermonsters said to have been born from the union of the two deities, known as the \"Pomegranate Banquet\". They were said to have originally numbered in the thousands. They are mostly written of in The 36 Lessons of Vivec, though there is other evidence for at least some of them actually existing. These creatures are present in many pieces of Dunmeri folklore.", + "display_name": "monster_children", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dragonguard, also known as the Akaviri Dragonguard, was an organization founded by Reman Cyrodiil from the Tsaesci warriors who had surrendered to him at Pale Pass after hearing his voice. While they assisted Reman in the creation of the Second Empire and became his loyal bodyguards, the newly created Dragonguard would also seek out dragons to kill, sometimes doing it in the company of the Reman emperors. They were officially disbanded after the assassination of Reman III, but splinter groups carried on the traditions of the order, eventually becoming the Blades, who were the predecessors to the Penitus Oculatus.", + "display_name": "dragonguard", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Known for their love of sweets, the Khajiit enjoy a wide array of specialty dishes and desserts. Many of the meals eaten by nomadic clans are cooked over a campfire. They use moon sugar in their cooking, a sweet, white powdery substance, that is outlawed in many other provinces due to abuse of it's psychotropic effects. As a result, much of their cuisine is very sweet, and sometimes intolerably or lethally unpalatable to those with low, or no tolerance.", + "display_name": "khajiit_cuisine", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pridehome was a monastery found deep in the jungle reaches of the Tenmar Forest, in the province of Elsweyr. It was a mythical place of meditation for those that worship the Dragon-King of Cats, Alkosh and prepared for the end times, when dragons return after years of extinction.\r\nIn the mid-to-late Second Era, the temple was razed by the betrayer Ra'khajin, a Forgotten Mane that founded the Order of the New Moon to overcome the goddess Azurah's weaving of his fate.", + "display_name": "pridehome", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The departed spirits of the House Dunmer, enshrined in their ancestral tombs, persist after death. The knowledge and power of departed ancestors benefits the bloodlines of their descendants. The bond between the living family members and immortal ancestors is partly blood, partly ritual, partly volitional.", + "display_name": "dunmer_afterlife", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The marvels of the Dwemer fade from legend into myth. It's said that they could control their machines with no more than words, and some structures could even speak into the mind, and issue orders of their own.", + "display_name": "tonal_architecture", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ehlnofey are ancient spirits from the Dawn Era, closely associated with the Aedra and often described as the ancestors of the mortal races. Elven belief, especially among the Altmer and Bosmer, holds that some Ehlnofey stayed behind in Nirn when other divine beings departed, continuing to shape and stabilize the world. Those who fully gave themselves to this task became the Earthbones—the fixed rules of nature and the “bones of the earth”—while those who did not became the distant forebears of men and mer, whose power and stature diminished over many generations. Because of this, elves sometimes speak of having the “blood of Ehlnofey” and treat these spirits as their mythic ancestors, while human faiths more often see them as creators rather than literal forebears.", + "display_name": "ehlnofey", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Book of Dawn and Dusk is not really a book so much as a collection of sayings and aphorisms attributed to Morrowind's ancient Tribunal and to their saints and servants. These sayings are cliches most everyday Dunmer know and say, although now most worship the Reclaimations of the New Temple.", + "display_name": "book_of_dawn_and_dusk", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Interregnum was the long, chaotic age between the fall of the Reman emperors and the rise of Tiber Septim. With no true emperor on the Ruby Throne, Cyrodiil broke into quarrelling city-states, and the rest of Tamriel often fared no better. Most people remember it as a time of warlords, shifting borders, and Daedric troubles—one of the darkest periods before the Empire was restored.", + "display_name": "interregnum", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shadow Magic is an old and dangerous art said to deal with the power of shadows themselves. Stories claim that shadows come from other possible worlds, and skilled mages can use them to move unseen, drain strength, or create eerie weapons and armor. Most common folk know only that it is risky, rare, and often linked with Nightblades or strange relics like Shadowkeys. Few trust those who practice it.", + "display_name": "shadow_magic", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Sixth House was an ancient Dunmer Great House thought long dead, but it returned in the late Third Era as a secret cult led by Dagoth Ur inside Red Mountain. Its followers were marked by strange dreams, ash statues, and the spread of the Blight disease. The cult was destroyed when the Nerevarine defeated Dagoth Ur and stopped the sickness from spreading across Morrowind.", + "display_name": "sixth_house", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "According to a Khajiit fable, sabre cats were originally Khajiiti warriors in the Pride of Alkosh, who were called to Skyrim by Alkosh(Akatosh), but earned the ire of Lorkhaj, who gave the Dragonborn Wulfharth's Voice a power to change the moon phases, a power that would warp the warrior’s shape into Senche and ebb their intellect away, devolving them into what would become today's Northern wildcats and Sabre Cats. Records of the life of Ysgramor contradict this tale, placing the existence of sabre cats well before the events of the Red Year and the Battle of Red Mountain.", + "display_name": "the_tale_of_dro’zira", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shadowmarks are small carvings or scratches sometimes found on doorframes, walls, or nearby stonework in cities and towns across Skyrim. To the ordinary citizen they appear to be little more than meaningless scratches left by vandals, idle laborers, or passing travelers with a knife and too much time. Some believe they are the work of beggars marking places where alms were given, while others assume they are merely childish graffiti. In most cases the marks are ignored entirely, regarded as nothing more than odd scarring on wood or stone that has accumulated over time around busy doorways.", + "display_name": "shadowmarks", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Rage of Dragons is the Khajiiti name given to a catastrophic period in Elsweyr’s history when dragons descended upon the land in great numbers, bringing widespread destruction and terror. To most citizens of Tamriel, the phrase is understood simply as a time when dragons—long thought to be creatures of legend—returned to ravage the southern provinces. Among common folk, it is often spoken of in the same manner as a natural disaster or invasion: a sudden and overwhelming calamity that left cities burned, caravans destroyed, and entire regions in fear of the skies.", + "display_name": "a_rage_of _dragons", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dragon War is a historical account attributed to the Nord scholar Torhal Bjorik, describing the ancient conflict between dragons and the people of Skyrim. The book is commonly found in Skyrim and is regarded as a straightforward telling of a foundational moment in Nordic history.", + "display_name": "dragon_war_by_torhal_bjorik", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "There Be Dragons is a scholarly work attributed to Torhal Bjorik that concerns itself with the nature of dragons and their place in Tamrielic history. For many readers, it serves as an introduction to what dragons are believed to be.", + "display_name": "there_be_dragons", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Legacy of the Dragonguard is a historical account describing the origins and legacy of the Dragonguard, an ancient order of Akaviri warriors who served the Cyrodilic Empire. The book is often regarded as a straightforward history.", + "display_name": "legacy_of_the_dragonguard", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragon Language: Myth No More is a scholarly work concerning the language of dragons and its supposed rediscovery. It is generally regarded as an account claiming that the ancient tongue of the dragons can be studied and understood.", + "display_name": "dragon_language_myth_no_more", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Seven Fights of the Aldudagga is a collection of ancient Nordic and Breton skaldic tales concerning dragons, heroes, and strange mythic events. It is generally regarded as a set of old songs or stories whose meaning is not always clear.", + "display_name": "the_seven_fights_of_the_aldudagga", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Pride of Alkosh is a devotional text attributed to Clan Mother Hizuni, concerning a group of Khajiiti warriors who serve the Dragon King of Time. It is often understood as a religious account describing their purpose and duty.", + "display_name": "the_pride_of_alkosh", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragons of Southern Elsweyr is a field account describing dragons observed in the southern regions of Elsweyr. It is generally regarded as a personal record of encounters with these creatures.", + "display_name": "dragons_of_southern_elsweyr", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Varieties of Dragons: An Initial Exploration is a scholarly attempt to classify different kinds of dragons. It is generally understood as an observational study based on firsthand encounters.", + "display_name": "varieties_of_dragons_an_initial_exploration", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Wandering Spirits is a Khajiiti mythic text describing the origins of various spirits and divine beings. It is generally regarded as a traditional account of the world as understood by the Khajiit.", + "display_name": "the_wandering_spirits", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + } + ], + "entry_count": 521, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Groups & Books", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/Oghma_-_Items.sknpack b/oghma-sknpack/Oghma_-_Items.sknpack new file mode 100644 index 0000000..9a39a34 --- /dev/null +++ b/oghma-sknpack/Oghma_-_Items.sknpack @@ -0,0 +1,6460 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Tamrielic lore from CHIM's Oghma Infinium — items. Merges educated and common-knowledge entries graded by importance.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "Corundum is a valuable metal used primarily for creating stronger alloys in the crafting of weapons and armor. When mixed with iron, it produces steel, a widely utilized material known for its durability. The most common alloy consists of equal parts of iron and corundum, while smaller amounts can enhance the strength of lower-quality alloys, such as those used in banded iron armor. Additionally, by incorporating extra corundum into steel, blacksmiths can forge advanced armors, including scaled and steel plate varieties.", + "display_name": "corrundum", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragon items are high-quality armor and weapons made from dragon parts, including light Dragonscale Armor and heavy Dragonplate Armor. These can be crafted with the Dragon Armor perk, which requires a master Blacksmith .", + "display_name": "dragonbone", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim is a rare, enchanted ice found only on the island of Solstheim. It has a rich history, initially used in ancient Nordic burial rituals to encase the deceased as a form of protection, and later as a crafting material for weapons, armor, clothing, and jewelry. Stalhrim armor can be made in light or heavy variants and is known for its impressive protection. It also enhances frost enchantments, making them more powerful.\n\nDescribed as a rigid, blue-white crystalline metal, stalhrim is as hard as iron and nearly indestructible by conventional means. The only way to mine it is with an ancient Nordic pickaxe, crafted with superior skill. In addition to its use in armor and crafting, raw stalhrim can be used in alchemy to induce paralysis and inflict frost damage. Working with stalhrim is similar to ebony smithing and requires the expertise of a skilled blacksmith.", + "display_name": "stalhrim", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony is a rare and valuable volcanic glass found primarily in Vvardenfell, particularly in the lava flows from Red Mountain. It is also located in smaller quantities in regions such as Solstheim, Skyrim, Cyrodiil, and High Rock. Known for its durability and strength, ebony is often referred to as \"Godsblood,\" believed to be the crystallized essence of a deity, particularly Lorkhan. The material is highly sought after for crafting weapons and armor, notably forming a significant part of both Daedric and Dunmer designs.", + "display_name": "ebony", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Malachite is a rare volcanic crystal known for its distinctive milky translucent green color and its ability to absorb magicka under certain conditions. It is primarily utilized in crafting lightweight yet strong armor and weapons, making it a favored material among skilled artisans. Though less durable than ebony, malachite boasts a higher melting point and is significantly stronger than common glass, which it is often mistakenly associated with. The most abundant sources of malachite are found on the volcanic island of Vvardenfell in Morrowind, but ore veins are also distributed across Tamriel.", + "display_name": "malachite", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Moonstone is a rare ivory-colored metal found in veins throughout Tamriel, prized for its unique properties and applications in crafting. Primarily, it is used in the creation of elven armor, often combined with quicksilver, a practice that was historically guarded as a secret by the Altmer of Summerset. The crafting process is complex due to moonstone's higher melting point compared to quicksilver, necessitating careful handling to ensure the materials fuse properly.", + "display_name": "moonstone", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orichalcum, also known as orichalc, is a gray-green metal renowned for its use in crafting weapons and armor, particularly by the Orcs, who are celebrated for their orichalcum equipment. The metal is typically melded with iron at low temperatures to maintain its strength and prevent brittleness. Orcish armor, which is often crafted with superior skill, is characterized as medium to heavy in weight, while orichalcum weapons are less common and can vary in quality.", + "display_name": "orichalcum", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Three rounded stones are found in a staggered row in front of a portcullis gate. The stones glow red and making a chiming noise when you stand close to them. When all three stones are active, the portcullis opens for a few seconds.\nSolution: You must use the Whirlwind Sprint shout to move quickly enough to pass under the portcullis before it closes.", + "display_name": "ustengrav_puzzle", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You will see four small blue orbs set in paddle-like extensions on a metal pole. The orbs will spin around the pole when activated.\nSolution: Activating the orbs on the paddles will activate the resonator. When several kinetic resonators are combined into a tonal lock, the resonators must be activated in the correct order to solve the puzzle and open the corresponding gate.", + "display_name": "arkngthamz_puzzle", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You will see four small blue orbs set in paddle-like extensions on a metal pole. The orbs will spin around the pole when activated.\nSolution: Activating the orbs on the paddles will activate the resonator. When several kinetic resonators are combined into a tonal lock, the resonators must be activated in the correct order to solve the puzzle and open the corresponding gate.", + "display_name": "fahlbtharz_puzzle", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You will see a few braziers on what appears to be a large, circular, maze-like track carved into the ground. When the puzzle is started, a line of purple flames will fill the track up to the first brazier.\nSolution: You must push each brazier so that the purple flame is carried along the track and forms a circuit.", + "display_name": "dimhollow_cavern_puzzle", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Combination: Snake—Wolf—Moth", + "display_name": "coal_dragon_claw", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Combination: Fox—Moth—Dragon", + "display_name": "diamond_claw", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Combination: Fox—Moth—Dragon", + "display_name": "ebony_claw", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Combination: Bear—Whale—Snake", + "display_name": "emerald_dragon_claw", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Combination: Fox—Owl—Snake", + "display_name": "glass_claw", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Combination: Bear—Moth—Owl", + "display_name": "golden_claw", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Combination: Dragon—Hawk—Wolf", + "display_name": "iron_claw", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Combination: Dragon—Hawk—Wolf", + "display_name": "ivory_claw", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Combination: Hawk—Hawk—Dragon", + "display_name": "ivory_dragon_claw", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Combination: Wolf—Hawk—Wolf", + "display_name": "ruby_dragon_claw", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Combination: Moth—Owl—Wolf", + "display_name": "sapphire_dragon_claw", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Aloe Vera Leaves are a plant ingredient used in alchemy for their healing and restorative properties. Alchemy effects: Restore Health, Restore Stamina, Damage Magicka, and Invisibility.", + "display_name": "aloe_vera_leaves", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancestor Moth Wing is a delicate brownish ingredient that is prized for its magical properties, especially in enhancing conjuration and enchanting abilities. Alchemy effects: Damage Stamina, Fortify Conjuration, Damage Magicka Regen, and Fortify Enchanting.", + "display_name": "ancestor_moth_wing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ash Creep Cluster is a unique red ingredient from Solstheim, distinguished by its yellow-tan color and distinct alchemical properties compared to the mainland creep cluster. Alchemy effects: Damage Stamina, Invisibility, Resist Fire, and Fortify Destruction.", + "display_name": "ash_creep_cluster", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ash Hopper Jelly is a red substance dropped by ash hoppers, known for its healing and protective properties. Alchemy effects: Restore Health, Fortify Light Armor, Resist Shock, and Weakness to Frost.", + "display_name": "ash_hopper_jelly", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ashen Grass Pod is a unique ingredient from Solstheim, distinguished by its grey color and different alchemical properties compared to the grass pods of mainland Skyrim. Alchemy effects: Resist Fire, Weakness to Shock, Fortify Lockpicking, and Fortify Sneak.", + "display_name": "ashen_grass_pod", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bear Claws are a potent alchemical ingredient known for their ability to enhance stamina, health, and combat abilities. Alchemy effects: Restore Stamina, Fortify Health, Fortify One-handed, and Damage Magicka Regen.", + "display_name": "bear_claws", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bees are passive creatures that can be caught while flying or collected from beehives, along with other components like beehive husks and honeycombs. Alchemy effects: Restore Stamina, Ravage Stamina, Regenerate Stamina, and Weakness to Shock.", + "display_name": "bee", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Beehive Husk is a versatile ingredient known for its ability to enhance defense and magical abilities. Alchemy effects: Resist Poison, Fortify Light Armor, Fortify Sneak, and Fortify Destruction.", + "display_name": "beehive_husk", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bleeding Crowns are red-capped mushrooms commonly found on cave floors, known for their blood-like appearance and their usefulness in creating defensive potions. Alchemy effects: Weakness to Fire, Fortify Block, Weakness to Poison, and Resist Magic.", + "display_name": "bleeding_crown", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blisterwort is a type of red topped fungus often found in caves, valued for its alchemical versatility. Alchemy effects: Damage Stamina, Frenzy, Restore Health, and Fortify Smithing.", + "display_name": "blisterwort", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blue Butterfly Wings are delicate, vibrant wings that can be caught from blue butterflies fluttering around Skyrim. Alchemy effects: Damage Stamina, Fortify Conjuration, Damage Magicka Regen, and Fortify Enchanting.", + "display_name": "blue_butterfly_wing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blue Dartwings are dragonfly wings that can be caught while they dart around Skyrim's waters. Alchemy effects: Resist Shock, Fortify Pickpocket, Restore Health, and Fear.", + "display_name": "blue_dartwing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blue Mountain Flower is a vibrant blue-flowered plant commonly found in Skyrim's mountainous regions. Alchemy effects: Restore Health, Fortify Conjuration, Fortify Health, and Damage Magicka Regen.", + "display_name": "blue_mountain_flower", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Boar Tusks are ingredients dropped by bristlebacks and rieklings, valued for their robust alchemical properties. Alchemy effects: Fortify Stamina, Fortify Health, Fortify Block, and Frenzy.", + "display_name": "boar_tusk", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bone Meal is an ingredient dropped by most undead creatures, commonly used in various alchemical concoctions. Alchemy effects: Damage Stamina, Resist Fire, Fortify Conjuration, and Ravage Stamina.", + "display_name": "bone_meal", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Briar Hearts are powerful ingredients that look like a cluster of red and green spiked leavesas a heart for Forsworn Briarhearts, known for their potent magical properties. Alchemy effects: Restore Magicka, Fortify Block, Paralysis, and Fortify Magicka.", + "display_name": "briar_heart", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Burnt Spriggan Wood is an ingredient dropped by burnt spriggans, known for its fiery and defensive properties. Alchemy effects: Weakness to Fire, Fortify Alteration, Damage Magicka Regen, and Slow.", + "display_name": "burnt_spriggan_wood", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Butterfly Wings are delicate wings collected from orange monarch butterflies, valued for their restorative and magical properties. Alchemy effects: Restore Health, Fortify Barter, Lingering Damage Stamina, and Damage Magicka.", + "display_name": "butterfly_wing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Canis Root are spiky roots that is harvested from small, gnarled bushes found in regions like the Rift, Hjaalmarch, and Haafingar, thriving near rock formations, cliffs, and swampy areas. Alchemy effects: Damage Stamina, Fortify One-handed, Fortify Marksman, and Paralysis.", + "display_name": "canis_root", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Charred Skeever Hides can be collected from charred skeevers, often found after a battle or fire. Alchemy effects: Restore Stamina, Cure Disease, Resist Poison, and Restore Health.", + "display_name": "charred_skeever_hide", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chaurus Eggs are blue spotted eggs harvested from chaurus egg sacs found in large quantities within Falmer hives. Alchemy effects: Weakness to Poison, Fortify Stamina, Damage Magicka, and Invisibility.", + "display_name": "chaurus_eggs", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chaurus Hunter Antennae are an alchemy ingredient dropped by chaurus hunters and their fledglings. Alchemy effects: Damage Stamina, Fortify Conjuration, Damage Magicka Regen, and Fortify Enchanting.", + "display_name": "chaurus_hunter_antennae", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chicken's Eggs can be harvested from chickens' nests, commonly found at most farms. Alchemy effects: Resist Magic, Damage Magicka Regen, Waterbreathing, and Lingering Damage Stamina.", + "display_name": "chicken_egg", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Creep Cluster is a mass of orange-brown roots found growing over rocks in the sulfur-rich region of Eastmarch. Alchemy effects: Restore Magicka, Damage Stamina Regen, Fortify Carry Weight, and Weakness to Magic.", + "display_name": "creep_cluster", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Crimson Nirnroot is a rare red variant of nirnroot found exclusively in Blackreach, known for its powerful effects. Alchemy effects: Damage Health , Damage Stamina Invisibility, and Resist Magic.", + "display_name": "crimson_nirnroot", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedra Hearts are collected from slain Dremora and are not only used in alchemy but also in crafting Daedric armor and weapons at both standard and Atronach forges. Alchemy effects: Restore Health, Damage Stamina Regen, Damage Magicka, and Fear.", + "display_name": "daedra_heart", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Deathbell is a large purple flower found in swampy regions like Hjaalmarch, known for its potent poison effects and darker folklore surrounding its growth. Alchemy effects: Damage Health, Ravage Stamina, Slow, and Weakness to Poison.", + "display_name": "deathbell", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragon's Tongue is a striking yellow-flowered plant found in the volcanic tundra of Eastmarch and is sometimes cultivated as an ornamental plant. Alchemy effects: Resist Fire, Fortify Barter, Fortify Illusion, and Fortify Two-handed.", + "display_name": "dragons_tongue", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Oil is an ingredient dropped by Dwarven automatons, sharing similar effects to taproot, allowing for a potent combination of magical properties. Alchemy effects: Weakness to Magic, Fortify Illusion, Regenerate Magicka, and Restore Magicka.", + "display_name": "dwarven_oil", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ectoplasm is an uncommon greyish goo ingredient obtained from ghosts, known for its magical and destructive alchemical properties. Alchemy effects: Restore Magicka, Fortify Destruction, Fortify Magicka, and Damage Health.", + "display_name": "ectoplasm", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elves Ear is a small green herb harvested from branches of dried Elves Ear, often found hanging to dry alongside garlic and frost mirriam in homes and buildings. Alchemy effects: Restore Magicka, Fortify Marksman, Weakness to Frost, and Resist Fire.", + "display_name": "elves_ear", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Emperor Parasol Moss is an ingredient harvested from the moss that hangs from Emperor Parasol mushrooms, typically found near Tel Mithryn. Alchemy effects: Damage Health (1.5× magnitude), Fortify Magicka, Regenerate Health, and Fortify Two-handed.", + "display_name": "emperor_parasol_moss", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Eyes of Sabre Cats are dropped by sabre cats, often used in alchemy for their potent restorative and damaging properties. Alchemy effects: Restore Stamina, Ravage Health, Damage Magicka, and Restore Health.", + "display_name": "eye_of_sabre_cat", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Falmer Ears are pointy thin ears dropped by dead Falmer, and unlike Elves Ear, they are actual ears rather than a plant. Alchemy effects: Damage Health, Frenzy, Resist Poison, and Fortify Lockpicking.", + "display_name": "falmer_ear", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Felsaad Tern Feathers are white feathers an ingredient dropped by Felsaad terns, known for their restorative and defensive alchemical properties. Alchemy effects: Restore Health, Fortify Light Armor, Cure Disease, and Resist Magic.", + "display_name": "felsaad_tern_feathers", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fire Salts are dropped by flame atronachs, valued for their fiery nature and their ability to enhance magical properties. Alchemy effects: Weakness to Frost, Resist Fire, Restore Magicka, and Regenerate Magicka.", + "display_name": "fire_salts", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fly Amanita is a red capped mushroom commonly found in caves, known for its fiery and strengthening properties. Alchemy effects: Resist Fire, Fortify Two-handed, Frenzy, and Regenerate Stamina.", + "display_name": "fly_amanita", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frost Mirriam is an yellow herb commonly found hanging to dry in homes, often alongside garlic and Elves Ear. Alchemy effects: Resist Frost, Fortify Sneak, Ravage Magicka, and Damage Stamina Regen.", + "display_name": "frost_mirriam", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frost Salts are a blueish powder dropped by frost atronachs and are valued for their cooling and magical properties. Alchemy effects: Weakness to Fire, Resist Frost, Restore Magicka, and Fortify Conjuration.", + "display_name": "frost_salts", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Garlic is harvested from garlic braids that are commonly found hanging to dry inside homes and other buildings. Alchemy effects: Resist Poison, Fortify Stamina, Regenerate Magicka, and Regenerate Health.", + "display_name": "garlic", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Giant Lichen is harvested from a fungus found in the marshes of Hjaalmarch. Alchemy effects: Weakness to Shock, Ravage Health, Weakness to Poison, and Restore Magicka.", + "display_name": "giant_lichen", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Giant's Toes are dropped by giants and are known for their powerful alchemical effects. Alchemy effects: Damage Stamina, Fortify Health, Fortify Carry Weight, and Damage Stamina Regen.", + "display_name": "giant_toe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Gleamblossom are purple and light blue plants, that look like an upside down bell, is harvested from the flower of the same name, known for its potent magical effects. Alchemy effects: Resist Magic, Fear, Regenerate Health, and Paralysis.", + "display_name": "gleamblossom", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glow Dust is a glowing green dust found on dead wisps and wispmothers, along with wisp wrappings, and is valued for its magical properties. Alchemy effects: Damage Magicka, Damage Magicka Regen, Fortify Destruction, and Resist Shock.", + "display_name": "glow_dust", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glowing Mushrooms are a type of glowing green fungus found growing on cave walls, providing a natural source of light. Alchemy effects: Resist Shock, Fortify Destruction, Fortify Smithing, and Fortify Health.", + "display_name": "glowing_mushroom", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Grass Pods are harvested from Spiky Grass plants that grow along Skyrim's northern coasts and near the rivers around Morthal. Alchemy effects: Resist Poison, Ravage Magicka, Fortify Alteration, and Restore Magicka.", + "display_name": "grass_pod", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hagraven Claws are possibly dropped by dead hagravens, along with the more common hagraven feathers, and are known for their magical properties. Alchemy effects: Resist Magic, Lingering Damage Magicka, Fortify Enchanting, and Fortify Barter.", + "display_name": "hagraven_claw", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hagraven Feathers are dropped by dead hagravens, alongside the occasional hagraven claws. Alchemy effects: Damage Magicka, Fortify Conjuration, Frenzy, and Weakness to Shock.", + "display_name": "hagraven_feathers", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hanging Moss is harvested from plants that grow on rocky ledges, trees, or dungeon ceilings, commonly found in the Reach and throughout Skyrim's holds. Alchemy effects: Damage Magicka, Fortify Health, Damage Magicka Regen, and Fortify One-handed.", + "display_name": "hanging_moss", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hawk Beaks can be found on dead hawks, alongside hawk feathers, and are used for various alchemical effects. Alchemy effects: Restore Stamina, Resist Frost, Fortify Carry Weight, and Resist Shock.", + "display_name": "hawk_beak", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hawk Feathers can be found on dead hawks, along with hawk beaks, and are used for a range of beneficial alchemical effects. Alchemy effects: Cure Disease, Fortify Light Armor, Fortify One-handed, and Fortify Sneak.", + "display_name": "hawk_feathers", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hawk's Eggs can be harvested from hawks' nests, known for their diverse magical properties. Alchemy effects: Resist Magic, Damage Magicka Regen, Waterbreathing, and Lingering Damage Stamina.", + "display_name": "hawk_egg", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Honeycomb is harvested from beehives, along with bees and beehive husks, and is known for its versatile alchemical properties. Alchemy effects: Restore Stamina, Fortify Block, Fortify Light Armor, and Ravage Stamina.", + "display_name": "honeycomb", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Human Flesh can be found in locations where individuals have performed the Black Sacrament ritual to summon the Dark Brotherhood. Alchemy effects: Damage Health, Paralysis, Restore Magicka, and Fortify Sneak.", + "display_name": "human_flesh", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Human Hearts are used in alchemy or at the Atronach Forge and can be found where the Black Sacrament ritual has been performed to summon the Dark Brotherhood. Alchemy effects: Damage Health, Damage Magicka, Damage Magicka Regen, and Frenzy.", + "display_name": "human_heart", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ice Wraith Teeth are dropped by ice wraiths, known for their ability to enhance defense and manipulate elemental effects. Alchemy effects: Weakness to Frost, Fortify Heavy Armor, Invisibility, and Weakness to Fire.", + "display_name": "ice_wraith_teeth", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Imp Stool is a brown capped fungus found in caves, typically growing near the edges where the wall and floor meet. Alchemy effects: Damage Health, Lingering Damage Health, Paralysis, and Restore Health.", + "display_name": "imp_stool", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Jazbay Grapes are harvested from vines growing on rocky outcroppings in Eastmarch's volcanic tundra, and are used both in alchemy and for baking Jazbay Crostata. Alchemy effects: Weakness to Magic, Fortify Magicka, Regenerate Magicka, and Ravage Health.", + "display_name": "jazbay_grapes", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Juniper Berries are small greenish-white berries harvested from juniper trees, commonly found growing in the Reach. Alchemy effects: Weakness to Fire, Fortify Marksman, Regenerate Health, and Damage Stamina Regen.", + "display_name": "juniper_berries", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Large Antlers may be dropped by male deer and elk, while female elk drop small antlers. Alchemy effects: Restore Stamina, Fortify Stamina, Slow, and Damage Stamina Regen.", + "display_name": "large_antlers", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lavender is an herb that thrives in cold steppe climates, particularly in Whiterun Hold, and is found in several other holds as well. Alchemy effects: Resist Magic, Fortify Stamina, Ravage Magicka, and Fortify Conjuration.", + "display_name": "lavender", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Luna Moth Wings can be acquired by catching luna moths, which only come out at night but are easily spotted due to their glowing wings. Alchemy effects: Damage Magicka, Fortify Light Armor, Regenerate Health, and Invisibility.", + "display_name": "luna_moth_wing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Moon Sugar is the unrefined form of skooma, a grainy powder of small white crystals with a silver sheen, harvested from cane grasses along the coasts and estuaries of Elsweyr. Unlike its refined counterpart, skooma, Moon Sugar is not illegal and is sold in apothecaries, though it does have mild magical properties and is known as a potent narcotic. While it is a popular spice in Elsweyr, it can be addictive, with humans being particularly susceptible to its effects. Alchemy effects: Weakness to Fire, Resist Frost, Restore Magicka, and Regenerate Magicka.", + "display_name": "moon_sugar", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mora Tapinella is a fungus found growing on tree stumps and fallen trees in forested regions across Skyrim, although it is less common in the Rift, where the scaly pholiota dominates. Alchemy effects: Restore Magicka, Lingering Damage Health, Regenerate Stamina, and Fortify Illusion.", + "display_name": "mora_tapinella", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mudcrab Chitin is dropped by mudcrabs and is valued for its defensive and restorative properties. Alchemy effects: Restore Stamina, Cure Disease, Resist Poison, and Resist Fire.", + "display_name": "mudcrab_chitin", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Namira's Rot is a brown capped fungus found on cave floors, named after the Daedric Prince Namira. Alchemy effects: Damage Magicka, Fortify Lockpicking, Fear, and Regenerate Health.", + "display_name": "namira_rot", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Netch Jelly is a blueish substance dropped by netch on Solstheim, valued for its versatile and powerful alchemical properties. Alchemy effects: Paralysis, Fortify Carry Weight, Restore Stamina, and Fear.", + "display_name": "netch_jelly", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nightshade is a purple plant commonly found in graveyards, preferring light yet thriving in the shadow of death, making it rare in crypts and barrows. Known for its potent poisons, it is widely feared and used by those seeking to disable their enemies, often seen on the blades of unsavory characters in Skyrim. Alchemy effects: Damage Health, Damage Magicka Regen, Lingering Damage Stamina, and Fortify Destruction.", + "display_name": "nightshade", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nirnroot is a bright green plant typically found near water, known for its glowing appearance and the unique chiming sound it emits, making it easier to locate at night. Alchemy effects: Damage Health, Damage Stamina, Invisibility, and Resist Magic.", + "display_name": "nirnroot", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Barnacles are harvested from Nordic barnacle clusters found underwater. Alchemy effects: Damage Magicka, Waterbreathing, Regenerate Health, and Fortify Pickpocket.", + "display_name": "nordic_barnacle", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orange Dartwings are dragonflies caught in Skyrim, often found in the southern regions, with their bright orange color making them distinct from the blue dartwings. Alchemy effects: Restore Stamina, Ravage Magicka, Fortify Pickpocket, and Lingering Damage Health.", + "display_name": "orange_dartwing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pearls, including small pearls, are found in clams and pearl oysters, prized for their use in various alchemical mixtures. Alchemy effects: Restore Stamina, Fortify Block, Restore Magicka, and Resist Shock.", + "display_name": "pearl", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pine Thrush Eggs can be harvested from birds' nests found in forested regions, especially throughout The Rift. Alchemy effects: Restore Stamina, Fortify Lockpicking, Weakness to Poison, and Resist Shock.", + "display_name": "pine_thrush_egg", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Poison Bloom is picked from the poison bloom plants, it has a purpleish exterior, found exclusively in Darkfall Passage. Alchemy effects: Damage Health (1.5× magnitude), Slow, Fortify Carry Weight, and Fear.", + "display_name": "poison_bloom", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Powdered Mammoth Tusk is a rare and mysterious substance that appears randomly in Skyrim, with its origins unknown on how to make it. Alchemy effects: Restore Stamina, Fortify Sneak, Weakness to Fire, and Fear.", + "display_name": "powdered_mammoth_tusk", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Purple Mountain Flower is harvested from the purple-flowered variety of mountain flower, commonly found in Skyrim's mountainous regions. Alchemy effects: Restore Stamina, Fortify Sneak, Lingering Damage Magicka, and Resist Frost.", + "display_name": "purple_mountain_flower", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Red Mountain Flower is harvested from the red-flowered variety of mountain flower, commonly found throughout Skyrim. Alchemy effects: Restore Magicka, Ravage Magicka, Fortify Magicka, and Damage Health.", + "display_name": "red_mountain_flower", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rock Warbler Eggs are greenish eggs that can be harvested from birds' nests found in rocky regions, especially throughout the Reach. Alchemy effects: Restore Health, Fortify One-handed, Damage Stamina, and Weakness to Magic.", + "display_name": "rock_warbler_egg", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sabre Cat Teeth are dropped by sabre cats, who always drop either a tooth or an eye of sabre cat, along with a sabre cat pelt. Alchemy effects: Restore Stamina, Fortify Heavy Armor, Fortify Smithing, and Weakness to Poison.", + "display_name": "sabre_cat_tooth", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Salmon Roe is are orange egg clusters that are an ingredient harvested from jumping salmon in streams, often found in Skyrim's rivers. Alchemy effects: Restore Stamina, Waterbreathing, Fortify Magicka, and Regenerate Magicka.", + "display_name": "salmon_roe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Salt Piles are more commonly valued for cooking, as they are essential in many recipes, though they also have some alchemical uses. Alchemy effects: Weakness to Magic, Fortify Restoration, Slow, and Regenerate Magicka.", + "display_name": "salt_pile", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scaly Pholiota is a fungus found on tree stumps and fallen trees, particularly in the birch forests of the Rift. Alchemy effects: Weakness to Magic, Fortify Illusion, Regenerate Stamina, and Fortify Carry Weight.", + "display_name": "scaly_pholiota", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scathecraw is an ingredient harvested from the plant of the same name on Solstheim. Alchemy effects: Ravage Health, Ravage Stamina, Ravage Magicka, and Lingering Damage Health.", + "display_name": "scathecraw", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skeever Tails are dropped by dead skeevers. Alchemy effects: Damage Stamina Regen, Ravage Health, Damage Health, and Fortify Light Armor", + "display_name": "skeever_tail", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Slaughterfish Eggs can be acquired by harvesting a slaughterfish egg nest, found underwater or occasionally half-submerged in water. Alchemy effects: Resist Poison, Fortify Pickpocket, Lingering Damage Health, and Fortify Stamina.", + "display_name": "slaughterfish_egg", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Slaughterfish Scales are dropped by slaughterfish, commonly found in Skyrim's waters. Alchemy effects: Resist Frost, Lingering Damage Health, Fortify Heavy Armor, and Fortify Block.", + "display_name": "slaughterfish_scales", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Small Antlers are dropped by female elk, while male deer and elk drop large antlers. Alchemy effects: Weakness to Poison, Fortify Restoration, Lingering Damage Stamina, and Damage Health.", + "display_name": "small_antlers", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Small Pearl is an alchemy ingredient found in Pearl Oysters. Alchemy effects: Restore Stamina, Fortify One-handed, Fortify Restoration, and Resist Frost.", + "display_name": "small_pearl", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Snowberries are red berries harvested from the snowberry plant, commonly found near the snowline in Skyrim. Alchemy effects: Resist Fire, Fortify Enchanting, Resist Frost, and Resist Shock.", + "display_name": "snowberries", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Spawn Ash is an white powder ingredient dropped by ash spawn on Solstheim. Alchemy effects: Ravage Stamina, Resist Fire, Fortify Enchanting, and Ravage Magicka.", + "display_name": "spawn_ash", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Spider Eggs are light greenish eggs that can be acquired by harvesting the egg sacs of frostbite spiders. Alchemy effects: Damage Stamina, Damage Magicka Regen, Fortify Lockpicking, and Fortify Marksman.", + "display_name": "spider_egg", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Spriggan Sap is found randomly around Skyrim, and its origins of creation remain a mystery. Alchemy effects: Damage Magicka Regen, Fortify Enchanting, Fortify Smithing, and Fortify Alteration.", + "display_name": "spriggan_sap", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Swamp Fungal Pod are a white brownish fungus found in the marshes of Hjaalmarch. Alchemy effects: Resist Shock, Lingering Damage Magicka, Paralysis, and Restore Health.", + "display_name": "swamp_fungal_pod", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Taproots are biolumicesnt roots dropped by spriggans and are used in various alchemical mixtures. Alchemy effects: Weakness to Magic, Fortify Illusion, Regenerate Magicka, and Restore Magicka.", + "display_name": "taproot", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Thistle Branches are purple plants harvested from thistle plants found at lower elevations, particularly in the southern pine forests. Alchemy effects: Resist Frost, Ravage Stamina, Resist Poison, and Fortify Heavy Armor.", + "display_name": "thistle_branch", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Torchbug Thoraxes are bright yellow and can be acquired by catching torchbugs, which appear at night in most non-snowy areas. Alchemy effects: Restore Stamina, Lingering Damage Magicka, Weakness to Magic, and Fortify Stamina.", + "display_name": "torchbug_thorax", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Trama Root are thing roots that is an ingredient harvested from the plant of the same name found on Solstheim. Alchemy effects: Weakness to Shock, Fortify Carry Weight, Damage Magicka, and Slow.", + "display_name": "trama_root", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Troll Fat is dropped by trolls and is known for its defensive and harmful alchemical properties. Alchemy effects: Resist Poison, Fortify Two-handed, Frenzy, and Damage Health.", + "display_name": "troll_fat", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Tundra Cotton is a plant that mostly grows in the plains of Whiterun Hold, known for its resilience in the region's climate. It is a common ingredient in potions that fortify magicka and resist spells, often valued for its subtle yet effective properties. Alchemy effects: Resist Magic, Fortify Magicka, Fortify Block, and Fortify Barter.", + "display_name": "tundra_cotton", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampire Dust is a purpleish powder alchemical ingredient dropped by vampires, prized for its magical and restorative properties. Alchemy effects: Invisibility, Restore Magicka, Regenerate Health, and Cure Disease.", + "display_name": "vampire_dust", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Void Salts are blackish powder dropped by storm atronachs and are known for their potent magical properties. Alchemy effects: Weakness to Shock, Resist Magic, Damage Health, and Fortify Magicka.", + "display_name": "void_salts", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wheat is commonly grown in farms around Skyrim and is used for various alchemical and culinary purposes. Alchemy effects: Restore Health, Fortify Health, Damage Stamina Regen, and Lingering Damage Magicka.", + "display_name": "wheat", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "White Cap is are a white capped mushroom commonly found in caves, known for its use in enhancing defense and magical properties. Alchemy effects: Weakness to Frost, Fortify Heavy Armor, Restore Magicka, and Ravage Magicka.", + "display_name": "white_cap", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wisp Wrappings are blueish wraps dropped by wispmothers, along with glow dust, and are valued for their magical properties. Alchemy effects: Restore Stamina, Fortify Destruction, Fortify Carry Weight, and Resist Magic.", + "display_name": "wisp_wrappings", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Yellow Mountain Flower is harvested from the rare yellow-flowered variety of mountain flower, found in various regions of Skyrim. Alchemy effects: Resist Poison, Fortify Restoration (1.25× magnitude), Fortify Health, and Damage Stamina Regen.", + "display_name": "yellow_mountain_flower", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alocasia Fruit is a purple fruit that can be purchased from Khajiit caravans in Skyrim. Alchemy effects: Regenerate Stamina, Light, Ravage Magicka, and Regenerate Health.", + "display_name": "alocasia_fruit", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ambrosia is a greenish, scaly fruit that can be purchased from Khajiit caravans. Alchemy effects: Restore Health, Regenerate Health, Fortify Health, and Cure Poison.", + "display_name": "ambrosia", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Aster Bloom Core is a red, spiky plant that can be purchased from Khajiit caravans. Alchemy effects: Resist Magic, Fortify Light Armor, Fortify Block, and Paralysis.", + "display_name": "aster_bloom_core", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bittergreen Petals is a green-yellowish plant originally from Morrowind, available for purchase from Khajiit caravans. Alchemy effects: Lingering Damage Stamina, Invisibility, Cure Poison, and Damage Magicka.", + "display_name": "bittergreen_petals", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blind Watcher's Eye is an ingredient originating from the Shivering Isles, available for purchase from Khajiit caravans. Alchemy effects: Light, Fortify Magicka, Fortify Alteration, and Spell Absorption.", + "display_name": "blind_watchers_eye", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bliss Bug Thorax is an ingredient harvested by catching Bliss Bugs. Alchemy effects: Weakness to Fire, Resist Fire, Fortify Heavy Armor, and Fortify Illusion.", + "display_name": "bliss_bug_thorax", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blister Pod Cap is an ingredient originating from the Shivering Isles, and can be purchased from Khajiit caravans. Alchemy effects: Restore Magicka , Fortify Magicka, Night Eye, and Invisibility.", + "display_name": "blister_pod_cap", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bloodgrass is an ingredient harvested from the Deadlands. Alchemy effects: Invisibility, Resist Poison, Slow, and Fortify Health.", + "display_name": "bloodgrass", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bog Beacon is an ingredient originating from Cyrodiil, available for purchase from Khajiit caravans. Alchemy effects: Restore Magicka, Fortify Heavy Armor, Fear, and Damage Stamina.", + "display_name": "bog_beacon", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bungler's Bane is an ingredient originating from Vvardenfell, available for purchase from Khajiit caravans. Alchemy effects: Slow, Ravage Stamina, Damage Stamina Regen, and Resist Magic.", + "display_name": "bunglers_bane", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chokeberry, originating from Cyrodiil, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Damage Health, Ravage Health, Lingering Damage Health, and Weakness to Poison.", + "display_name": "chokeberry", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chokeweed, originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Weakness to Frost, Restore Stamina , Cure Disease , and Damage Magicka.", + "display_name": "chokeweed", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Coda Flower is a bright blue flower that can be purchased from Khajiit caravans originating from Vvardenfell.. Alchemy effects: Damage Health, Lingering Damage Stamina, Ravage Magicka, and Fortify Carry Weight.", + "display_name": "coda_flower", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Comberry, a red berry originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Damage Stamina, Spell Absorption, Restore Magicka, and Fortify Destruction.", + "display_name": "cornberry", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Congealed Putrescence, a slimy bluish-grey rock originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Ravage Health, Restore Magicka, Weakness to Fire, and Fortify Conjuration.", + "display_name": "congealed_putrescence", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Corkbulb Root, a brownish bulb plant, originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Paralysis, Restore Health, Resist Shock, and Fortify Marksman.", + "display_name": "corkbulb_root", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedra Silk, originating from the planes of Oblivion, is a whiteish silk used in alchemy. It can be purchased from Khajiit caravans Alchemy effects: Lingering Damage Stamina, Paralysis, Night Eye, and Invisibility.", + "display_name": "daedra_silk", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedra Venin, a red substance originating from the planes of Oblivion, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Ravage Health, Paralysis, Fortify Destruction, and Spell Absorption.", + "display_name": "daedra_venin", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedroth Teeth, large teeth originating from the planes of Oblivion, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Resist Frost, Light, Damage Magicka Regen, and Regenerate Stamina.", + "display_name": "daedroth_teeth", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dreugh Wax, a grey wax originating from Vvardenfell's dreughs or Cyrodiil's land dreughs, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Weakness to Magic, Frenzy, Fortify Enchanting, and Fortify Smithing.", + "display_name": "dreugh_wax", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elytra Ichor, a green ichor originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Restore Magicka, Invisibility, Slow, and Fear.", + "display_name": "elytra_ichor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fire Petal, a red plant originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Damage Health, Resist Fire, Spell Absorption, and Paralysis.", + "display_name": "fire_petal", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Flame Stalk, a red stalk plant originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Restore Magicka, Fortify Health, Fortify Stamina, and Waterbreathing.", + "display_name": "flame_stalk", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fungus Stalk, a long white stalk originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Restore Magicka, Fortify Health, Fortify Stamina, and Waterbreathing.", + "display_name": "fungus_stalk", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Gnarl Bark, originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Damage Health, Regenerate Health, Fortify Heavy Armor, and Resist Fire.", + "display_name": "gnarl_bark", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Gold Kanet, originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Paralysis, Ravage Health, Weakness to Frost, and Fortify Smithing.", + "display_name": "gold_kanet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Green Butterfly Wing can be harvested by catching Green Butterflies in a far-off, unknown land. Alchemy effects: Restore Magicka, Fear, Slow, and Invisibility.", + "display_name": "green_butterfly_wing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hackle-Lo Leaf, a long, thin, dark green leaf originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Restore Stamina, Paralysis, Waterbreathing, and Fortify Restoration.", + "display_name": "hackle-lo_leaf", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Harrada is a twisted plant harvested from the Deadlands. Alchemy effects: Damage Health, Damage Magicka, Paralysis, and Damage Magicka Regen.", + "display_name": "harrada", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heart of Order, a large white crystal originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Restore Health, Fortify Health, Fortify One-handed, and Fortify Two-handed.", + "display_name": "heart_of_order", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hunger Tongue, a long pink tongue originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Weakness to Fire, Cure Disease, Cure Poison, and Fortify Magicka.", + "display_name": "hunger_tounge", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hydnum Azure Giant Spore, a blue-purple sphere plant originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Resist Frost, Fortify Health, and Regenerate Health.", + "display_name": "hydnum_azure_giant_spore", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hypha Facia, a flat brown fungus originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Weakness to Poison, Frenzy, Ravage Stamina, and Resist Magic.", + "display_name": "hypha_facia", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Imp Gall, a yellowish gall originating from Cyrodiil, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Damage Health, Weakness to Fire, Fortify Barter, and Cure Poison.", + "display_name": "imp_gall", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ironwood Fruit, a yellow circular fruit harvested from the Ironwood Trees found in Iron Tusk Cave, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Restore Health, Resist Fire, Damage Stamina, and Restore Magicka.", + "display_name": "ironwood_fruit", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kagouti Hide, a thick brown hide originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Lingering Damage Stamina, Night Eye, Fortify Carry Weight, and Resist Shock.", + "display_name": "kagouti_hide", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kresh Fiber, long brown roots originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Weakness to Magic, Slow, Fortify Sneak, and Fortify Pickpocket.", + "display_name": "kresh_fiber", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lichor, a yellow substance originating from Mankar Camoran's destroyed realm of Oblivion, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Restore Magicka, Regenerate Magicka, Fortify Magicka, and Spell Absorption.", + "display_name": "lichor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Luminous Russula, a dark brown fungus originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Lingering Damage Stamina, Lingering Damage Health, Waterbreathing, and Fear.", + "display_name": "luminous_russula", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Marshmerrow, green thin plants originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Restore Health, Fortify Carry Weight, Weakness to Magic, and Damage Stamina.", + "display_name": "marshmerrow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Minotaur Horn, a large horn originating from Cyrodiil, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Resist Poison, Damage Magicka Regen, Regenerate Health, and Regenerate Magicka.", + "display_name": "minotaur_horn", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mort Flesh, rotting human flesh originating from Cyrodiil, is an ingredient that can be purchased from Khajiit caravans. You are bewildered why they would see this in Skyrim. Alchemy effects: Damage Health, Damage Magicka, Damage Magicka Regen, and Frenzy.", + "display_name": "mort_flesh", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ogre's Teeth, large teeth originating from Cyrodiil, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Weakness to Shock, Resist Poison, Lingering Damage Magicka, and Regenerate Health.", + "display_name": "orges_teeth", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Purple Butterfly Wing can be harvested by catching Purple Butterflies. Alchemy effects: Regenerate Health, Regenerate Magicka, Regenerate Stamina, and Paralysis.", + "display_name": "purple_butterfly_wing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Red Kelp Gas Bladder, a red gas bladder originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Fortify Magicka, Cure Disease, Waterbreathing, and Regenerate Stamina.", + "display_name": "red_kelp_gas_bladder", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Redwort Flower, originating from Cyrodiil, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Weakness to Magic, Fortify Sneak, Lingering Damage Health, and Cure Poison.", + "display_name": "redwort_flower", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Roobrush, originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Cure Poison, Weakness to Magic, Fortify Sneak, and Lingering Damage Health.", + "display_name": "roobrush", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rot Scale, a greenish substance originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Slow, Lingering Damage Health, Fear, and Paralysis.", + "display_name": "rot_scale", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Saltrice, a thin plant originating from Morrowind, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Restore Stamina, Fortify Magicka, Damage Stamina Regen, and Restore Health.", + "display_name": "saltrice", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scalon Fin, a large grey fish fin originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Waterbreathing, Damage Health, Lingering Damage Magicka, and Damage Magicka Regen.", + "display_name": "scalon_fin", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Screaming Maw, a strange fleshy object originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Regenerate Magicka, Fortify Alteration, Invisibility, and Regenerate Health.", + "display_name": "screaming_maw", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scrib Jelly, a red jelly originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Restore Stamina, Fortify Stamina, Paralysis, and Waterbreathing.", + "display_name": "scrib_jelly", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scrib Jerky, a thin red jerky originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Restore Stamina, Fortify Stamina, Paralysis, and Waterbreathing.", + "display_name": "scrib_jerky", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sload Soap, a grey soap popular in Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Resist Fire, Fear, Fortify Conjuration, and Fortify Alteration.", + "display_name": "sload_soap", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Spiddal Stick, a long yellow plant harvested from the Deadlands, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Damage Health, Damage Magicka, Weakness to Fire, and Restore Stamina.", + "display_name": "spiddal_stick", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel-Blue Entoloma, a blue fungus originating from Cyrodiil, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Restore Magicka, Fortify Destruction, Resist Frost, and Fortify Carry Weight.", + "display_name": "steel_blue_entoloma", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stoneflower Petals, a light purple flower originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Weakness to Shock, Fortify One-handed, Fortify Magicka, and Fortify Enchanting.", + "display_name": "stoneflower_petals", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Thorn Hook, a hard grey plant extract originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Lingering Damage Health, Paralysis, Regenerate Magicka, and Regenerate Health.", + "display_name": "thorn_hook", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Void Essence, a light red crystal originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Restore Health, Fortify Health, Fortify Stamina, and Regenerate Health.", + "display_name": "void_essence", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Watcher's Eye, a yellow-brown plant originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Night Eye, Fortify Magicka, Fortify Illusion, and Spell Absorption.", + "display_name": "watchers_eye", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wild Grass Pods are harvested from Wild Spiky Grass plants near Runoff Caverns. Alchemy effects: Resist Poison, Ravage Magicka, Fortify Alteration, and Restore Magicka.", + "display_name": "wild_grass_Pod", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wisp Stalk Caps, originating from Cyrodiil, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Damage Health, Weakness to Poison, Frenzy, and Regenerate Stamina.", + "display_name": "wisp_stalk_caps", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Withering Moon, a green substance originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Restore Magicka, Spell Absorption, Fortify Light Armor, and Cure Disease.", + "display_name": "withering_moon", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Worm's Head Cap, a purple mushroom head originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Fortify Lockpicking, Night Eye, Fortify Carry Weight, and Slow.", + "display_name": "worm_head_cap", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This potion enhances the duration of alteration magic, a school of spells that manipulate the physical world and natural properties. Often used by mages for utility and defense. Grants alteration spells a slight improvement, with effects lasting longer as the potion increases in potency. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_alteration", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A merchant's best friend, this potion enhances one's silver tongue, allowing better negotiation and lower prices for a brief time. Provides a slight advantage in haggling, with greater bargaining power as the potion becomes stronger. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_haggling", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Favored by warriors and shield-bearers, this potion reinforces defensive techniques, allowing for greater resistance against incoming strikes. Improves blocking techniques slightly, increasing protection with higher-grade potions. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_the_defender", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A boon for adventurers burdened by treasure or equipment, this potion enhances physical strength, temporarily easing the strain of heavy loads. Slightly increases carrying capacity, with a greater boost as the potion tier improves, aiding those burdened with heavy loot. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, solution, philter, and elixir.", + "display_name": "potion_of_strength", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This potion empowers conjuration magic, extending the duration of summoned allies or bound weapons. It is a staple for necromancers and battle mages alike. Extends conjuration spell durations slightly, with higher tiers providing more substantial enhancements for summoning magic. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "conjurers_potion", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Harnessing the raw power of the elements, this potion amplifies destruction magic, ensuring spells strike harder and deal greater damage. Increases destruction spell potency slightly, with stronger potions delivering a greater boost to elemental magic. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_destruction", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A must-have for aspiring enchanters, this potion enhances the potency of crafted enchantments, imbuing items with greater magical power. Grants a slight increase to enchantment strength, with higher tiers offering more powerful enhancements for magical crafting. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "enchanters_potion", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This potion bolsters the wearer's proficiency in heavy armor, enhancing resilience and durability in combat. Improves heavy armor skills slightly, with stronger potions offering greater boosts to resilience in battle. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_the_knight", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A mage's tool for manipulation, this potion amplifies the effects of illusion magic, making spells of fear, calm, and frenzy more effective. Slightly enhances illusion magic, with higher-grade potions providing significant boosts to manipulation spells. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_illusion", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Designed for agile combatants, this potion enhances light armor expertise, improving defensive capabilities without sacrificing mobility. Grants a slight increase to light armor skills, with higher potions offering greater defensive boosts for agile warriors. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "skirmishers_potion", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A thief's ally, this potion sharpens focus and dexterity, making locks yield more easily to a skilled hand. Slightly improves lockpicking ease, with higher-tier potions granting significant dexterity boosts. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_lockpicking", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Beloved by archers, this potion increases bow damage, allowing for more lethal strikes from a distance. Enhances bow damage slightly, with higher tiers enabling more devastating ranged attacks. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_true_shot", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This potion empowers warriors with enhanced strength, making strikes with one-handed weapons deal greater damage. Slightly increases one-handed weapon damage, with stronger potions amplifying a warrior's strikes further. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_the_warrior", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This potion sharpens wit and charm, granting the drinker an edge in persuasion, negotiation, and intimidation. Grants a slight improvement to Speechcraft, with higher-tier potions greatly enhancing persuasion abilities. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_glibness", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A thief's essential tool, this potion enhances precision and stealth, making pilfering items from unsuspecting targets far easier. Slightly improves pickpocketing success, with stronger potions allowing for more daring thefts. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_pickpocketing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This potion strengthens restoration magic, enhancing the effectiveness of healing and protective spells. Slightly enhances restoration magic, with higher tiers greatly increasing the potency of healing and protection spells. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_the_healer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A craftsman's aid, this potion enhances the skill of tempering weapons and armor, resulting in superior upgrades. Slightly improves smithing abilities, with higher tiers granting greater enhancement to weapon and armor improvements. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "blacksmiths_potion", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Favored by sneaks and scouts, this potion aids in evasion by reducing the chance of being detected. Slightly reduces detectability, with stronger potions providing significant stealth advantages. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_light_feet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This potion empowers warriors who wield two-handed weapons, increasing their strength for devastating blows. Slightly increases two-handed weapon damage, with higher-tier potions greatly amplifying the strength of each strike. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_the_berserker", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A shadowy elixir that grants temporary invisibility, making the user vanish from sight to evade or infiltrate. Grants brief invisibility, with higher-tier potions extending the duration for stealthier escapes or infiltrations. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_brief_invisibility", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This potion accelerates natural healing, allowing wounds to close and vitality to return at an enhanced rate. Slightly boosts health regeneration, with stronger potions significantly accelerating natural recovery. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, solution, philter, and elixir.", + "display_name": "potion_of_regeneration", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A favorite among mages, this potion boosts magicka regeneration, ensuring a steady flow of energy for spellcasting. Slightly enhances magicka regeneration, with higher-tier potions providing a substantial boost to magical energy recovery. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, solution, philter, and elixir.", + "display_name": "potion_of_lasting_potency", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This potion invigorates the body, accelerating stamina recovery for prolonged combat or exertion. Slightly improves stamina regeneration, with stronger potions allowing for faster recovery during extended efforts. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, solution, philter, and elixir.", + "display_name": "potion_of_vigor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Imbuing the drinker with a fiery resilience, this potion reduces damage taken from flames and fire-based attacks. Slightly reduces fire damage, with higher-tier potions granting greater protection against flames. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_resist_fire", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A protective brew against the biting cold, this potion reduces the impact of frost magic and freezing environments. Slightly mitigates frost damage, with stronger potions offering increased resistance to freezing attacks and conditions. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_resist_cold", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This potion grants a shield against mystical energies, reducing the potency of magical attacks. Slightly reduces magical damage, with higher-tier potions offering increased resistance to hostile spells. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_resist_magic", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A safeguard against lightning and shock-based magic, this potion diminishes electrical damage. Slightly mitigates shock damage, with stronger potions providing greater resistance to electrical attacks. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_resist_shock", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This simple potion offers a minor boost to vitality, ideal for patching up small wounds in the midst of an adventure. Restores a small amount of health, suitable for minor injuries and light encounters. These potions can be found in random loot or purchased from alchemists.", + "display_name": "potion_of_minor_healing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This potion restores a moderate amount of health, making it a reliable choice for recovering from common injuries. Restores a moderate amount of health, aiding adventurers in more demanding situations. These potions can be found in random loot or purchased from alchemists.", + "display_name": "potion_of_healing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A more potent elixir, this potion replenishes a significant portion of health, perfect for enduring tougher battles. Restores a significant amount of health, ideal for enduring prolonged combat or serious injuries. These potions can be found in random loot or purchased from alchemists.", + "display_name": "potion_of_plentiful_healing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This robust potion provides vigorous healing, capable of mending even substantial wounds with ease. Restores a substantial amount of health, allowing for quick recovery from critical wounds. These potions can be found in random loot or purchased from alchemists.", + "display_name": "potion_of_vigorous_healing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "One of the most powerful potions available, this brew restores an extreme amount of health, crucial for dire situations. Restores an extreme amount of health, essential for surviving the most perilous encounters. These potions can be found in random loot or purchased from alchemists.", + "display_name": "potion_of_extreme_healing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The pinnacle of restoration, this potion completely restores health, making it invaluable for life-or-death moments. Fully restores health, serving as the ultimate safeguard against defeat. These potions can be found in random loot or purchased from alchemists.", + "display_name": "potion_of_ultimate_healing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A basic potion that restores a small amount of magicka, ideal for novice mages or minor spells. Restores a small amount of magicka, perfect for casting minor spells or beginners in the arcane arts. These potions can be found in random loot or purchased from alchemists.", + "display_name": "potion_of_minor_magicka", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This potion replenishes a moderate amount of magicka, useful for sustaining a mage's power in combat. Restores a moderate amount of magicka, providing enough energy for sustained spellcasting in demanding situations. These potions can be found in random loot or purchased from alchemists.", + "display_name": "potion_of_magicka", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A potent potion that restores a significant amount of magicka, ensuring spellcasters can continue their craft. Restores a significant amount of magicka, allowing spellcasters to maintain their magical prowess during extended encounters. These potions can be found in random loot or purchased from alchemists.", + "display_name": "potion_of_plentiful_magicka", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This robust potion provides vigorous magicka restoration, enabling sustained spellcasting during intense battles. Restores a substantial amount of magicka, critical for maintaining powerful spells in prolonged combat. These potions can be found in random loot or purchased from alchemists.", + "display_name": "potion_of_vigorous_magicka", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A powerful brew that restores an extreme amount of magicka, essential for powerful mages and taxing spells. Restores an extreme amount of magicka, vital for executing taxing and high-level magical abilities. These potions can be found in random loot or purchased from alchemists.", + "display_name": "potion_of_extreme_magicka", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The pinnacle of magical restoration, this potion fully replenishes magicka, vital for life-or-death situations requiring immense magical energy. Fully restores magicka, serving as the ultimate resource for mages facing critical challenges. These potions can be found in random loot or purchased from alchemists.", + "display_name": "potion_of_ultimate_magicka", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple concoction that restores a small amount of stamina, useful for light exertions and quick recovery. Restores a small amount of stamina, ideal for minor exertions and short bursts of activity. These potions can be found in random loot or purchased from alchemists.", + "display_name": "potion_of_minor_stamina", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This potion replenishes a moderate amount of stamina, aiding adventurers in prolonged physical activity. Restores a moderate amount of stamina, enabling prolonged activity or combat. These potions can be found in random loot or purchased from alchemists.", + "display_name": "potion_of_stamina", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A potent blend that restores a significant amount of stamina, ideal for enduring prolonged combat or travel. Restores a significant amount of stamina, allowing adventurers to maintain physical activity during challenging situations. These potions can be found in random loot or purchased from alchemists.", + "display_name": "potion_of_plentiful_stamina", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This robust potion provides vigorous stamina restoration, ensuring peak performance in physically demanding situations. Restores a substantial amount of stamina, crucial for extended combat and heavy exertion. These potions can be found in random loot or purchased from alchemists.", + "display_name": "potion_of_vigorous_stamina", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An exceptionally powerful brew that restores an extreme amount of stamina, crucial for grueling battles and heavy labor. Restores an extreme amount of stamina, essential for overcoming intense physical challenges. These potions can be found in random loot or purchased from alchemists.", + "display_name": "potion_of_extreme_stamina", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The ultimate stamina elixir, this potion fully replenishes stamina, vital for overcoming the most exhausting challenges. Fully restores stamina, ensuring peak performance during the most taxing endeavors. These potions can be found in random loot or purchased from alchemists.", + "display_name": "potion_of_ultimate_stamina", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This potion grants the ability to breathe underwater, a boon for adventurers exploring submerged ruins or evading danger beneath the surface. Allows the user to breathe underwater for a brief duration, with higher-tier potions extending the time significantly. These potions can be found in random loot or purchased from alchemists. There are several tiers: from weakest to strongest: potion, draught, philter, and elixir.", + "display_name": "potion_of_waterbreathing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Well-being is a restorative elixir that balances the restoration of health, magicka, and stamina. It is highly valued by adventurers in Solstheim and comes in various strengths, ranging from modest to extraordinary. These potions are granted by Elynea Mothren. Tiers include: Minor, Well-being, Plentiful, Vigorous, Extreme, and Ultimate.", + "display_name": "potion_of_well_being", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This legandary potion purportedly allows the user to walk across the surface of water for a short duration. Only a few of these potions exist, hidden deep within Raven Rock Mine.", + "display_name": "potion_of_waterwalking", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Plunder enhances an adventurer's ability to carry more and increases stamina for a limited time. It is available in several tiers: potion, draught, philter, elixir, grand elixir, and prime elixir. Rumors suggest it may have something to do with Glover Mallory in Raven Rock, though nothing is confirmed.", + "display_name": "potion_of_plunder", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Conflict boosts proficiency in light armor and enhances one-handed weapon damage for a short duration. It comes in multiple tiers: potion, draught, philter, elixir, grand elixir, and prime elixir. Rumors suggest it may have something to do with Glover Mallory in Raven Rock, though nothing is confirmed.", + "display_name": "potion_of_conflict", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Larceny makes lockpicking and pickpocketing easier for a brief time. It is crafted in tiers ranging from potion to prime elixir, offering increasing effectiveness. Rumors suggest it may have something to do with Glover Mallory in Raven Rock, though nothing is confirmed.", + "display_name": "potion_of_larceny", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Keenshot increases bow damage and enhances stamina regeneration temporarily. It is available in tiers: potion, draught, philter, elixir, grand elixir, and prime elixir. Rumors suggest it may have something to do with Glover Mallory in Raven Rock, though nothing is confirmed.", + "display_name": "potion_of_keenshot", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Escape grants invisibility for a short time and restores health. This potion comes in several tiers: potion, draught, philter, elixir, grand elixir, and prime elixir. Rumors suggest it may have something to do with Glover Mallory in Raven Rock, though nothing is confirmed.", + "display_name": "potion_of_escape", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Cure Poison potion halts the effects of any active poison. It is an uncommon find and is not typically traded by apothecaries. Certain individuals, such as Elgrim, Nura Snow-Shod, and Mjoll the Lioness, are known to sometimes carry it, and it may occasionally be found on members of the Silver Hand.", + "display_name": "cure_poison", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Cure Disease eradicates all illnesses and is a staple among apothecaries and general merchants. Vigilants of Stendarr always carry it, and it can be found in many locations, including the Hall of the Vigilant and Thaumaturgist's Hut.", + "display_name": "potion_of_cure_disease", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Health increases vitality for a short time. It is available in several tiers, each providing greater benefits: Potion, Draught, Solution, Philter, and Elixir of Health. These potions are found throughout Skyrim, with notable appearances in the Thalmor Embassy, House of Clan Cruel-Sea, Potema's Catacombs, and more.", + "display_name": "potion_of_health", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Extra Magicka bolsters a mage's reserves of magical energy temporarily. Available in tiers from Potion to Elixir of Extra Magicka, these potions are scattered across Skyrim. Notable locations include Ilinalta's Deep, Silent Moons Camp, Viola Giordano's House, and the Inner Sanctum.", + "display_name": "potion_of_extra_magicka", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Enhanced Stamina boosts an adventurer's stamina for a longer duration, making it ideal for prolonged exertion. Found in tiers from Potion to Elixir of Enhanced Stamina, they appear in places like Highmoon Hall, The White Hall, Broken Tower Redoubt, and the Shrine of Akatosh.", + "display_name": "potion_of_enhanced_stamina", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This potion grants invisibility for a brief time but cannot be consumed, as it is marked as a quest item during the events of 'Clear-Headed.' Its purpose seems tied to unique circumstances, possibly as part of a deceptive scheme.", + "display_name": "disguised_invisibility_potion", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Elixir of Resist Magic provides temporary protection against magic, reducing the damage taken from spells. It is a rare potion and not tied to any specific location or vendor. It is likely an advanced creation known to skilled alchemists and scholars studying defensive magic.", + "display_name": "elixir_of_resist_magic", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An amazing concoction that can grant your every wish. Only available from Brynjolf for a limited time.", + "display_name": "falmer_blood_elixir", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This potion grants resistance to frost damage and is said to be harvested from Ice Wraiths themselves. Alchemists theorize it contains the frozen essence of these creatures, granting its frost-resistant properties. It is a prized item among adventurers who venture into freezing climates.", + "display_name": "ice_wraith_essence", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Philter of the Phantom grants a ghostly appearance to its user for a short time. It is believed to hold the essence of restless spirits, and is rumored to be obtainable only from Shroud Hearth Barrow.", + "display_name": "philter_of_the_phantom", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Blood is a unique elixir for vampires, serving as an equivalent to feeding on human blood. It restores health and satisfies a vampire's hunger in Survival Mode. Found in Volkihar Keep, it is thought to be crafted using ancient vampiric alchemy.", + "display_name": "potion_of_blood", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This extract protects against magical attacks and interrupts the soul drain effect within the Soul Cairn. Valerica can craft it in exchange for Soul Husks. Alchemists speculate its properties come from the unique magical environment of the Soul Cairn, where the laws of magic differ from Tamriel.", + "display_name": "soul_husk_extract", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Stallion's Potion is a unique potion that boosts stamina for an extended period and is often associated with physical endurance.", + "display_name": "stallions_potion", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a mysterious potion that appears when mixing ingredients with unknown effects. Its purpose is experimental, and it cannot be obtained normally.", + "display_name": "unknown_potion", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vaermina's Torpor is a unique alchemical creation tied to the Daedric Prince Vaermina. It allows the user to enter 'The Dreamstride,' a state of altered consciousness used in rituals. Its effects are said to transport the user through memories and dreams, making it a powerful but dangerous substance.", + "display_name": "vaerminas_torpor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The White Phial is a legendary alchemical masterpiece created by the alchemist Curalmil. Made of magically infused snow from the Throat of the World, it refills itself with any liquid placed inside. It grants powerful effects such as healing, restoration, or fortification, transcending traditional alchemical principles. The White Phial is central to a unique quest involving Nurelion, a high elf alchemist in Windhelm.", + "display_name": "white_phial", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Poisons inflict harm, dealing damage to an target's health over time. The potency increases with each tier, making them versatile tools for combat. These poisons can be found in random loot, purchased from apothecaries, or crafted using alchemy. Tiers: weak, standard, potent, virulent, deadly.", + "display_name": "poison", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Designed to cripple spellcasters, this poison drains the target's magicka, preventing them from casting powerful spells. Stronger variants drain more magicka, making them effective against mages. These poisons can be found in random loot, purchased from apothecaries, or crafted using alchemy. Tiers: weak, standard, potent, virulent, deadly.", + "display_name": "magicka_poison", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Favored by warriors, this poison saps the target's stamina, reducing their ability to perform power attacks or block effectively. Higher tiers drain more stamina, debilitating melee combatants. These poisons can be found in random loot, purchased from apothecaries, or crafted using alchemy. Tiers: weak, standard, potent, virulent, deadly.", + "display_name": "stamina_poison", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tool for controlling the battlefield, this poison causes creatures and people to flee in fear, giving you time to regroup. Stronger variants affect higher-level targets. These poisons can be found in random loot, purchased from apothecaries, or crafted using alchemy. Tiers: weak, standard, potent, virulent, deadly.", + "display_name": "fear_poison", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A chaotic choice, this poison induces frenzy, causing targets to attack anything nearby. Higher potency affects stronger enemies. These poisons can be found in random loot, purchased from apothecaries, or crafted using alchemy. Tiers: weak, standard, potent, virulent, deadly.", + "display_name": "frenzy_poison", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Highly valued by rogues, this poison paralyzes targets for a short duration, rendering them helpless. Stronger poisons increase the paralysis duration. These poisons can be found in random loot, purchased from apothecaries, or crafted using alchemy. Tiers: weak, standard, potent, virulent, deadly.", + "display_name": "paralysis_poison", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This poison exploits a target's weakness to fire, increasing the damage they take from fire-based attacks. Stronger potions amplify this effect. These poisons can be found in random loot, purchased from apothecaries, or crafted using alchemy. Tiers: weak, standard, potent, virulent, deadly.", + "display_name": "aversion_to_fire", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Exposing a target’s vulnerability to frost, this poison increases the damage they take from frost attacks. Higher tiers amplify the effect. These poisons can be found in random loot, purchased from apothecaries, or crafted using alchemy. Tiers: weak, standard, potent, virulent, deadly.", + "display_name": "aversion_to_frost", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A general-purpose tool, this poison heightens the target's vulnerability to all magic, making them susceptible to spells. Stronger poisons amplify this vulnerability. These poisons can be found in random loot, purchased from apothecaries, or crafted using alchemy. Tiers: weak, standard, potent, virulent, deadly.", + "display_name": "aversion_to_magic", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This poison heightens a target's susceptibility to shock damage, making lightning-based spells and attacks more effective. Higher tiers intensify the effect. These poisons can be found in random loot, purchased from apothecaries, or crafted using alchemy. Tiers: weak, standard, potent, virulent, deadly.", + "display_name": "aversion_to_shock", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Recovery Poisons are designed to disrupt a target's ability to regenerate magicka, making them vulnerable in combat. Tiers include Weak, Magicka, Potent, Malign, and Deadly Recovery Poisons, each lasting longer and becoming more potent with higher grades. Found in rare locations such as Fletcher in Solitude and Myrwatch.", + "display_name": "recovery_poison", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vigor Poisons inhibit stamina regeneration, leaving enemies fatigued and less effective in battle. Tiers include Weak, Vigor, Potent, Malign, and Deadly Vigor Poisons, with increasing potency and duration. They are rarely found in locations like Duskglow Crevice and Japhet's Folly Towers.", + "display_name": "vigor_poison", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lingering Poisons deal damage over time, causing slow but deadly harm to enemies. Tiers include Weak, Lingering, Potent, Malign, and Deadly Lingering Poisons, with increasing severity and duration. Often found in places like Forelhost Stronghold and Volkihar Keep, and sometimes carried by Falmer.", + "display_name": "lingering_poison", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lingering Magicka Poisons gradually drain a target's magical reserves, leaving spellcasters vulnerable. Tiers include Lingering, Enduring, Lasting, Persisting, and Unceasing Magicka Poisons, with stronger tiers found in rare locations such as Highpoint Tower and Forsaken Crypt.", + "display_name": "lingering_magicka_poison", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lingering Stamina Poisons weaken a target's stamina over time, draining their ability to fight or flee. Tiers include Lingering, Enduring, Lasting, Persisting, and Unceasing Stamina Poisons. Rarely found in locations such as Bloodlet Throne or pickpocketed from individuals like Gissur during 'Diplomatic Immunity.'", + "display_name": "lingering_stamina_poison", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frostbite Venom is a common poison harvested from Frostbite Spiders. It is known to weaken an enemy’s vitality and endurance by delivering a chilling, debilitating effect. The venom is frequently dropped by Frostbite Spiders and their larger kin, Giant Frostbite Spiders.", + "display_name": "frostbite_venom", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ice Wraith Bane is a potent poison specifically crafted to harm Ice Wraiths. Known to be issued to those joining the Stormcloaks, its formulation is highly effective against these spectral creatures, though its use is limited to such foes.", + "display_name": "ice_wraith_bane", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lotus Extract is a rare poison that causes lingering harm over time, slowly sapping the vitality of those it infects. It is used by assassins and can be found in select sanctuaries or other hidden locations.", + "display_name": "lotus_extract", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mystic Venom is a poison of mysterious origin, said to sap both the health and magical reserves of its victims. It can be harvested from the Elytra Nymphs of the Shivering Isles, creatures tied to a chaotic and otherworldly realm.", + "display_name": "mystic_venom", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nightshade Extract is a subtle but deadly poison derived from the nightshade plant. It causes lingering harm and is often used in covert operations or rituals. Some claim to have obtained it from Wuunferth the Unliving or hidden caches in Windhelm.", + "display_name": "nightshade_extract", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Argonian Ale is a rare and potent drink, said to invigorate the body at the cost of slowing its recovery. It is sought after by certain individuals and is a point of pride among Argonians.", + "display_name": "argonian_ale", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Balmora Blue is a highly illicit and rare substance, known for its invigorating effects and its ties to smuggling operations. Its rarity and illegality make it a prized and dangerous commodity.", + "display_name": "balmora_blue", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cliff Racer is a specialty wine crafted by Talen-Jei at The Bee and Barb. A blend of exotic spirits, it is a favorite of those seeking a strong and unique drink.", + "display_name": "cliff_racer", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cyrodilic Brandy is a fine drink associated with nobility and celebration, often given as a gift to mark important occasions.", + "display_name": "cyrodilic_brandy", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Double-Distilled Skooma is an enhanced form of the infamous narcotic, prized for its potency. It is known among rogues and those who trade in shadowy dealings.", + "display_name": "double_distilled_skooma", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Esbern's Potion is a secret concoction created by the Blades to combat dragons. It is known only to Esbern and is said to bolster one's defenses against dragon attacks.", + "display_name": "esberns_potion", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Holy Water is referenced in tales and songs, often as a joke or a mythical substance associated with divine protection.", + "display_name": "holy_water", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Redwater Skooma is a secret creation of the vampires, blending skooma with the blood of the Bloodspring. It is known to produce a strong euphoria and a drug-like trance.", + "display_name": "redwater_skooma", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skooma is a common narcotic in Tamriel, made from refined moon sugar. While illegal, it is widely available in Skyrim and known for its addictive properties.", + "display_name": "skooma", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sleeping Tree Sap is a mysterious and powerful substance harvested from the Sleeping Tree. It is said to grant great strength but induces a hazy and dreamlike state. Ysolda in Whiterun is known to trade in it.", + "display_name": "sleeping_tree_sap", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stros M'Kai Rum is a rare beverage tied to seafaring traditions. Known for its strong and smooth taste, it is cherished by sailors and adventurers.", + "display_name": "stros_m-kai_rum", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Velvet LeChance is a rich and flavorful wine created by Talen-Jei at The Bee and Barb. Its blend of honey, blackberry, and spices makes it a favorite among patrons seeking a unique drink.", + "display_name": "velvet_lechance", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "White-Gold Tower is an elegant specialty wine crafted by Talen-Jei at The Bee and Barb. Its layered flavors of cream, mead, and lavender evoke memories of the Imperial City.", + "display_name": "white_gold_tower_wine", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Corundum is a valuable metal used primarily for creating stronger alloys in the crafting of weapons and armor.", + "display_name": "corrundum", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragon Bone is used to craft powerful dragon armor and weapons from only the most masterful blacksmiths.", + "display_name": "dragonbone", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stalhrim is a rare, enchanted ice found only on the island of Solstheim. It has a rich history, initially used in ancient Nordic burial rituals to encase the deceased as a form of protection, and later as a crafting material for weapons, armor, clothing, and jewelry. Stalhrim armor can be made in light or heavy variants and is known for its impressive protection. It also enhances frost enchantments, making them more powerful.", + "display_name": "stalhrim", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebony is a rare and valuable volcanic glass found primarily in Vvardenfell in Morrowind. It is used to create powerful weapons and armor.", + "display_name": "ebony", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Malachite is a rare volcanic crystal known for its distinctive milky translucent green color and its ability to absorb magicka. I.t is primarily utilized in crafting lightweight yet strong armor and weapons.", + "display_name": "malachite", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Moonstone is a rare ivory-colored metal found in veins throughout Tamriel, prized for its unique properties and applications in crafting. Primarily, it is used in the creation of elven armor.", + "display_name": "moonstone", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orichalcum, also known as orichalc, is a gray-green metal renowned for its use in crafting weapons and armor, particularly by the Orcs, who are celebrated for their orichalcum equipment.", + "display_name": "orichalcum", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have no idea what this puzzle is or how to solze it.", + "display_name": "ustengrav_puzzle", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have no idea what this puzzle is or how to solze it.", + "display_name": "arkngthamz_puzzle", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have no idea what this puzzle is or how to solze it.", + "display_name": "fahlbtharz_puzzle", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have no idea what this puzzle is or how to solze it.", + "display_name": "dimhollow_cavern_puzzle", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have no idea what the claw is or how to solze its puzzle.", + "display_name": "coal_dragon_claw", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have no idea what the claw is or how to solze its puzzle.", + "display_name": "diamond_claw", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have no idea what the claw is or how to solze its puzzle.", + "display_name": "ebony_claw", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have no idea what the claw is or how to solze its puzzle.", + "display_name": "emerald_dragon_claw", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have no idea what the claw is or how to solze its puzzle.", + "display_name": "glass_claw", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have no idea what the claw is or how to solze its puzzle.", + "display_name": "golden_claw", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have no idea what the claw is or how to solze its puzzle.", + "display_name": "iron_claw", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have no idea what the claw is or how to solze its puzzle.", + "display_name": "ivory_claw", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have no idea what the claw is or how to solze its puzzle.", + "display_name": "ivory_dragon_claw", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have no idea what the claw is or how to solze its puzzle.", + "display_name": "ruby_dragon_claw", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have no idea what the claw is or how to solze its puzzle.", + "display_name": "sapphire_dragon_claw", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Aloe Vera Leaves are a plant ingredient used in alchemy for their healing and restorative properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "aloe_vera_leaves", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancestor Moth Wing is a delicate brownish ingredient that is prized for its magical properties, especially in enhancing conjuration and enchanting abilities.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "ancestor_moth_wing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ash Creep Cluster is a unique red ingredient from Solstheim, distinguished by its yellow-tan color and distinct alchemical properties compared to the mainland creep cluster. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "ash_creep_cluster", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ash Hopper Jelly is a red substance dropped by ash hoppers, known for its healing and protective properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "ash_hopper_jelly", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ashen Grass Pod is a unique ingredient from Solstheim, distinguished by its grey color and different alchemical properties compared to the grass pods of mainland Skyrim. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "ashen_grass_pod", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bear Claws are a potent alchemical ingredient known for their ability to enhance stamina, health, and combat abilities. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "bear_claws", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bees are passive creatures that can be caught while flying or collected from beehives, along with other components like beehive husks and honeycombs. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "bee", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Beehive Husk is a versatile ingredient known for its ability to enhance defense and magical abilities. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "beehive_husk", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bleeding Crowns are red-capped mushrooms commonly found on cave floors, known for their blood-like appearance and their usefulness in creating defensive potions. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "bleeding_crown", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blisterwort is a type of red topped fungus often found in caves, valued for its alchemical versatility. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "blisterwort", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blue Butterfly Wings are delicate, vibrant wings that can be caught from blue butterflies fluttering around Skyrim. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "blue_butterfly_wing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blue Dartwings are dragonfly wings that can be caught while they dart around Skyrim's waters. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "blue_dartwing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blue Mountain Flower is a vibrant blue-flowered plant commonly found in Skyrim's mountainous regions. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "blue_mountain_flower", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Boar Tusks are ingredients dropped by bristlebacks and rieklings, valued for their robust alchemical properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "boar_tusk", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bone Meal is an ingredient dropped by most undead creatures, commonly used in various alchemical concoctions. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "bone_meal", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Briar Hearts are powerful ingredients that look like a cluster of red and green spiked leavesas a heart for Forsworn Briarhearts, known for their potent magical properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "briar_heart", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Burnt Spriggan Wood is an ingredient dropped by burnt spriggans, known for its fiery and defensive properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "burnt_spriggan_wood", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Butterfly Wings are delicate wings collected from orange monarch butterflies, valued for their restorative and magical properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "butterfly_wing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Canis Root are spiky roots that is harvested from small, gnarled bushes found in regions like the Rift, Hjaalmarch, and Haafingar, thriving near rock formations, cliffs, and swampy areas. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "canis_root", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Charred Skeever Hides can be collected from charred skeevers, often found after a battle or fire. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "charred_skeever_hide", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chaurus Eggs are blue spotted eggs harvested from chaurus egg sacs found in large quantities within Falmer hives. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "chaurus_eggs", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chaurus Hunter Antennae are an alchemy ingredient dropped by chaurus hunters and their fledglings. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "chaurus_hunter_antennae", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chicken's Eggs can be harvested from chickens' nests, commonly found at most farms \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "chicken_egg", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Creep Cluster is a mass of orange-brown roots found growing over rocks in the sulfur-rich region of Eastmarch. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "creep_cluster", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Crimson Nirnroot is a rare red variant of nirnroot found exclusively in Blackreach, known for its powerful effects. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "crimson_nirnroot", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedra Hearts are collected from slain Dremora and are not only used in alchemy but also in crafting Daedric armor and weapons at both standard and Atronach forges. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "daedra_heart", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Deathbell is a large purple flower found in swampy regions like Hjaalmarch, known for its potent poison effects and darker folklore surrounding its growth. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "deathbell", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragon's Tongue is a striking yellow-flowered plant found in the volcanic tundra of Eastmarch and is sometimes cultivated as an ornamental plant. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "dragons_tongue", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dwarven Oil is an ingredient dropped by Dwarven automatons, sharing similar effects to taproot, allowing for a potent combination of magical properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "dwarven_oil", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ectoplasm is an uncommon greyish goo ingredient obtained from ghosts, known for its magical and destructive alchemical properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "ectoplasm", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elves Ear is a small green herb harvested from branches of dried Elves Ear, often found hanging to dry alongside garlic and frost mirriam in homes and buildings. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "elves_ear", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Emperor Parasol Moss is an ingredient harvested from the moss that hangs from Emperor Parasol mushrooms, typically found near Tel Mithryn. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "emperor_parasol_moss", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Eyes of Sabre Cats are dropped by sabre cats, often used in alchemy for their potent restorative and damaging properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "eye_of_sabre_cat", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Falmer Ears are pointy thin ears dropped by dead Falmer, and unlike Elves Ear, they are actual ears rather than a plant. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "falmer_ear", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Felsaad Tern Feathers are white feathers an ingredient dropped by Felsaad terns, known for their restorative and defensive alchemical properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "felsaad_tern_feathers", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fire Salts are dropped by flame atronachs, valued for their fiery nature and their ability to enhance magical properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "fire_salts", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fly Amanita is a red capped mushroom commonly found in caves, known for its fiery and strengthening properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "fly_amanita", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frost Mirriam is an yellow herb commonly found hanging to dry in homes, often alongside garlic and Elves Ear.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "frost_mirriam", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frost Salts are a blueish powder dropped by frost atronachs and are valued for their cooling and magical properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "frost_salts", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Garlic is harvested from garlic braids that are commonly found hanging to dry inside homes and other buildings. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "garlic", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Giant Lichen is harvested from a fungus found in the marshes of Hjaalmarch. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "giant_lichen", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Giant's Toes are dropped by giants and are known for their powerful alchemical effects. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "giant_toe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Gleamblossom are purple and light blue plants, that look like an upside down bell, is harvested from the flower of the same name, known for its potent magical effects. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "gleamblossom", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glow Dust is a glowing green dust found on dead wisps and wispmothers, along with wisp wrappings, and is valued for its magical properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "glow_dust", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glowing Mushrooms are a type of glowing green fungus found growing on cave walls, providing a natural source of light. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "glowing_mushroom", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Grass Pods are harvested from Spiky Grass plants that grow along Skyrim's northern coasts and near the rivers around Morthal. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "grass_pod", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hagraven Claws are possibly dropped by dead hagravens, along with the more common hagraven feathers, and are known for their magical properties.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "hagraven_claw", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hagraven Feathers are dropped by dead hagravens, alongside the occasional hagraven claws. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "hagraven_feathers", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hanging Moss is harvested from plants that grow on rocky ledges, trees, or dungeon ceilings, commonly found in the Reach and throughout Skyrim's holds. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "hanging_moss", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hawk Beaks can be found on dead hawks, alongside hawk feathers, and are used for various alchemical effects. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "hawk_beak", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hawk Feathers can be found on dead hawks, along with hawk beaks, and are used for a range of beneficial alchemical effects.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "hawk_feathers", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hawk's Eggs can be harvested from hawks' nests, known for their diverse magical properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "hawk_egg", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Honeycomb is harvested from beehives, along with bees and beehive husks, and is known for its versatile alchemical properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "honeycomb", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Human Flesh can be found in locations where individuals have performed the Black Sacrament ritual to summon the Dark Brotherhood. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "human_flesh", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Human Hearts are used in alchemy or at the Atronach Forge and can be found where the Black Sacrament ritual has been performed to summon the Dark Brotherhood. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "human_heart", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ice Wraith Teeth are dropped by ice wraiths, known for their ability to enhance defense and manipulate elemental effects. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "ice_wraith_teeth", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Imp Stool is a brown capped fungus found in caves, typically growing near the edges where the wall and floor meet. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "imp_stool", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Jazbay Grapes are harvested from vines growing on rocky outcroppings in Eastmarch's volcanic tundra, and are used both in alchemy and for baking Jazbay Crostata.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "jazbay_grapes", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Juniper Berries are small greenish-white berries harvested from juniper trees, commonly found growing in the Reach. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "juniper_berries", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Large Antlers may be dropped by male deer and elk, while female elk drop small antlers. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "large_antlers", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lavender is an herb that thrives in cold steppe climates, particularly in Whiterun Hold, and is found in several other holds as well. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "lavender", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Luna Moth Wings can be acquired by catching luna moths, which only come out at night but are easily spotted due to their glowing wings. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "luna_moth_wing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Moon Sugar is the unrefined form of skooma, a grainy powder of small white crystals with a silver sheen, harvested from cane grasses along the coasts and estuaries of Elsweyr. Unlike its refined counterpart, skooma, Moon Sugar is not illegal and is sold in apothecaries, though it does have mild magical properties and is known as a potent narcotic. While it is a popular spice in Elsweyr, it can be addictive, with humans being particularly susceptible to its effects. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "moon_sugar", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mora Tapinella is a fungus found growing on tree stumps and fallen trees in forested regions across Skyrim, although it is less common in the Rift, where the scaly pholiota dominates. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "mora_tapinella", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mudcrab Chitin is dropped by mudcrabs and is valued for its defensive and restorative properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "mudcrab_chitin", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Namira's Rot is a brown capped fungus found on cave floors, named after the Daedric Prince Namira. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "namira_rot", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Netch Jelly is a blueish substance dropped by netch on Solstheim, valued for its versatile and powerful alchemical properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "netch_jelly", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nightshade is a purple plant commonly found in graveyards, preferring light yet thriving in the shadow of death, making it rare in crypts and barrows. Known for its potent poisons, it is widely feared and used by those seeking to disable their enemies, often seen on the blades of unsavory characters in Skyrim. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "nightshade", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nirnroot is a bright green plant typically found near water, known for its glowing appearance and the unique chiming sound it emits, making it easier to locate at night.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "nirnroot", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nordic Barnacles are harvested from Nordic barnacle clusters found underwater. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "nordic_barnacle", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orange Dartwings are dragonflies caught in Skyrim, often found in the southern regions, with their bright orange color making them distinct from the blue dartwings. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "orange_dartwing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pearls, including small pearls, are found in clams and pearl oysters, prized for their use in various alchemical mixtures. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "pearl", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pine Thrush Eggs can be harvested from birds' nests found in forested regions, especially throughout The Rift.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "pine_thrush_egg", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Poison Bloom is picked from the poison bloom plants, it has a purpleish exterior, found exclusively in Darkfall Passage.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "poison_bloom", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Powdered Mammoth Tusk is a rare and mysterious substance that appears randomly in Skyrim, with its origins unknown on how to make it.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "powdered_mammoth_tusk", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Purple Mountain Flower is harvested from the purple-flowered variety of mountain flower, commonly found in Skyrim's mountainous regions. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "purple_mountain_flower", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Red Mountain Flower is harvested from the red-flowered variety of mountain flower, commonly found throughout Skyrim. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "red_mountain_flower", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rock Warbler Eggs are greenish eggs that can be harvested from birds' nests found in rocky regions, especially throughout the Reach. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "rock_warbler_egg", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sabre Cat Teeth are dropped by sabre cats, who always drop either a tooth or an eye of sabre cat, along with a sabre cat pelt. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "sabre_cat_tooth", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Salmon Roe is are orange egg clusters that are an ingredient harvested from jumping salmon in streams, often found in Skyrim's rivers.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "salmon_roe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Salt Piles are more commonly valued for cooking, as they are essential in many recipes, though they also have some alchemical uses. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "salt_pile", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scaly Pholiota is a fungus found on tree stumps and fallen trees, particularly in the birch forests of the Rift. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "scaly_pholiota", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scathecraw is an ingredient harvested from the plant of the same name on Solstheim.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "scathecraw", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skeever Tails are dropped by dead skeevers. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "skeever_tail", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Slaughterfish Eggs can be acquired by harvesting a slaughterfish egg nest, found underwater or occasionally half-submerged in water. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "slaughterfish_egg", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Slaughterfish Scales are dropped by slaughterfish, commonly found in Skyrim's waters.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "slaughterfish_scales", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Small Antlers are dropped by female elk, while male deer and elk drop large antlers.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "small_antlers", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Small Pearl is an alchemy ingredient found in Pearl Oysters.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "small_pearl", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Snowberries are red berries harvested from the snowberry plant, commonly found near the snowline in Skyrim.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "snowberries", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Spawn Ash is an white powder ingredient dropped by ash spawn on Solstheim. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "spawn_ash", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Spider Eggs are light greenish eggs that can be acquired by harvesting the egg sacs of frostbite spiders. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "spider_egg", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Spriggan Sap is found randomly around Skyrim, and its origins of creation remain a mystery. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "spriggan_sap", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Swamp Fungal Pod are a white brownish fungus found in the marshes of Hjaalmarch. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "swamp_fungal_pod", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Taproots are biolumicesnt roots dropped by spriggans and are used in various alchemical mixtures. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "taproot", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Thistle Branches are purple plants harvested from thistle plants found at lower elevations, particularly in the southern pine forests. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "thistle_branch", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Torchbug Thoraxes are bright yellow and can be acquired by catching torchbugs, which appear at night in most non-snowy areas. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "torchbug_thorax", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Trama Root are thing roots that is an ingredient harvested from the plant of the same name found on Solstheim. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "trama_root", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Troll Fat is dropped by trolls and is known for its defensive and harmful alchemical properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "troll_fat", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Tundra Cotton is a plant that mostly grows in the plains of Whiterun Hold, known for its resilience in the region's climate. It is a common ingredient in potions that fortify magicka and resist spells, often valued for its subtle yet effective properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "tundra_cotton", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampire Dust is a purpleish powder alchemical ingredient dropped by vampires, prized for its magical and restorative properties.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "vampire_dust", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Void Salts are blackish powder dropped by storm atronachs and are known for their potent magical properties.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "void_salts", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wheat is commonly grown in farms around Skyrim and is used for various alchemical and culinary purposes. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "wheat", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "White Cap is are a white capped mushroom commonly found in caves, known for its use in enhancing defense and magical properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "white_cap", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wisp Wrappings are blueish wraps dropped by wispmothers, along with glow dust, and are valued for their magical properties. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "wisp_wrappings", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Yellow Mountain Flower is harvested from the rare yellow-flowered variety of mountain flower, found in various regions of Skyrim.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "yellow_mountain_flower", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alocasia Fruit is a purple fruit that can be purchased from Khajiit caravans in Skyrim.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "alocasia_fruit", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ambrosia is a greenish, scaly fruit that can be purchased from Khajiit caravans\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "ambrosia", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Aster Bloom Core is a red, spiky plant that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "aster_bloom_core", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bittergreen Petals is a green-yellowish plant originally from Morrowind, available for purchase from Khajiit caravans.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "bittergreen_petals", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blind Watcher's Eye is an ingredient originating from the Shivering Isles, available for purchase from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "blind_watchers_eye", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bliss Bug Thorax is an ingredient harvested by catching Bliss Bugs. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "bliss_bug_thorax", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blister Pod Cap is an ingredient originating from the Shivering Isles, and can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "blister_pod_cap", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bloodgrass is an ingredient harvested from the Deadlands. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "bloodgrass", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bog Beacon is an ingredient originating from Cyrodiil, available for purchase from Khajiit caravans.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "bog_beacon", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bungler's Bane is an ingredient originating from Vvardenfell, available for purchase from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "bunglers_bane", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chokeberry, originating from Cyrodiil, is an ingredient that can be purchased from Khajiit caravans. A\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "chokeberry", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chokeweed, originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "chokeweed", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Coda Flower is a bright blue flower that can be purchased from Khajiit caravans originating from Vvardenfell.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "coda_flower", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Comberry, a red berry originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "cornberry", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Congealed Putrescence, a slimy bluish-grey rock originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "congealed_putrescence", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Corkbulb Root, a brownish bulb plant, originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "corkbulb_root", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedra Silk, originating from the planes of Oblivion, is a whiteish silk used in alchemy. It can be purchased from Khajiit caravans \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "daedra_silk", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedra Venin, a red substance originating from the planes of Oblivion, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "daedra_venin", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daedroth Teeth, large teeth originating from the planes of Oblivion, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "daedroth_teeth", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dreugh Wax, a grey wax originating from Vvardenfell's dreughs or Cyrodiil's land dreughs, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "dreugh_wax", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elytra Ichor, a green ichor originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "elytra_ichor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fire Petal, a red plant originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "fire_petal", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Flame Stalk, a red stalk plant originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "flame_stalk", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fungus Stalk, a long white stalk originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "fungus_stalk", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Gnarl Bark, originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "gnarl_bark", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Gold Kanet, originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "gold_kanet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Green Butterfly Wing can be harvested by catching Green Butterflies in a far-off, unknown land. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "green_butterfly_wing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hackle-Lo Leaf, a long, thin, dark green leaf originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "hackle-lo_leaf", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Harrada is a twisted plant harvested from the Deadlands.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "harrada", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heart of Order, a large white crystal originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "heart_of_order", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hunger Tongue, a long pink tongue originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "hunger_tounge", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hydnum Azure Giant Spore, a blue-purple sphere plant originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "hydnum_azure_giant_spore", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hypha Facia, a flat brown fungus originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "hypha_facia", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Imp Gall, a yellowish gall originating from Cyrodiil, is an ingredient that can be purchased from Khajiit caravans\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "imp_gall", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ironwood Fruit, a yellow circular fruit harvested from the Ironwood Trees found in Iron Tusk Cave, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "ironwood_fruit", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kagouti Hide, a thick brown hide originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "kagouti_hide", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kresh Fiber, long brown roots originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "kresh_fiber", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lichor, a yellow substance originating from Mankar Camoran's destroyed realm of Oblivion, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "lichor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Luminous Russula, a dark brown fungus originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "luminous_russula", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Marshmerrow, green thin plants originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "marshmerrow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Minotaur Horn, a large horn originating from Cyrodiil, is an ingredient that can be purchased from Khajiit caravans.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "minotaur_horn", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mort Flesh, rotting human flesh originating from Cyrodiil, is an ingredient that can be purchased from Khajiit caravans. You are bewildered why they would see this in Skyrim.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "mort_flesh", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ogre's Teeth, large teeth originating from Cyrodiil, is an ingredient that can be purchased from Khajiit caravans.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "orges_teeth", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Purple Butterfly Wing can be harvested by catching Purple Butterflies. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "purple_butterfly_wing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Red Kelp Gas Bladder, a red gas bladder originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "red_kelp_gas_bladder", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Redwort Flower, originating from Cyrodiil, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "redwort_flower", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Roobrush, originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "roobrush", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rot Scale, a greenish substance originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "rot_scale", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Saltrice, a thin plant originating from Morrowind, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "saltrice", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scalon Fin, a large grey fish fin originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "scalon_fin", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Screaming Maw, a strange fleshy object originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "screaming_maw", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scrib Jelly, a red jelly originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "scrib_jelly", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Scrib Jerky, a thin red jerky originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "scrib_jerky", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sload Soap, a grey soap popular in Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "sload_soap", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Spiddal Stick, a long yellow plant harvested from the Deadlands, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "spiddal_stick", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel-Blue Entoloma, a blue fungus originating from Cyrodiil, is an ingredient that can be purchased from Khajiit caravans.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "steel_blue_entoloma", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stoneflower Petals, a light purple flower originating from Vvardenfell, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "stoneflower_petals", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Thorn Hook, a hard grey plant extract originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "thorn_hook", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Void Essence, a light red crystal originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "void_essence", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Watcher's Eye, a yellow-brown plant originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "watchers_eye", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wild Grass Pods are harvested from Wild Spiky Grass plants near Runoff Caverns. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "wild_grass_Pod", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wisp Stalk Caps, originating from Cyrodiil, is an ingredient that can be purchased from Khajiit caravans.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "wisp_stalk_caps", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Withering Moon, a green substance originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. \nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "withering_moon", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Worm's Head Cap, a purple mushroom head originating from the Shivering Isles, is an ingredient that can be purchased from Khajiit caravans. Alchemy effects: Fortify Lockpicking, Night Eye, Fortify Carry Weight, and Slow.\nYou do not know the alchemical effects of this ingredient. However, an alchemist might.", + "display_name": "worm_head_cap", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Alteration enhances the duration of alteration spells. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_alteration", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Haggling improves your ability to negotiate better deals. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_haggling", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of the Defender reinforces defensive techniques, helping to block attacks more effectively. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_the_defender", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Strength helps you carry heavier loads with ease. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_strength", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Conjurer's Potion extends the duration of summoned allies or bound weapons. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "conjurers_potion", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Destruction amplifies destruction magic, making elemental spells hit harder. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_destruction", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Enchanter's Potion enhances the strength of crafted enchantments. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "enchanters_potion", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of the Knight boosts heavy armor skills, improving resilience in combat. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_the_knight", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Illusion makes manipulation spells like fear and calm more effective. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_illusion", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Skirmisher's Potion enhances light armor skills, boosting agility and defense. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "skirmishers_potion", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Lockpicking makes opening locks easier for a short time. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_lockpicking", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of True Shot increases bow damage, making archers more deadly. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_true_shot", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of the Warrior boosts one-handed weapon damage, enhancing strikes. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_the_warrior", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Glibness improves persuasion, making speechcraft more effective. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_glibness", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Pickpocketing improves the chances of successfully stealing from others. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_pickpocketing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of the Healer enhances restoration magic, improving healing and protection spells. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_the_healer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Blacksmith's Potion enhances smithing skills, improving weapon and armor upgrades. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "blacksmiths_potion", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Light Feet helps sneaks move more quietly and avoid detection. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_light_feet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of the Berserker boosts the strength of two-handed weapon strikes. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_the_berserker", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Brief Invisibility allows the user to disappear for a short time. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_brief_invisibility", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Regeneration accelerates natural healing, restoring health over time. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_regeneration", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Lasting Potency boosts magicka regeneration, sustaining spellcasting for longer. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_lasting_potency", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Vigor accelerates stamina recovery, helping during extended efforts. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_vigor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Resist Fire reduces damage from flames and fire-based attacks. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_resist_fire", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Resist Cold diminishes the effects of frost magic and freezing conditions. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_resist_cold", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Resist Magic shields against damage from hostile spells. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_resist_magic", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Resist Shock reduces damage from lightning-based attacks. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_resist_shock", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Minor Healing restores a small amount of health for minor wounds. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_minor_healing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Healing restores a moderate amount of health, ideal for common injuries. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_healing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Plentiful Healing restores a significant amount of health for tougher battles. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_plentiful_healing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Vigorous Healing restores a substantial amount of health for critical wounds. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_vigorous_healing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Extreme Healing restores an extreme amount of health for dire situations. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_extreme_healing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Ultimate Healing fully restores health, a lifesaver in the most dangerous moments. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_ultimate_healing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Minor Magicka restores a small amount of magicka for minor spellcasting. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_minor_magicka", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Magicka replenishes a moderate amount of magicka for sustained spellcasting. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_magicka", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Plentiful Magicka restores a significant amount of magicka for longer magical battles. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_plentiful_magicka", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Vigorous Magicka restores a substantial amount of magicka for intense magical encounters. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_vigorous_magicka", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Extreme Magicka restores an extreme amount of magicka for taxing magical feats. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_extreme_magicka", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Ultimate Magicka fully restores magicka, invaluable for life-or-death spells. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_ultimate_magicka", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Minor Stamina restores a small amount of stamina for light exertions. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_minor_stamina", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Stamina replenishes a moderate amount of stamina for prolonged activity. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_stamina", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Plentiful Stamina restores a significant amount of stamina for enduring challenges. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_plentiful_stamina", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Vigorous Stamina restores a substantial amount of stamina for demanding efforts. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_vigorous_stamina", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Extreme Stamina restores an extreme amount of stamina for grueling exertions. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_extreme_stamina", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Ultimate Stamina fully restores stamina, essential for overcoming exhaustive challenges. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_ultimate_stamina", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Potion of Waterbreathing allows the user to breathe underwater temporarily. You do not know the full effects or details of this potion. However, an alchemist might.", + "display_name": "potion_of_waterbreathing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know nothing about these potions or their origins, but you have heard the name in connection with residence of Solstheim.", + "display_name": "potion_of_well_being", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know nothing about this potion or its origin but an alchemist might know more.", + "display_name": "potion_of_waterwalking", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You don't know anything about this, but it sounds like something the Thieves Guild might find useful by the sound of it.", + "display_name": "potion_of_plunder", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You don't know anything about this, but it sounds like something the Thieves Guild might find useful by the sound of it.", + "display_name": "potion_of_conflict", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You don't know anything about this, but it sounds like something the Thieves Guild might find useful by the sound of it.", + "display_name": "potion_of_larceny", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You don't know anything about this, but it sounds like something the Thieves Guild might find useful by the sound of it.", + "display_name": "potion_of_keenshot", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You don't know anything about this, but it sounds like something the Thieves Guild might find useful by the sound of it.", + "display_name": "potion_of_escape", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You don't know much about this potion's origins or availability.", + "display_name": "cure_poison", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know this potion cures disease but little else about its sourcing or details.", + "display_name": "potion_of_cure_disease", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You don't know much about these potions, but they seem to enhance vitality temporarily.", + "display_name": "potion_of_health", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know these potions enhance magicka reserves, but you don't know much about their crafting or origins.", + "display_name": "potion_of_extra_magicka", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know these potions improve stamina temporarily but little else about their origin or crafting.", + "display_name": "potion_of_enhanced_stamina", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have no knowledge of this potion or its purpose.", + "display_name": "disguised_invisibility_potion", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have heard of potions that protect against magic, but nothing about this specific elixir. Maybe an alchemist might though.", + "display_name": "elixir_of_resist_magic", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have only heard rumors of this potion supposedly granting any wish one desires. It is supposedly sold by a persuasive merchant, 'Brynjolf' if you remember correctly, in Riften.", + "display_name": "falmer_blood_elixir", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know it is tied to Ice Wraiths but have no details on it. Maybe an alchemist or a scholar might though.", + "display_name": "ice_wraith_essence", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know nothing about this potion or its effects. Maybe an alchemist might though.", + "display_name": "philter_of_the_phantom", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know little about this potion other than its connection to vampires judging by the name.", + "display_name": "potion_of_blood", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have heard that it is related to vampires but know nothing more.", + "display_name": "soul_husk_extract", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You assume it must be endurance-enhancing by the name but know nothing else about its origins. You have heard it most often in association with Markarth.", + "display_name": "stallions_potion", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have no knowledge of this potion or its effects. You guess that's why it's called 'unknown'.", + "display_name": "unknown_potion", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know nothing about this potion or its unique effects. The name itself is ominous and suggests terrible things.", + "display_name": "vaerminas_torpor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know of the White Phial as a legendary artifact of incredible alchemical power, but its specifics remain a mystery. You've heard a high elf, Nurelion, who runs an alchemy shop by the same name in Windhelm, might know something about it.", + "display_name": "white_phial", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This poison causes harm to the target's health over time. You do not know the full effects or details of this poison. However, an alchemist might.", + "display_name": "poison", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This poison drains magicka, hindering a mage's ability to cast spells. You do not know the full effects or details of this poison. However, an alchemist might.", + "display_name": "magicka_poison", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This poison drains stamina, reducing the effectiveness of melee attacks. You do not know the full effects or details of this poison. However, an alchemist might.", + "display_name": "stamina_poison", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This poison causes fear in enemies, making them flee temporarily. You do not know the full effects or details of this poison. However, an alchemist might.", + "display_name": "fear_poison", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This poison causes frenzy, making enemies attack randomly. You do not know the full effects or details of this poison. However, an alchemist might.", + "display_name": "frenzy_poison", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This poison paralyzes enemies, incapacitating them briefly. You do not know the full effects or details of this poison. However, an alchemist might.", + "display_name": "paralysis_poison", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This poison increases a target's vulnerability to fire. You do not know the full effects or details of this poison. However, an alchemist might.", + "display_name": "aversion_to_fire", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This poison increases a target's vulnerability to frost. You do not know the full effects or details of this poison. However, an alchemist might.", + "display_name": "aversion_to_frost", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This poison increases a target's vulnerability to all forms of magic. You do not know the full effects or details of this poison. However, an alchemist might.", + "display_name": "aversion_to_magic", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This poison increases a target's vulnerability to shock. You do not know the full effects or details of this poison. However, an alchemist might.", + "display_name": "aversion_to_shock", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know that these poisons disrupt magicka regeneration, but their crafting and full effects remain a mystery.", + "display_name": "recovery_poison", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know these poisons sap stamina, but details about their creation or uses are unclear.", + "display_name": "vigor_poison", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know these poisons are used to deliver prolonged harm, but you lack specifics about their origins.", + "display_name": "lingering_poison", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know these poisons sap magicka over time, but their creation and sources remain obscure.", + "display_name": "lingering_magicka_poison", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know these poisons sap stamina over time, but their crafting and potency are unclear.", + "display_name": "lingering_stamina_poison", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know that this venom is associated with Frostbite Spiders and may weaken those it infects, but you lack specific details.", + "display_name": "frostbite_venom", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know this poison is meant to combat Ice Wraiths and is tied to the Stormcloak cause, but its details remain unclear.", + "display_name": "ice_wraith_bane", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have heard of this extract being used in the art of assassination, but its origins and potency are largely unknown.", + "display_name": "lotus_extract", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know little of this venom beyond its association with the mystical creatures of the Shivering Isles.", + "display_name": "mystic_venom", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know this extract is associated with the poisonous nightshade plant and is occasionally linked to underhanded dealings in Windhelm.", + "display_name": "nightshade_extract", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have only heard vague references to Argonian Ale but know nothing specific about it.", + "display_name": "argonian_ale", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have heard whispers of Balmora Blue but know nothing specific about its effects or origins.", + "display_name": "balmora_blue", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have heard of a special wine served at The Bee and Barb but know little about its ingredients or flavor.", + "display_name": "cliff_racer", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have heard of Cyrodilic Brandy but know little about its cultural significance.", + "display_name": "cyrodilic_brandy", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have heard of potent skooma varieties but know nothing specific about this one.", + "display_name": "double_distilled_skooma", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know nothing about this potion or its purpose.", + "display_name": "esberns_potion", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know nothing about this and suspect it may be an invention of a bard’s tale.", + "display_name": "holy_water", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You have heard of Redwater Skooma as a rare and dangerous substance but know no details about its creation.", + "display_name": "redwater_skooma", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know it is a narcotic substance often associated with moon sugar but lack detailed knowledge.", + "display_name": "skooma", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know nothing about this.", + "display_name": "sleeping_tree_sap", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know nothing about this rum or its origins.", + "display_name": "stros_m-kai_rum", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know nothing about this wine beyond hearing its name in passing.", + "display_name": "velvet_lechance", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You know nothing about this wine beyond hearing its name in passing.", + "display_name": "white_gold_tower_wine", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + } + ], + "entry_count": 586, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Items", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/Oghma_-_Locations_-_Eastmarch.sknpack b/oghma-sknpack/Oghma_-_Locations_-_Eastmarch.sknpack new file mode 100644 index 0000000..0b32c1f --- /dev/null +++ b/oghma-sknpack/Oghma_-_Locations_-_Eastmarch.sknpack @@ -0,0 +1,1356 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Tamrielic lore from CHIM's Oghma Infinium — locations eastmarch. Merges educated and common-knowledge entries graded by importance.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "Eastmarch is a hold in eastern Skyrim, with its capital in Windhelm, located in the northeastern corner of the province. It is bordered by Winterhold to the northwest, the Pale and Whiterun Hold to the west, the Throat of the World to the southwest, and the Rift to the south. The eastern border connects to Morrowind via the Velothi Mountain passes, making Eastmarch an important gateway for trade and migration. Since the Red Year, the hold has seen an increased presence of Dunmer, especially in Windhelm.\n\nThe hold is home to Jarl Ulfric Stormcloak, leader of the Stormcloak rebellion. Eastmarch's diverse landscape includes sulfur pools and rocky crags in the central and southern regions, bordered by the Velothi Mountains, while the northern parts feature snowy tundra and icy terrain. The Darkwater and White Rivers carve through the hold, converging at Windhelm before flowing into the Sea of Ghosts.\n\nFlora and fauna in Eastmarch reflect its varied geography. The sulfur pools are home to creatures like giants, sabre cats, and Jazbay grapes, while the snowy regions feature frost trolls, snowy sabre cats, and snowberry bushes. Pine forests and shrublands surrounding the pools host thistle, mountain flowers, and mora tapinella. Key roads form a north-south loop skirting the sulfur pools, with branches leading to the Rift, Whiterun, and beyond. Eastmarch's harsh beauty, rich resources, and strategic position make it a vital and contested region in Skyrim.", + "display_name": "eastmarch", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Windhelm is a major city in northeastern Skyrim, located near the Dunmeth Pass to Morrowind and serving as the capital of Eastmarch. Situated near the northern coast, the city experiences extreme cold and frequent blizzards. Windhelm is ruled by Jarl Ulfric Stormcloak, the leader of the Stormcloak Rebellion, who resides in the Palace of the Kings. Known for its open defiance of the Imperial ban on Talos worship, Windhelm features a prominent Temple of Talos. However, the city is also infamous for its anti-foreigner sentiment, particularly toward its sizable population of Dark Elves, who live in the cramped Gray Quarter, and Argonians, who are confined to the docks outside the city walls.\n\nThe city's layout reflects its rich history. The Stone Quarter houses the marketplace, where traders like Aval Atheron and Niranye run stalls selling goods. Valunstrad, or \"Avenue of Valor,\" contains the oldest parts of Windhelm, including the palace and notable residences like Hjerim. Candlehearth Hall serves as a hub for travelers, providing food, drink, and lodging. Windhelm's proximity to Morrowind has made it a refuge for Dunmer displaced by the eruption of Red Mountain, though they face suspicion and neglect from the local Nords. Despite this, figures like Brunwulf Free-Winter advocate for the rights of the Dunmer and Argonians, challenging the city's entrenched prejudices.", + "display_name": "windhelm", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Palace of the Kings is a grand castle located at the far end of the Valunstrad district in Windhelm, serving as the residence of Jarl Ulfric Stormcloak and the headquarters of the Stormcloak movement. The palace is a symbol of the city's ancient history, as Windhelm was one of the first human settlements in Tamriel and the capital of Ysgramor's first empire. It remains one of the last surviving structures from that era.", + "display_name": "palace_of_the_kings", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Windhelm Stables is located just outside the city of Windhelm in Eastmarch. Accessible by two flights of stairs—one from the stony path leading to the city and another from the nearby carriage stop—the stables feature a small, stony yard in front of the stable house.", + "display_name": "windhelm_stables", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kynesgrove is a small settlement located south of Windhelm and west of Narzulbur in Eastmarch. Originally intended as a lumber mill by Ganna and Gemma Uriel, the settlement shifted to mining malachite after the grove's trees were found to be sacred to Kyne. The Uriels now work in Steamscorch Mine, often arguing about their lost life in Cyrodiil. Kjeld manages the settlement and buys malachite ore, while Dravynea the Stoneweaver ensures the mine's safety using potions crafted from frost salts. The Braidwood Inn, run by Iddra, serves as the central gathering spot for residents and travelers.\n\nThe settlement consists of the Braidwood Inn, Steamscorch Mine, and a miner's camp. There is also a dragon mound to the east of it.", + "display_name": "kynesgrove", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Brandy-Mug Farm is a modest wheat farm located a short distance east of Windhelm Stables in Eastmarch. The farmhouse is a simple single-room dwelling and serves as the home of Bolfrida Brandy-Mug. The farm consists of two zones: the exterior, where wheat is cultivated, and the cozy interior of the farmhouse.", + "display_name": "brandy-mug_farm", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hlaalu Farm is a small agricultural property located east of Windhelm, northeast of Windhelm Stables, and west of Hollyfrost Farm in Eastmarch. Owned by Belyn Hlaalu, a Dunmer who resides in Windhelm, the farm is managed and worked by Adisla, a Nord woman who lives in the single-room farmhouse on the property.", + "display_name": "hlaalu_farm", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hollyfrost Farm is a large agricultural property located east of Windhelm, east of Hlaalu Farm, and northeast of Windhelm Stables in Eastmarch. The farm is owned by Torsten Cruel-Sea but is primarily worked by Tulvur, who resides on the property along with his two loyal dogs, Tiber and Ysgramor.", + "display_name": "hollyfrost_farm", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mixwater Mill is a modest lumber mill located along the White River in Eastmarch, southwest of Windhelm and southeast of Gallows Rock. The mill is owned and operated by Gilfre, who has lived and worked there alone since her five employees left to join the ongoing civil war.", + "display_name": "mixwater_mill", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Darkwater Crossing is a small mining settlement located south of Windhelm and west of Mistwatch in Eastmarch. Established by Annekke Crag-Jumper and her husband Verner Rock-Chucker, the settlement grew around Goldenrock Mine, which they founded after discovering a vein of corundum ore. The couple built a modest house, planted crops, and raised livestock, creating a home that has since attracted additional miners who camp near the mine's entrance. However, concerns about the mine's dwindling ore supply weigh heavily on the residents.", + "display_name": "darkwater_crossing", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Gloombound Mine is a small but productive ebony and iron mine located within the Orc stronghold of Narzulbur in Eastmarch. Owned and operated by the Orcs of Narzulbur, the mine also employs workers from the Orc stronghold of Largashbur to support its operations.", + "display_name": "gloombound_mine", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Narzulbur is an Orc stronghold located in the northeast of Skyrim, southeast of Windhelm. The stronghold is led by a sentimental chief with no wives and serves as the home of an Orc tribe that operates the nearby Gloombound Mine. The mine is a rich resource, containing sixteen ebony ore veins and six iron ore veins, making Narzulbur a significant contributor to Skyrim's supply of ebony.", + "display_name": "narzulbur", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Broken Limb Camp is a giant camp located north-northwest of Darkwater Crossing and south of Mixwater Mill in Eastmarch. The camp serves as a home for giants and their mammoths, featuring the typical large bonfires and scattered mammoth bones associated with such locations.", + "display_name": "broken_limb_camp", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cradlecrush Rock is a giant camp located southwest of Windhelm and east-southeast of Darkshade in Eastmarch. Situated near the White River, the camp can be reached by following the road east from Valtheim Towers and crossing a ford marked by an iron ore vein. The path leads up to the camp, which is typical of giant settlements, featuring a large bonfire, mammoth bones, and an enormous wheel of cheese.", + "display_name": "cradlecrush_rock", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Eastmarch Imperial Camp is an Imperial military outpost located in Eastmarch, southeast of Mzulft and north of Stony Creek Cave. The camp serves as a strategic base for the Imperial Legion's operations in the region during the Skyrim Civil War.\n\nIt is commanded by Legate Hrollod.", + "display_name": "eastmarch_imperial_camp", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steamcrag Camp is a giant camp located south of Windhelm and east of Bonestrewn Crest in Eastmarch. The camp is a typical giant settlement, featuring a large bonfire, mammoth bones, and other signs of giant activity. Surrounded by the sulfurous pools characteristic of the region, it is a notable landmark in Eastmarch's volcanic landscape.", + "display_name": "steamcrag_camp", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Riverside Shack is a small, derelict shack located along the eastern bank of the White River, east of Gallows Rock and west-southwest of Kynesgrove in Eastmarch. The shack is in a state of disrepair, with holes in its roof and walls, and is missing a front door and windows.", + "display_name": "riverside_shack", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Traitor's Post is a crumbling shack and bandit outpost located east of Windhelm and north of the Sacellum of Boethiah in Eastmarch. It is easily found by following the road northeast from Windhelm toward the Morrowind border. After passing the three farms on the right, the shack appears as the next building on the left, shortly after the road curves eastward.", + "display_name": "traitor's_post", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Witchmist Grove is a small, eerie grove located north of Bonestrewn Crest and south of Kynesgrove in Eastmarch. The grove is most easily reached by traveling to Kynesgrove and heading directly south.\n\nAt its center lies a doorless shack surrounded by sharpened stakes. It is rumoured that hagravens occupy the area.", + "display_name": "witchmist_grove", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Abandoned Prison is a small, desolate Imperial prison located southwest of Windhelm and north-northwest of Fort Amol in Eastmarch. The prison, long out of use, is haunted by the ghosts of prisoners who met their end by drowning when the facility flooded.", + "display_name": "abandoned_prison", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Amol is a medium-sized fort located southwest of Windhelm and northwest of Darkwater Crossing in Eastmarch. Positioned near the White River, its walls are easily visible from the riverbank, with a small stone cairn marking the path to its entrance. It is rumoured that dangerous mages have occupied the fort.", + "display_name": "fort_amol", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Gallows Rock is a small fort located southwest of Windhelm and northeast of Cradlecrush Rock in Eastmarch. It is rumoured that the Silver Hand, and their leader occupies the area.", + "display_name": "gallows_rock", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mistwatch is a medium-sized fort located east of Darkwater Crossing and northwest of Northwind Mine in Eastmarch. It is occupied by the Mistwatch Bandits.\n\nThe fort can be reached by traveling southeast from Fort Amol along the road. After crossing the bridge over the waterfalls south of Darkwater Crossing, the road ascends to the east. A path branching north, marked by an iron ore vein to the left, leads to the fort's courtyard.", + "display_name": "mistwatch", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Morvunskar is a small fort located southwest of Windhelm and north of Riverside Shack in Eastmarch. It is rumoured to be occupied by dangerous warlocks.\n\nStrategically positioned on a hill, the fort offers a commanding view of the surrounding area, including Windhelm to the northeast, Kynesgrove to the southeast, and several main roads visible from its towers.", + "display_name": "morvunskar", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Refugees' Rest is a small, ruined tower located east of Windhelm and northeast of the Sacellum of Boethiah in Eastmarch. It lies along the road to the Morrowind border, past Brandy-Mug Farm, Hlaalu Farm, and Hollyfrost Farm, and serves as the last structure before the border is reached.\n\nThe tower was once a vital gathering place for refugees fleeing Morrowind after the Red Year, offering shelter and hope to the displaced. Over time, neglect and abandonment have caused the structure to deteriorate, with its foundation collapsing and the tower sinking into the ground.", + "display_name": "refugees'_rest", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ansilvund is a medium-sized Nordic ruin located north of Riften and east of Cragslane Cavern in Eastmarch. The ruins were originally constructed as a tomb by Holgeir in memory of Fjori, a tragic love story detailed in the book Of Fjori and Holgeir. It is rumoured to be occupied by dangerous necromancers and draugr.", + "display_name": "ansilvund", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skuldafn is a vast Nordic ruin located in Eastmarch, notable for containing a portal to Sovngarde. Guarded by powerful draugr, dragons, and the formidable dragon priest Nahkriin, it is a site of immense historical and mythical significance.", + "display_name": "skuldafn", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Yngol Barrow is a small Nordic ruin located northeast of Windhelm and northwest of Refugees' Rest, in the region of Winterhold. Situated on the south bank of the White River, the barrow is marked by a set of standing stones near its entrance. A short flight of stone steps ascends from the riverbank, leading through a squared archway to a statue that signals the approach to this ancient site. Not much is known about Yngol however.", + "display_name": "yngol_barrow", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kagrenzel is a small Dwarven ruin located southeast of Windhelm and east-northeast of Ansilvund in Eastmarch. It is a difficult and isolated location so travelers should be careful.", + "display_name": "kagrenzel", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mzulft is a large Dwarven ruin located south-southeast of Windhelm and north-northwest of Stony Creek Cave in Eastmarch. There are rumours of imperial mages entering the ruins recently.", + "display_name": "mzulft", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Sacellum of Boethiah is a shrine dedicated to the Daedric Prince Boethiah, located in the mountains east-southeast of Windhelm and south of Traitor's Post in Eastmarch. There are rumours of dangerous dark rituals taking place here.", + "display_name": "sacellum_of_boethiah", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cragslane Cavern is a small cave located north of Shor's Stone and west of Ansilvund in Eastmarch. It is situated just off the road between Riften and Windhelm, making it accessible to travelers in the region. The cavern is occupied by bandits and pit wolves and serves as a base for illicit skooma operations and brutal animal blood sports.", + "display_name": "cragslane_cavern", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cragwallow Slope is a medium-sized cave located southeast of Windhelm and south of Narzulbur in Eastmarch. There are rumours that conjuers have taken over the cage.", + "display_name": "cragwallow_slope", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cronvangr Cave is a medium-sized cave located southwest of Kynesgrove and east of Mixwater Mill in the sulfurous pools of central Eastmarch. It is rumoured that vampires live in this cave.", + "display_name": "cronvangr_cave", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Eldergleam Sanctuary is a serene underground grove located south-southwest of Windhelm and east of Fort Amol in Eastmarch. Nestled among the sulfurous pools and hot springs of the region, it serves as a sacred site for the followers of Kynareth. At its heart stands the Eldergleam tree, an ancient and mystical giant said to move its roots for only the dagger Nettlebane.", + "display_name": "eldergleam_sanctuary", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lost Knife Hideout is a medium-sized cave located northeast of Ivarstead and southwest of Fort Amol in Eastmarch. It is rumoured that bandits live in this hideout.", + "display_name": "lost_knife_hideout", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Snapleg Cave is a medium-sized cave located northwest of Rift Watchtower and south-southeast of Darkwater Pass in Eastmarch. The cave is rumoured to be inhabited by hags and various creatures, making it a treacherous location for unwary travelers.", + "display_name": "snapleg_cave", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stony Creek Cave is a small cave located southeast of Windhelm and north of Ansilvund in Eastmarch. The cave is rumoured to be occupied by bandits.", + "display_name": "stony_creek_cave", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Uttering Hills Cave is a small cave located southwest of Windhelm and east of Raldbthar in Eastmarch. It is rumoured to be occupied by bandits.", + "display_name": "uttering_hills_cave", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bonestrewn Crest is a mountaintop dragon lair located south of Windhelm and west of Steamcrag Camp in Eastmarch. The site is aptly named for the abundance of mammoth bones scattered across the area, lending it an eerie and foreboding atmosphere. A blueish mist hangs over the lair, and numerous dragon's tongue plants grow in its vicinity.\n\nAdventurers can access the crest by ascending a slope on the south side, leading to the word wall at the top of the hill.", + "display_name": "bonestrewn_crest", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Atronach Stone is one of the thirteen Standing Stones found across Skyrim, located south of Bonestrewn Crest and east-northeast of Darkwater Crossing in the southernmost part of Eastmarch's hot springs. The stone is positioned atop a mound surrounded by roiling volcanic pools, with other angular stones jutting around it, creating a striking and mystical setting.\n\nActivating the Atronach Stone grants a passive power that increases magicka by a decent amount and provides good spell absorption, but at the cost of a 50% reduction in magicka regeneration.", + "display_name": "the_atronach_stone", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mara's Eye Pond is a small, tranquil lake located due east of Gallows Rock in Eastmarch. At the center of the pond is a small island concealing a trapdoor that leads to Mara's Eye Den, which is rumoured to be a home to vampires. On the northern shore of the pond lies Gallows Hall, adding another point of interest to the area.", + "display_name": "mara's_eye_pond", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Aretino Residence is a house located on the eastern side of Windhelm, above the Gray Quarter. The building is distinctive, spanning over the road with its unique shape, making it easy to identify. Following the death of Naalia Aretino, her son Aventus was sent to Honorhall Orphanage in Riften. However, Aventus later escaped the orphanage and returned to the house, where he performed the Black Sacrament in hopes of summoning the Dark Brotherhood.", + "display_name": "aretino_residence", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Argonian Assemblage is a building located on the docks of Windhelm, serving as the residence for all the Argonian dockworkers who are prohibited from living within the city itself. Positioned west of the stairs leading up to Windhelm and east of the Shatter-Shield office, the assemblage reflects the segregation and harsh living conditions faced by the Argonian community.", + "display_name": "argonian_assemblage", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Atheron Residence is the home of the Atheron family, located in the lower Gray Quarter of Windhelm, directly across the street from the New Gnisis Cornerclub. The residence is modest and consists of a single area.\n\nThe house is inhabited by Aval Atheron, a street vendor; Faryl Atheron, who works as a farm laborer; and their sister, Suvaris Atheron.", + "display_name": "atheron_residence", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Belyn Hlaalu's House is a modest dwelling located in the Gray Quarter of Windhelm, positioned as the first house on the left when entering the district from Candlehearth Hall.\n\nThe house is the residence of Belyn Hlaalu, the owner of Hlaalu Farm, who lives there alone.", + "display_name": "belyn_hlaalu's_house", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Brunwulf Free-Winter's House is a one-story home with a partial loft, located in Windhelm near the main entrance. Positioned next to the Aretino Residence and almost directly across from Calixto's House of Curiosities, it is easily recognizable.\n\nThe house belongs to Brunwulf Free-Winter, a Nord known for his progressive views and advocacy for equality among Windhelm's diverse inhabitants.", + "display_name": "brunwulf_free-winter's_house", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Calixto's House of Curiosities serves as both the home and museum of Calixto Corrium, showcasing an eclectic collection of oddities and curious artifacts.\n\nThe house is located on the east side of Windhelm, just before entering the Gray Quarter. Visitors can explore its single interior zone, where Calixto enthusiastically shares stories about his intriguing items.", + "display_name": "calixto's_house_of_curiosities", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Candlehearth Hall is a prominent tavern located in the heart of Windhelm. It has a rich history, with the building originally serving as the home of Vundheim, a great warrior from the early Fourth Era. Upon Vundheim's death in 4E 38, his son Deroct honored his memory by lighting a candle above the hearth, a tradition that continues to this day, giving the tavern its name.\n\nThe hall has become a popular gathering place for Windhelm's citizens, offering drinks, hearty meals, and performances from bards. Elda Early-Dawn is the tavern's owner, with Nils serving as the cook.", + "display_name": "candlehearth_hall", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Clan Shatter-Shield Office is a small but important establishment located on Windhelm's docks, nestled between the Argonian Assemblage and the East Empire Company regional office. It serves as the base of operations for Clan Shatter-Shield's shipping endeavors, overseeing the family's commercial ventures.\n\nThis office plays a key role in managing the family's business interests, particularly in trade and shipping, which are vital to Windhelm's economy.", + "display_name": "clan_shatter-shield_office", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Gray Quarter is a district in Windhelm, home to the city's sizable population of Dark Elves, or Dunmer, who sought refuge in Skyrim after the eruption of Red Mountain. Once known as the Snow Quarter, it is a cramped and impoverished area, where the Dunmer face suspicion and xenophobia from the Nords, who view them with disdain. Although they are not openly persecuted, the Dunmer live in difficult conditions, with little support from Jarl Ulfric Stormcloak, who largely ignores their plight.\n\nThe Gray Quarter reflects the tension between Windhelm's native Nords and the immigrant Dunmer, who are forced to live in this slum on the city's outskirts. Additionally, Argonians, who also reside in Windhelm, are prohibited from entering the city itself and are confined to the docks outside the city walls.", + "display_name": "gray_quarter", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Gray Quarter is a district in Windhelm, home to the city's sizable population of Dark Elves, or Dunmer, who sought refuge in Skyrim after the eruption of Red Mountain. Once known as the Snow Quarter, it is a cramped and impoverished area, where the Dunmer face suspicion and xenophobia from the Nords, who view them with disdain. Although they are not openly persecuted, the Dunmer live in difficult conditions, with little support from Jarl Ulfric Stormcloak, who largely ignores their plight.\n\nThe Gray Quarter reflects the tension between Windhelm's native Nords and the immigrant Dunmer, who are forced to live in this slum on the city's outskirts. Additionally, Argonians, who also reside in Windhelm, are prohibited from entering the city itself and are confined to the docks outside the city walls.", + "display_name": "grey_quarter", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hjerim is a house in Windhelm that can be purchased. Located in the Valunstrad district, its name, \"Home of Frost,\" is derived from the ancient Nordic language. The house was once owned by Friga Shatter-Shield, the daughter of Tova Shatter-Shield. After Friga's tragic death, the property was abandoned and later became available for purchase.", + "display_name": "hjerim", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The House of Clan Cruel-Sea is a large manor in Windhelm, serving as the residence of the Cruel-Sea family. Situated opposite Hjerim in the northwestern part of the city, the house reflects the family's prominence within the local community.", + "display_name": "house_of_clan_cruel-sea", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The House of Clan Shatter-Shield is a large residence on the western wall of Windhelm, located opposite Viola Giordano's House and next door to Hjerim, which was formerly owned by their daughter Friga Shatter-Shield. The house is home to Torbjorn Shatter-Shield, his wife Tova, and their daughter Nilsine. The family is in mourning over the tragic loss of Friga, who was murdered.", + "display_name": "house_of_clan_shatter-shield", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "New Gnisis Cornerclub is a tavern located in Windhelm's Gray Quarter, situated next to Sadri's Used Wares. The tavern is owned and operated by Ambarys Rendar, who tends the counter, with the help of his employee Malthyr Elenil, who is responsible for cleaning the taproom.", + "display_name": "new_gnisis_cornerclub", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Niranye's House is a large, single-story residence located in Windhelm, immediately to the east of the main city gates. The rear of the house is part of the city's surrounding walls. It features a small yard between the side entrance and Calixto's House of Curiosities.", + "display_name": "niranye's_house", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sadri's Used Wares is a general shop located in the Gray Quarter of Windhelm. Owned by Revyn Sadri, a Dunmer trader, the shop specializes in secondhand goods. Revyn also serves as a common trainer for Speech.", + "display_name": "sadri's_used_wares", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Temple of Talos in Windhelm, located just northwest of Candlehearth Hall, houses a shrine dedicated to Talos in front of a statue of the deity. The temple consists of a main room with a row of five wooden benches facing the statue. After the Empire signed the White-Gold Concordat with the Thalmor, outlawing the worship of Talos, this temple became the only formal one in Skyrim under the protection of Jarl Ulfric Stormcloak.\n\nThe temple is tended by two residents, Lortheim and Jora.", + "display_name": "temple_of_talos", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The White Phial is an alchemical shop located on the north side of Windhelm's market district. It is owned by Nurelion, who named the shop after the legendary artifact he has spent many years searching for. When Nurelion is unavailable, his assistant, Quintus Navale, handles the shop duties. The White Phial itself is a legendary item, crafted from the magically infused snow that fell on the Throat of the World. It is said to have the ability to replenish any fluid placed inside of it, adding to its mystique and Nurelion's obsession with finding it.", + "display_name": "the_white_phial", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Viola Giordano's House is a large, two-story Nordic-style residence located in Windhelm's Valunstrad district. It is positioned in one of the city's better neighborhoods, directly opposite the house of Clan Shatter-Shield and to the north of the graveyard and Hall of the Dead. Viola Giordano is the sole occupant of the house, though she is rarely seen there, spending little time in her home.", + "display_name": "viola_giordano's_house", + "emotion": "", + "importance": 0.75, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Eastmarch is a hold in northeastern Skyrim, with Windhelm as its capital. It borders Winterhold to the northwest, the Pale and Whiterun Hold to the west, the Throat of the World to the southwest, and the Rift to the south. Its eastern border connects to Morrowind, making it a key area for trade and migration, especially after the Red Year when the presence of Dunmer increased, particularly in Windhelm.\n\nThe landscape of Eastmarch is diverse, featuring sulfur pools, rocky crags, and snowy tundra. The region is home to Jarl Ulfric Stormcloak and is traversed by the Darkwater and White Rivers, which converge at Windhelm before flowing into the Sea of Ghosts. Eastmarch's wildlife includes giants, sabre cats, frost trolls, and snowberry bushes. The roads connect key areas, including the Rift and Whiterun, highlighting Eastmarch’s strategic importance in Skyrim.", + "display_name": "eastmarch", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Windhelm is a major city in northeastern Skyrim, serving as the capital of Eastmarch and located near the Dunmeth Pass to Morrowind. The city experiences extreme cold and frequent blizzards, and is ruled by Jarl Ulfric Stormcloak, leader of the Stormcloak Rebellion. Known for defying the Imperial ban on Talos worship, Windhelm houses a prominent Temple of Talos. However, the city has a history of anti-foreigner sentiment, with Dark Elves living in the cramped Gray Quarter and Argonians confined to the docks outside the city. You do not know who runs the shops or who lives in the area.", + "display_name": "windhelm", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Palace of the Kings is a grand castle located at the far end of the Valunstrad district in Windhelm. It serves as the residence of Jarl Ulfric Stormcloak and the headquarters of the Stormcloak movement. As a symbol of Windhelm's ancient history, the palace stands as one of the last surviving structures from Ysgramor's first empire, making it a significant reminder of the city's early role in Tamriel's history.", + "display_name": "palace_of_the_kings", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Windhelm Stables is located just outside the city of Windhelm in Eastmarch. You do not know who runs the stables.You do not know anything else about this area.", + "display_name": "windhelm_stables", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kynesgrove is a small settlement located south of Windhelm and west of Narzulbur in Eastmarch. Originally intended as a lumber mill by Ganna and Gemma Uriel, the settlement shifted to mining malachite after the grove's trees were found to be sacred to Kyne. You do not know anything else about this area.", + "display_name": "kynesgrove", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Brandy-Mug Farm is a modest wheat farm located a short distance east of Windhelm Stables in Eastmarch.You do not know anything else about this area.", + "display_name": "brandy-mug_farm", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hlaalu Farm is a small agricultural property located east of Windhelm. You do not know who runs the farm.You do not know anything else about this area.", + "display_name": "hlaalu_farm", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hollyfrost Farm is a large agricultural property located east of Windhelm. You do not know who runs the farm.You do not know anything else about this area.", + "display_name": "hollyfrost_farm", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mixwater Mill is a modest lumber mill located along the White River in Eastmarch. You do not know who runs the mill.You do not know anything else about this area.", + "display_name": "mixwater_mill", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Darkwater Crossing is a small mining settlement located south of Windhelm and west of Mistwatch in Eastmarch. You do not know who runs the mine.You do not know anything else about this area.", + "display_name": "darkwater_crossing", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "loombound Mine is a small but productive ebony and iron mine located within the Orc stronghold of Narzulbur in Eastmarch. You do not know about the orcs who work here.You do not know anything else about this area.", + "display_name": "gloombound_mine", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Narzulbur is an Orc stronghold located in the northeast of Skyrim, southeast of Windhelm in Eastmarch. You do not know about the orcs who live here.You do not know anything else about this area.", + "display_name": "narzulbur", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Broken Limb Camp is a giant camp located north-northwest of Darkwater Crossing in Eastmarch.You do not know anything else about this area.", + "display_name": "broken_limb_camp", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cradlecrush Rock is a giant camp located southwest of Windhelm in Eastmarch.You do not know anything else about this area.", + "display_name": "cradlecrush_rock", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Eastmarch Imperial Camp is an Imperial military outpost located in Eastmarch.You do not know anything else about this area.", + "display_name": "eastmarch_imperial_camp", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steamcrag Camp is a giant camp located south of Windhelm in Eastmarch.You do not know anything else about this area.", + "display_name": "steamcrag_camp", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "iverside Shack is a small, derelict shack located along the eastern bank of the White River in Eastmarch.You do not know anything else about this area.", + "display_name": "riverside_shack", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Traitor's Post is a crumbling shack and bandit outpost located east of Windhelm in Eastmarch.You do not know anything else about this area.", + "display_name": "traitor's_post", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Witchmist Grove is a small, eerie grove located north of Bonestrewn Crest in Eastmarch.You do not know anything else about this area.", + "display_name": "witchmist_grove", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Abandoned Prison is a small, desolate Imperial prison located southwest of Windhelm in Eastmarch.You do not know anything else about this area.", + "display_name": "abandoned_prison", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Amol is a medium-sized fort located southwest of Windhelm and northwest of Darkwater Crossing in Eastmarch.You do not know anything else about this area.", + "display_name": "fort_amol", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Gallows Rock is a small fort located southwest of Windhelm in Eastmarch.You do not know anything else about this area.", + "display_name": "gallows_rock", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mistwatch is a medium-sized fort located east of Darkwater Crossing in Eastmarch.You do not know anything else about this area.", + "display_name": "mistwatch", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Morvunskar is a small fort located southwest of Windhelm in Eastmarch.You do not know anything else about this area.", + "display_name": "morvunskar", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Refugees' Rest is a small, ruined tower located east of Windhelm in Eastmarch.You do not know anything else about this area.", + "display_name": "refugees'_rest", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ansilvund is a medium-sized Nordic ruin located north of Riften in Eastmarch.You do not know anything else about this area.", + "display_name": "ansilvund", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skuldafn is a vast Nordic ruin located in Eastmarch, notable for containing a portal to Sovngarde. It is umreachable by normal means.You do not know anything else about this area.", + "display_name": "skuldafn", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Yngol Barrow is a small Nordic ruin located northeast of Windhelm, in the region of Winterhold.You do not know anything else about this area.", + "display_name": "yngol_barrow", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kagrenzel is a small Dwarven ruin located southeast of Windhelm in Eastmarch.You do not know anything else about this area.", + "display_name": "kagrenzel", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mzulft is a large Dwarven ruin located south-southeast of Windhelm in Eastmarch.You do not know anything else about this area.", + "display_name": "mzulft", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Sacellum of Boethiah is a shrine dedicated to the Daedric Prince Boethiah, located in the mountains east-southeast of Windhelm in Eastmarch. You do not know anything else about this area.", + "display_name": "sacellum_of_boethiah", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cragslane Cavern is a small cave located north of Shor's Stone in Eastmarch.You do not know anything else about this area.", + "display_name": "cragslane_cavern", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cragwallow Slope is a medium-sized cave located southeast of Windhelm in Eastmarch.You do not know anything else about this area.", + "display_name": "cragwallow_slope", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cronvangr Cave is a medium-sized cave located southwest of Kynesgrove in the sulfurous pools of central Eastmarch.You do not know anything else about this area.", + "display_name": "cronvangr_cave", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "ldergleam Sanctuary is a serene underground grove located south-southwest of Windhelm and east of Fort Amol in EastmarchYou do not know anything else about this area.", + "display_name": "eldergleam_sanctuary", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lost Knife Hideout is a medium-sized cave located northeast of Ivarstead and southwest of Fort Amol in Eastmarch.You do not know anything else about this area.", + "display_name": "lost_knife_hideout", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Snapleg Cave is a medium-sized cave located northwest of Rift Watchtower and south-southeast of Darkwater Pass in Eastmarch. You do not know anything else about this area.", + "display_name": "snapleg_cave", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stony Creek Cave is a small cave located southeast of Windhelm in Eastmarch. You do not know anything else about this area.", + "display_name": "stony_creek_cave", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Uttering Hills Cave is a small cave located southwest of Windhelmin Eastmarch. You do not know anything else about this area.", + "display_name": "uttering_hills_cave", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bonestrewn Crest is a mountaintop dragon lair located south of Windhelm and west of Steamcrag Camp in Eastmarch.You do not know anything else about this area.", + "display_name": "bonestrewn_crest", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Atronach Stone is one of the thirteen Standing Stones found across Skyrim, located east-northeast of Darkwater Crossing in the southernmost part of Eastmarch's hot springs. You do not know anything else about this area.", + "display_name": "the_atronach_stone", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mara's Eye Pond is a small, tranquil lake located due east of Gallows Rock in Eastmarch.You do not know anything else about this area.", + "display_name": "mara's_eye_pond", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Aretino Residence is a house located on the eastern side of Windhelm, above the Gray Quarter. You do not know anything else about this area.", + "display_name": "aretino_residence", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Argonian Assemblage is a building located on the docks of Windhelm, serving as the residence for all the Argonian dockworkers who are prohibited from living within the city itself.You do not know anything else about this area.", + "display_name": "argonian_assemblage", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Atheron Residence is the home of the Atheron family, located in the lower Gray Quarter of Windhelm.You do not know anything else about this area.", + "display_name": "atheron_residence", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Belyn Hlaalu's House is a modest dwelling located in the Gray Quarter of Windhelm.You do not know anything else about this area.", + "display_name": "belyn_hlaalu's_house", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Brunwulf Free-Winter's House is a one-story home with a partial loft, located in Windhelm near the main entrance.You do not know anything else about this area.", + "display_name": "brunwulf_free-winter's_house", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Calixto's House of Curiosities serves as both the home and museum of Calixto Corrium, showcasing an eclectic collection of oddities and curious artifacts.You do not know anything else about this area.", + "display_name": "calixto's_house_of_curiosities", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Candlehearth Hall is a prominent tavern located in the heart of Windhelm.You do not know anything else about this area.", + "display_name": "candlehearth_hall", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Clan Shatter-Shield Office is a small but important establishment located on Windhelm's docks, nestled between the Argonian Assemblage and the East Empire Company regional office.You do not know anything else about this area.", + "display_name": "clan_shatter-shield_office", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Gray Quarter is a district in Windhelm, home to the city's sizable population of Dark Elves, or Dunmer, who sought refuge in Skyrim after the eruption of Red Mountain. Once known as the Snow Quarter, it is a cramped and impoverished area, where the Dunmer face suspicion and xenophobia from the Nords, who view them with disdainYou do not know anything else about this area.", + "display_name": "gray_quarter", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Gray Quarter is a district in Windhelm, home to the city's sizable population of Dark Elves, or Dunmer, who sought refuge in Skyrim after the eruption of Red Mountain. Once known as the Snow Quarter, it is a cramped and impoverished area, where the Dunmer face suspicion and xenophobia from the Nords, who view them with disdainYou do not know anything else about this area.", + "display_name": "grey_quarter", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hjerim is a house in Windhelm that can be purchased. You do not know anything else about this area.", + "display_name": "hjerim", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The House of Clan Cruel-Sea is a large manor in Windhelm, serving as the residence of the Cruel-Sea family. You do not know anything else about this area.", + "display_name": "house_of_clan_cruel-sea", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The House of Clan Shatter-Shield is a large residence on the western wall of Windhelm.You do not know anything else about this area.", + "display_name": "house_of_clan_shatter-shield", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "New Gnisis Cornerclub is a tavern located in Windhelm's Gray Quarter. You do not know who owns it.You do not know anything else about this area.", + "display_name": "new_gnisis_cornerclub", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Niranye's House is a large, single-story residence located in Windhelm.You do not know anything else about this area.", + "display_name": "niranye's_house", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sadri's Used Wares is a general shop located in the Gray Quarter of Windhelm. Owned by Revyn Sadri.You do not know anything else about this area.", + "display_name": "sadri's_used_wares", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Temple of Talos in Windhelm, located just northwest of Candlehearth Hall, houses a shrine dedicated to Talos in front of a statue of the deity. You do not know who runs the shrine.You do not know anything else about this area.", + "display_name": "temple_of_talos", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The White Phial is an alchemical shop located on the north side of Windhelm's market district. The White Phial itself is a legendary item, crafted from the magically infused snow that fell on the Throat of the World. You do not know anything else about this area.", + "display_name": "the_white_phial", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Viola Giordano's House is a large, two-story Nordic-style residence located in Windhelm's Valunstrad district.You do not know anything else about this area.", + "display_name": "viola_giordano's_house", + "emotion": "", + "importance": 0.4, + "location": "Eastmarch", + "tags": [], + "type": "LOCATION" + } + ], + "entry_count": 122, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Locations - Eastmarch", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/Oghma_-_Locations_-_Falkreath.sknpack b/oghma-sknpack/Oghma_-_Locations_-_Falkreath.sknpack new file mode 100644 index 0000000..99bc187 --- /dev/null +++ b/oghma-sknpack/Oghma_-_Locations_-_Falkreath.sknpack @@ -0,0 +1,1180 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Tamrielic lore from CHIM's Oghma Infinium — locations falkreath. Merges educated and common-knowledge entries graded by importance.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "Falkreath Hold is a location in southern Skyrim, bordered by Cyrodiil to the south across the Jerall Mountains and Hammerfell to the west. It is the second southernmost hold in Skyrim, after the Rift. Its capital, Falkreath, lies nestled amidst dense pine forests, while the hold’s only other notable town, Helgen, is infamous as the site of the first dragon attack in Skyrim.\n\nThe hold is renowned for its mist-shrouded landscapes, giving it a timeless and seasonless quality. Towering snow-capped mountains contrast sharply with the verdant forests below, and Lake Ilinalta dominates the central region, serving as the source of the White River. Falkreath also holds Skyrim’s largest cemetery, a reflection of its bloody history of battles, and this heritage influences the names of many local shops and farms.\n\nThe region’s flora includes abundant thistles, mora tapinella, and mountain flowers, while nightshade grows more commonly here than in other parts of Skyrim. Lake Ilinalta teems with fish, and snowberry bushes thrive in the snowy eastern areas. Under Jarl Siddgeir’s rule, Falkreath retains its Imperial allegiance, though its control can shift during Skyrim’s civil conflict.", + "display_name": "falkreath_hold", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Falkreath is a city in the south of Skyrim and serves as the capital of Falkreath Hold. Situated near the borders of Cyrodiil and Hammerfell, it was historically considered part of Cyrodiil but is now firmly within Skyrim's boundaries. Governed by Jarl Siddgeir, Falkreath is initially aligned with the Empire, though its allegiance may shift during Skyrim's civil war.\n\nThe city's economy thrives on lumber harvested from its expansive surrounding forests. Falkreath's most notable feature is its vast cemetery, the largest in Skyrim, which holds generations of the dead. This burial ground is a cultural cornerstone for its residents, influencing the names of many local businesses and homes. The cemetery symbolizes Falkreath's deep connection to its history and the legacy of its fallen.\n\nFalkreath Hold is a location in southern Skyrim, bordered by Cyrodiil to the south across the Jerall Mountains and Hammerfell to the west. It is the second southernmost hold in Skyrim, after the Rift. Its capital, Falkreath, lies nestled amidst dense pine forests, while the hold’s only other notable town, Helgen, is infamous as the site of the first dragon attack in Skyrim.", + "display_name": "falkreath", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Helgen is a small town in eastern Falkreath Hold, located north of Greywater Grotto and south of Riverwood. Heavily fortified with several towers and buildings, Helgen was largely under Imperial military control before the dragon attack leaving the town in ruins.", + "display_name": "helgen", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dark Brotherhood Sanctuary is a location west of Falkreath, nestled south of the Roadside Ruins in Falkreath Hold. Hidden beneath the road, it serves as an active base for the Dark Brotherhood and features a single zone known as the Dark Brotherhood Sanctuary.", + "display_name": "dark_brotherhood_sanctuary", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Half-Moon Mill is a location on the southwest shore of Lake Ilinalta in Falkreath Hold, situated west of The Lady Stone and east of Hunter's Rest. Accessible via the road leading north from Falkreath toward Rorikstead, it serves as a lumber mill supplying both Helgen and Falkreath.\n\nOperated by Hert and Hern, the mill consists of a wood mill and a butcher shack on the east side of a salmon-filled stream, with a wooden bridge connecting to their cabin on the west. There are rumors of people going missing around the mill.", + "display_name": "half-moon_mill", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bilegulch Mine is a location northwest of Falkreath in Falkreath Hold, situated south-southwest of Fort Sungard. It is a small orichalcum mine occupied by a group of Orc bandits and features a single zone.\n\nThe mine's camp is fortified with barricades and includes several Orc-style outbuildings.", + "display_name": "bilegulch_mine", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Knifepoint Ridge is a location northwest of Falkreath in Falkreath Hold, positioned southeast of Glenmoril Coven. It serves as a small bandit camp with an iron and corundum mine, known as Knifepoint Mine.", + "display_name": "knifepoint_mine", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Knifepoint Ridge is a location northwest of Falkreath in Falkreath Hold, positioned southeast of Glenmoril Coven. It serves as a small bandit camp with an iron and corundum mine, known as Knifepoint Mine.", + "display_name": "knifepoint_ridge", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Embershard Mine is a location southwest of Riverwood in Falkreath Hold, nestled north of Helgen. This small iron mine is occupied by bandits and consists of a single zone, Embershard Mine.", + "display_name": "embershard_mine", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Angi's Camp is a secluded cabin and camp located high in the mountains southeast of Falkreath in Falkreath Hold. The camp is home to Angi, a Nord ranger from Helgen, who lives in hiding after killing two drunken Imperial soldiers responsible for her parents' deaths.\n\nIt is known that Angi is willing to offer free Archery training for those brave enough to reach her.", + "display_name": "angi's_camp", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Falkreath Imperial Camp is a military encampment located east-northeast of Glenmoril Coven and north of Knifepoint Ridge in Falkreath Hold.", + "display_name": "falkreath_imperial_camp", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Falkreath Stormcloak Camp is a military encampment located east of Helgen in Falkreath Hold. It serves as a base for the Stormcloak forces in the region and is typically commanded by Thorygg Sun-Killer.", + "display_name": "falkreath_stormcloak_camp", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Secunda's Kiss is a giant camp located southwest of Whiterun in Falkreath Hold, nestled north of Bleak Falls Barrow. The camp serves as a home to giants and their mammoths, with its characteristic large bonfire and scattered mammoth bones marking its presence.", + "display_name": "secunda's_kiss", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Anise's Cabin is a small shack located west-southwest of Riverwood in Falkreath Hold, near the Guardian Stones to the south and Bleak Falls Barrow to the north. The cabin lies close to your escape route from Helgen, making it an early point of interest for travelers.\n\nThe sole occupant, Anise, is an elderly Nord woman who is rumored to be a witch.", + "display_name": "anise's_cabin", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hunter's Rest is a small shack located in the hills west of Half-Moon Mill, roughly midway between Falkreath and Rorikstead in Falkreath Hold. The shelter is near Moss Mother Cavern and serves as a home for hunters who poach game in the surrounding wilderness.", + "display_name": "hunter's_rest", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pinewatch is a small shack located northeast of Falkreath and west of Helgen in Falkreath Hold. While it appears unassuming from the outside, it conceals a secret underground cave system, known as the Pinewatch Bandit's Sanctuary, making it a hideout for bandits.", + "display_name": "pinewatch", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cracked Tusk Keep is a medium-sized fort located west of Falkreath in Falkreath Hold, positioned east-southeast of the Twilight Sepulcher. The fort is occupied by Orc bandits and hunters led by Ghunzul the Orc.", + "display_name": "cracked_tusk_keep", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Neugrad is a medium-sized fort located east of Falkreath and southeast of Helgen in Falkreath Hold. It is occupied by bandits", + "display_name": "fort_neugrad", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ilinalta's Deep is a medium-sized, partially submerged fort located north of the Lady Stone and south-southeast of Bloated Man's Grotto in Falkreath Hold. The fort is overrun by necromancers and skeletons.\n\nOnce a fully functional structure, the fort now lies in ruin, with its lower sections flooded by Lake Ilinalta.", + "display_name": "ilinalta's_deep", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bloodlet Throne is a small, secluded fort located southwest of Helgen and east-southeast of Angi's Camp in Falkreath Hold. The fort is overrun by vampires, wolves, gargoyles, and death hounds, and consists of a single zone, Bloodlet Throne.\n\nFinding the fort is challenging due to the crumbled and hidden paths leading to it. To reach it, follow the road east from Falkreath, passing markers and winding trails. Be cautious of bandit camps and patrolling enemies along the way. The path winds through mountainous terrain near Ancestor Glade, eventually leading to the eerie and dangerous Bloodlet Throne, a stronghold of dark forces and the undead.", + "display_name": "bloodlet_throne", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bannermist Tower is a small, ruined Nordic tower located northwest of Falkreath and south of Hunter's Rest in Falkreath Hold. The tower is occupied by bandits.", + "display_name": "bannermist_tower", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Peak's Shade Tower is a small, ruined Nordic tower located east of Falkreath and southwest of Pinewatch in Falkreath Hold.", + "display_name": "peak's_shade_tower", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Falkreath Watchtower is a small, ruined tower located north of Falkreath and northeast of Roadside Ruins in Falkreath Hold. It is rumoured to be inhabited by a lone necromancer and accessed via a dirt path branching south from the road along the southern shore of Lake Ilinalta, marked by a pile of rocks.", + "display_name": "falkreath_watchtower", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skybound Watch Pass is a small Nordic tower and ruin located northeast of Helgen and west of Orphan Rock in Falkreath Hold.", + "display_name": "south_skybound_watch", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bleak Falls Barrow is a medium-sized Nordic ruin located west of Riverwood and south of Secunda's Kiss in Falkreath Hold. This ancient structure is inhabited by draugr.\n\nIt is rumoured that a bandit party has taken residence in the barrow, looking for a valuable golden artifact of some kind.", + "display_name": "bleak_falls_barrow", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shriekwind Bastion is a small Nordic ruin located north of Falkreath and east of Falkreath Watchtower in Falkreath Hold. It is inhabitted by Draugrs and rumors of vampires recently taking residence.", + "display_name": "shriekwind_bastion", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Twilight Sepulcher is a sacred Nordic ruin located west of Falkreath and south of Knifepoint Ridge in Falkreath Hold. It is the final resting place of Nocturnal's Ebonmere portal and the Skeleton Key, accessible through the Pilgrim's Path.", + "display_name": "twilight_sepulcher", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Roadside Ruins is a small outdoor Nordic ruin located northwest of Falkreath in Falkreath Hold.", + "display_name": "roadside_ruins", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bonechill Passage is a small cave located east of Falkreath and southwest of Helgen in Falkreath Hold.", + "display_name": "bonechill_passage", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bloated Man's Grotto is a small, picturesque cave located north of Falkreath and south of Sleeping Tree Camp in Falkreath Hold. Known for its serene atmosphere and natural beauty. It is rumoured that hunters from around Skyrim are travling to this place for whatever reason. It is usally inhabited by animals and Spriggans.", + "display_name": "bloated_man's_grotto", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Brittleshin Pass is a small mountain passage connecting Whiterun Hold and Falkreath Hold, located southwest of Whiterun and west of Bleak Falls Barrow.", + "display_name": "brittleshin_pass", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glenmoril Coven is a small, foreboding cave located northwest of Falkreath and south of Bilegulch Mine in Falkreath Hold. The cave is home to hags or Glenmoril Witches and consists of a single zone, Glenmoril Cave.\n\nThe approach to the cave is ominous, with dead plant life and mutilated shrines lining the path that begins north of an unmarked ruined tower. As the path ascends through several switchbacks, travelers will encounter eerie hagraven symbols, bone totems, and severed heads mounted on stakes.", + "display_name": "glenmoril_coven", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Greywater Grotto is a small cave located far east of Falkreath and south-southwest of Helgen in Falkreath Hold. The cave is inhabited by predatory animals like bears and sabre cats.", + "display_name": "greywater_grotto", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Halldir's Cairn is a small cave located southwest of Falkreath and southeast of Cracked Tusk Keep in Falkreath Hold. The cave is inhabited by draugr and ghosts.", + "display_name": "halldir's_cairn", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Haemar's Shame is a medium-sized cave located east of Helgen and southwest of Ivarstead in Falkreath Hold. Nestled in a snowy mountain pass.\n\nThe entrance is marked by bloodstains on the ground, with unused barrels and an empty cart to the left, hinting at the danger within. It is rumored that vampiric daedra worshipers have taken haven in this cave.", + "display_name": "haemar's_shame", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Moss Mother Cavern is a small, open-roofed cavernous grove located northwest of Half-Moon Mill and due north of Hunter's Rest in Falkreath Hold. The cavern is teeming with lush flora and fungi, creating a serene yet deceptive atmosphere, as it is inhabited by bears and spriggans.\n\nThere are rumors of a missing hunting party that was last seen at this place.", + "display_name": "moss_mother_cavern", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sunderstone Gorge is a small cave located north-northwest of Falkreath and east of Bilegulch Mine in Falkreath Hold. It is rumored that warlocks have taken over the area.", + "display_name": "sunderstone_gorge", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Southfringe Sanctum is a small cave located southeast of Helgen and south of Fort Neugrad in Falkreath Hold. The cave is rumored to contain dangerous mages.", + "display_name": "southfringe_sanctum", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancient's Ascent is a mountaintop dragon lair located southwest of Helgen and north of Bloodlet Throne in Falkreath Hold.", + "display_name": "ancient's_ascent", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Lady Stone is one of the thirteen Standing Stones located in Skyrim, found on an island in the middle of Lake Ilinalta, directly north of Falkreath in Falkreath Hold.\n\nActivating The Lady Stone grants a minor boost to both health and stamina regeneration rates, making it a valuable boon for adventurers seeking improved survivability.", + "display_name": "the_lady_stone", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ancestor Glade is a small, serene glade located east-southeast of Falkreath and northwest of Bloodlet Throne in Falkreath Hold. Situated within a cavern, it consists of a single zone, Ancestor Glade, and is one of the few such locations in Tamriel, as well as the only one in Skyrim.\n\nThe glade is home to swarms of ancestor moths and the rare yellow mountain flowers.", + "display_name": "ancestor_glade", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Evergreen Grove is a serene grove of trees concealing a small pond, located just southwest of Half-Moon Mill and northwest of Falkreath in Falkreath Hold. The pond is fed by a rocky stream and surrounded by lush vegetation, making it a peaceful spot in the wilderness.\n\nThe grove features several ancient Nordic elements, including large, partially submerged upright stones and a stone altar, hinting at its historical significance. Evergreen Grove offers a tranquil retreat for adventurers exploring the western part of Falkreath Hold.", + "display_name": "evergreen_grove", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orphan Rock is a wooded valley featuring a central rock plateau, located northeast of Helgen and south of North Skybound Watch in Falkreath Hold. The area is inhabited by witches or hags led by a hagraven, making it a dangerous location for unwary travelers.\n\nThere are rumors of a powerful dagger, Nettlebane, being held at this location.", + "display_name": "orphan_rock", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lakeview Manor is a scenic property located north of Pinewatch in Falkreath Hold. It is rumored that the property is for sale. It is widely known that it is objectivly the best location to live in the entirety of Skyrim.", + "display_name": "lakeview_manor", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Corpselight Farm is a small farmstead located in the center of Falkreath, directly behind the inn Dead Man's Drink, in Falkreath Hold. It is run by Mathies and his wife, Indara Caerellia, who are grieving the recent loss of their daughter.\n\nTheir daughter was tragically killed by a passing farmhand named Sinding, who went berserk and tore her apart.", + "display_name": "corpselight_farm", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dead Man's Drink is an inn located near the center of Falkreath in Falkreath Hold, opposite Gray Pine Goods and adjacent to Corpselight Farm. Owned by Valga Vinicia, it serves as a hub for travelers and locals alike.\n\nThe inn features Narri as a waitress, often found outside leaning against the porch fence, and Delacourt as the resident bard, providing entertainment to patrons. With a warm, rustic atmosphere, Dead Man's Drink offers a single interior zone and is a welcoming stop for adventurers exploring the region.", + "display_name": "dead_man's_drink", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dengeir's House is the residence of Dengeir of Stuhn, the former Jarl and current Thane of Falkreath. It is located in the center of Falkreath, southwest of Corpselight Farm.", + "display_name": "dengeir's_house", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Falkreath Barracks serves as the living quarters for the Falkreath guards and houses the hold's jail. It is located on the edge of Falkreath, southeast of the Jarl's Longhouse and next door to Grave Concoctions.", + "display_name": "falkreath_barracks", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Grave Concoctions is an alchemy shop located in Falkreath, between Lod's House and Falkreath Barracks, opposite the Jarl's Longhouse. The store is run by Zaria, a Redguard immigrant with a passion for crafting poisons and other alchemical goods.\n\nThe shop's name pays homage to Falkreath's large cemetery, a tradition shared by many local businesses such as Corpselight Farm and Dead Man's Drink.", + "display_name": "grave_concoctions", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Gray Pine Goods is a small general goods store located near the center of Falkreath in Falkreath Hold. It is situated opposite Dead Man's Drink and adjacent to Lod's House.\n\nThe store is run by Solaf, with his brother Bolund also residing there. Gray Pine Goods provides a variety of essential items, making it a convenient stop for adventurers and townsfolk in need of supplies.", + "display_name": "gray_pine_goods", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Jarl's Longhouse is the seat of Falkreath's government and the residence of its jarl, located in the center of Falkreath in Falkreath Hold. It is positioned opposite Grave Concoctions to the east and Falkreath Barracks to the north.\n\nThe longhouse is home to Jarl Siddgeir, his steward Nenya, housecarl Helvard, and military advisor Legate Skulnar.", + "display_name": "jarl's_longhouse", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lod's House is the residence and workshop of Lod, the blacksmith of Falkreath. It is located near the center of Falkreath, adjacent to Grave Concoctions and close to Gray Pine Goods.. It is rumored hes been look for a dog outside the city.", + "display_name": "lod's_house", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lake Ilinalta occupies a broad basin in west-central Falkreath Hold and forms the principal source of the White River, the longest river in Skyrim. The lake lies within the thick pine forests of southern Skyrim, roughly between Falkreath and the former town of Helgen. Because of its size and central location, it serves as an important geographic landmark frequently referenced in travel guides and accounts of journeys through the province.\n\nThe waters of Ilinalta are also associated with a number of curious ruins and local legends. At one time an Imperial fort stood along its shore, but the entire structure reportedly sank into the lake in a single day. The flooded ruins are now known as Ilinalta’s Deep, and fishermen claim that the waters around it are cursed, with stories of travelers vanishing or strange events occurring nearby. Various other landmarks dot the lake and its shores, including the island bearing the Lady Stone and several submerged ruins and shipwrecks.", + "display_name": "lake_ilinalta", + "emotion": "", + "importance": 0.75, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Falkreath Hold is a location in southern Skyrim, bordered by Cyrodiil to the south across the Jerall Mountains and Hammerfell to the west. It is the second southernmost hold in Skyrim, after the Rift. Its capital, Falkreath, lies nestled amidst dense pine forests, while the hold’s only other notable town, Helgen, is infamous as the site of the first dragon attack in Skyrim.\n\nThe hold is renowned for its mist-shrouded landscapes, giving it a timeless and seasonless quality. Towering snow-capped mountains contrast sharply with the verdant forests below, and Lake Ilinalta dominates the central region, serving as the source of the White River. Falkreath also holds Skyrim’s largest cemetery, a reflection of its bloody history of battles, and this heritage influences the names of many local shops and farms.", + "display_name": "falkreath_hold", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Falkreath is a city in the south of Skyrim and serves as the capital of Falkreath Hold. Situated near the borders of Cyrodiil and Hammerfell, it was historically considered part of Cyrodiil but is now firmly within Skyrim's boundaries. Governed by Jarl Siddgeir, Falkreath is initially aligned with the Empire, though its allegiance may shift during Skyrim's civil war.\n\nThe city's economy thrives on lumber harvested from its expansive surrounding forests. Falkreath's most notable feature is its vast cemetery, the largest in Skyrim, which holds generations of the dead. This burial ground is a cultural cornerstone for its residents, influencing the names of many local businesses and homes. The cemetery symbolizes Falkreath's deep connection to its history and the legacy of its fallen.\n\nFalkreath Hold is a location in southern Skyrim, bordered by Cyrodiil to the south across the Jerall Mountains and Hammerfell to the west. It is the second southernmost hold in Skyrim, after the Rift. Its capital, Falkreath, lies nestled amidst dense pine forests, while the hold’s only other notable town, Helgen, is infamous as the site of the first dragon attack in Skyrim.", + "display_name": "falkreath", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Helgen is a small town in eastern Falkreath Hold, south of Riverwood. Helgen was largely under Imperial military control before the dragon attack leaving the town in ruins.You do not know anything else about this area.", + "display_name": "helgen", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dark Brotherhood Sanctuary is a located somwhere in Falkreath, but you do not know where exactly.You do not know anything else about this area.", + "display_name": "dark_brotherhood_sanctuary", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Half-Moon Mill is a location on the southwest shore of Lake Ilinalta in Falkreath Hold. You do not know who operates the mill.You do not know anything else about this area.", + "display_name": "half-moon_mill", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bilegulch Mine is a location northwest of Falkreath in Falkreath Hold. You do not know anything else about this area.", + "display_name": "bilegulch_mine", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Knifepoint Ridge is a location northwest of Falkreath in Falkreath Hold.You do not know anything else about this area.", + "display_name": "knifepoint_mine", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Knifepoint Ridge is a location northwest of Falkreath in Falkreath Hold.You do not know anything else about this area.", + "display_name": "knifepoint_ridge", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Embershard Mine is a location southwest of Riverwood in Falkreath Hold.You do not know anything else about this area.", + "display_name": "embershard_mine", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Angi's Camp is a secluded cabin and camp located high in the mountains southeast of Falkreath in Falkreath Hold. The camp is home to Angi, a Nord ranger from Helgen. You do not know anything else about Angi.You do not know anything else about this area.", + "display_name": "angi's_camp", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Falkreath Imperial Camp is a military encampment in Falkreath Hold. You do not know anything else about this area.", + "display_name": "falkreath_imperial_camp", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Falkreath Stormcloak Camp is a military encampment located east of Helgen in Falkreath Hold. You do not know anything else about this area.", + "display_name": "falkreath_stormcloak_camp", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Secunda's Kiss is a giant camp located southwest of Whiterun in Falkreath Hold.You do not know anything else about this area.", + "display_name": "secunda's_kiss", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Anise's Cabin is a small shack located west-southwest of Riverwood in Falkreath Hold, to the south and Bleak Falls Barrow. You do not know anything about who Ansie is.You do not know anything else about this area.", + "display_name": "anise's_cabin", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hunter's Rest is a small shack located roughly midway between Falkreath and Rorikstead in Falkreath Hold. You do not know anything else about this area.", + "display_name": "hunter's_rest", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pinewatch is a small shack located northeast of Falkreath and west of Helgen in Falkreath Hold.You do not know anything else about this area.", + "display_name": "pinewatch", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cracked Tusk Keep is a medium-sized fort located west of Falkreath in Falkreath Hold.You do not know anything else about this area.", + "display_name": "cracked_tusk_keep", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Neugrad is a medium-sized fort located east of Falkreath.You do not know anything else about this area.", + "display_name": "fort_neugrad", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ilinalta's Deep is a medium-sized, partially submerged fort located northern portion of Lake Ilinalta. \n\nOnce a fully functional structure, the fort now lies in ruin, with its lower sections flooded by Lake Ilinalta.You do not know anything else about this area.", + "display_name": "ilinalta's_deep", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bloodlet Throne is a small, secluded fort located southwest of Helgen.You do not know anything else about this area.", + "display_name": "bloodlet_throne", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bannermist Tower is a small, ruined Nordic tower located northwest of Falkreath and south of Hunter's Rest in Falkreath Hold. You do not know anything else about this area.", + "display_name": "bannermist_tower", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Peak's Shade Tower is a small, ruined Nordic tower located east of Falkreath in Falkreath Hold.You do not know anything else about this area.", + "display_name": "peak's_shade_tower", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Falkreath Watchtower is a small, ruined tower located north of Falkreath in Falkreath Hold. You do not know anything else about this area.", + "display_name": "falkreath_watchtower", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skybound Watch Pass is a small Nordic tower and ruin located northeast of Helgen in Falkreath Hold.You do not know anything else about this area.", + "display_name": "south_skybound_watch", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bleak Falls Barrow is a medium-sized Nordic ruin located west of Riverwood in Falkreath Hold. You do not know anything else about this area.", + "display_name": "bleak_falls_barrow", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shriekwind Bastion is a small Nordic ruin located north of Falkreath in Falkreath Hold. You do not know anything else about this area.", + "display_name": "shriekwind_bastion", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Twilight Sepulcher is a sacred Nordic ruin rumored located somewhere in southern Skyrim.You do not know anything else about this area.", + "display_name": "twilight_sepulcher", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Roadside Ruins is a small outdoor Nordic ruin located northwest of Falkreath in Falkreath Hold. You do not know anything else about this area.", + "display_name": "roadside_ruins", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bonechill Passage is a small cave located east of Falkreath and southwest of Helgen in Falkreath Hold.You do not know anything else about this area.", + "display_name": "bonechill_passage", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bloated Man's Grotto is a small, picturesque cave located north of Falkreath in Falkreath Hold. You do not know anything else about this area.", + "display_name": "bloated_man's_grotto", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Brittleshin Pass is a small mountain passage connecting Whiterun Hold and Falkreath Hold, located southwest of Whiterun and west of Bleak Falls Barrow. You do not know anything else about this area.", + "display_name": "brittleshin_pass", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glenmoril Coven is a small, foreboding cave located northwest of Falkreath in Falkreath Hold. TYou do not know anything else about this area.", + "display_name": "glenmoril_coven", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Greywater Grotto is a small cave located far east of Falkreath and south-southwest of Helgen in Falkreath Hold.You do not know anything else about this area.", + "display_name": "greywater_grotto", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Halldir's Cairn is a small cave located southwest of Falkreath in Falkreath Hold. You do not know anything else about this area.", + "display_name": "halldir's_cairn", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Haemar's Shame is a medium-sized cave located east of Helgen and southwest of Ivarstead in Falkreath Hold. You do not know anything else about this area.", + "display_name": "haemar's_shame", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Moss Mother Cavern is a small, open-roofed cavernous grove located northwest of Falkreath in Falkreath Hold. You do not know anything else about this area.", + "display_name": "moss_mother_cavern", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sunderstone Gorge is a small cave located north-northwest of Falkreath in Falkreath Hold.You do not know anything else about this area.", + "display_name": "sunderstone_gorge", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Southfringe Sanctum is a small cave located southeast of Helgen in Falkreath Hold. You do not know anything else about this area.", + "display_name": "southfringe_sanctum", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancient's Ascent is a mountaintop dragon lair located southwest of Helgen in Falkreath Hold. You do not know anything else about this area.", + "display_name": "ancient's_ascent", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Lady Stone is one of the thirteen Standing Stones located in Skyrim, found on an island in the middle of Lake Ilinalta, directly north of Falkreath in Falkreath Hold.You do not know anything else about this area.", + "display_name": "the_lady_stone", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ancestor Glade is a small, serene glade located somewhere in the South of Skyrim, but you do not know where.You do not know anything else about this area.", + "display_name": "ancestor_glade", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Evergreen Grove is a serene grove of trees northwest of Falkreath in Falkreath Hold.You do not know anything else about this area.", + "display_name": "evergreen_grove", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orphan Rock is a wooded valley featuring a central rock plateau, located northeast of Helgen in Falkreath Hold. You do not know anything else about this area.", + "display_name": "orphan_rock", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lakeview Manor is a scenic property located north of Pinewatch in Falkreath Hold. It is rumored that the property is for sale. It is widely known that it is objectivly the best location to live in the entirety of Skyrim.You do not know anything else about this area.", + "display_name": "lakeview_manor", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Corpselight Farm is a small farmstead located in Falkreath, the town, in Falkreath Hold. You do not know who runs the farm.You do not know anything else about this area.", + "display_name": "corpselight_farm", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dead Man's Drink is an inn located near the center of Falkreath in Falkreath Hold. You do not know who runs the inn.You do not know anything else about this area.", + "display_name": "dead_man's_drink", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dengeir's House is the residence of Dengeir of Stuhn, the former Jarl and current Thane of Falkreath.You do not know anything else about this area.", + "display_name": "dengeir's_house", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Falkreath Barracks serves as the living quarters for the Falkreath guards and houses the hold's jail.You do not know anything else about this area.", + "display_name": "falkreath_barracks", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Grave Concoctions is an alchemy shop located in Falkreath, in Falkreath Hold. You do not know who runs the shop.You do not know anything else about this area.", + "display_name": "grave_concoctions", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Gray Pine Goods is a small general goods store in Falkreath in Falkreath Hold. You do not know who runs the store.You do not know anything else about this area.", + "display_name": "gray_pine_goods", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Jarl's Longhouse is the seat of Falkreath's government and the residence of its jarl, located in the center of Falkreath in Falkreath Hold. It is positioned opposite Grave Concoctions to the east and Falkreath Barracks to the north.\n\nThe longhouse is home to Jarl Siddgeir, and other servants, which you do not know.You do not know anything else about this area.", + "display_name": "jarl's_longhouse", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lod's House is the residence and workshop of Lod, but you do not know who he is.You do not know anything else about this area.", + "display_name": "lod's_house", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lake Ilinalta is a vast freshwater lake located in Falkreath Hold in southern Skyrim, lying north of the hold’s capital and surrounded by dense pine forests. It is the largest lake in the province and serves as the headwaters of the White River, which flows northeast across Skyrim toward the Rift.", + "display_name": "lake_ilinalta", + "emotion": "", + "importance": 0.4, + "location": "Falkreath", + "tags": [], + "type": "LOCATION" + } + ], + "entry_count": 106, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Locations - Falkreath", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/Oghma_-_Locations_-_Haafingar.sknpack b/oghma-sknpack/Oghma_-_Locations_-_Haafingar.sknpack new file mode 100644 index 0000000..559284a --- /dev/null +++ b/oghma-sknpack/Oghma_-_Locations_-_Haafingar.sknpack @@ -0,0 +1,1180 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Tamrielic lore from CHIM's Oghma Infinium — locations haafingar. Merges educated and common-knowledge entries graded by importance.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "Haafingar is a location at the northwestern edge of Skyrim, home to the provincial capital, Solitude. The hold serves as the center of Imperial rule in Skyrim.\n\nHaafingar is defined by a large ridge that stretches across the hold, with pine forests and meadows covering the southern slopes down to the Karth River. The northern areas are colder, with mountains and a frozen coastline. Solitude itself is perched on a massive natural archway over the mouth of the Karth River. The region's coastline is rich in resources like nordic barnacles and clams, while the land supports plants like canis root and spiky grass. Near Solitude, you can enjoy fishing by the Solitude Sawmill, where dragonflies hover over the water. The hold is home to various flora, including nightshade, mora tapinella, and thistles, while the snow-covered Druadach Mountains only allow snowberries and scattered mountain flowers to grow. Jarl Elisif the Fair governs the region.", + "display_name": "haafingar", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Solitude is a major city located on the northwest coast of Skyrim, serving as the capital of both Haafingar and the entire province. Built atop a natural arch over the Sea of Ghosts, it is the largest city in Skyrim and the seat of the province's High King. The city is ruled by Jarl Elisif the Fair, widow of the late High King Torygg, and her throne resides in the Blue Palace.\n\nSolitude is home to many important buildings and institutions, including the headquarters of the Imperial Legion in Skyrim, the East Empire Company Warehouse, and the Bards College. The Thalmor Embassy is located nearby, adding to the city’s political significance. Notable locations within Solitude include the Bards College, Bits and Pieces shop, Blue Palace, Castle Dour, the Fletcher, the Temple of the Divines, and the Winking Skeever inn.", + "display_name": "solitude", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Blue Palace is the seat of power for Solitude, Haafingar, and all of Skyrim. It serves as the home of Jarl Elisif the Fair, the current High Queen of Skyrim, following the death of her husband, High King Torygg. Perched on the tip of the arch that Solitude is built upon, the palace is an imposing structure that commands attention, especially once you pass Castle Dour. The palace walls are part of Solitude’s city walls, built on the edge of the natural arch overlooking the Sea of Ghosts. The Blue Palace is located on the south side of Solitude, and it is home to several key figures: Bolgeir Bearclaw, the housecarl; Falk Firebeard, the steward; and Sybille Stentor, the court wizard.", + "display_name": "blue_palace", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The East Empire Company Warehouse is located on the Solitude docks, immediately southeast of the city. It serves as the headquarters and main storage facility for the East Empire Company in Skyrim. The entrance to the warehouse is typically locked, and entering without permission will result in trespassing charges. A Solitude guard can often be found patrolling outside, while the warehouse's interior is staffed by Dockworkers, the Dockmaster, and Snorreid, along with three patrolling Solitude guards.", + "display_name": "east_empire_company_warehouse", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Thalmor Embassy is a heavily guarded diplomatic compound located northwest of Solitude, in Haafingar. It serves as the headquarters for the Aldmeri Dominion's operations in Skyrim and is a focal point for Thalmor activity in the province. \n\nThe embassy is led by Elenwen, the Thalmor ambassador, who is known for hosting extravagant parties attended by Skyrim's most influential figures. The building is a center for the Thalmor's political maneuvering in Skyrim, and it is here that you infiltrate the compound using a forged invitation as part of the main quest. The embassy is situated in a remote area, east of Ironback Hideout, making it a secretive and well-protected location.", + "display_name": "thalmor_embassy", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragon Bridge is a small town located in northwestern Skyrim, near the iconic Dragon Bridge, southwest of the Statue to Meridia and east-southeast of Deepwood Redoubt. The town and its famous bridge are of strategic importance in the civil war, as both the Stormcloaks and Imperials view it as a key location.", + "display_name": "dragon_bridge", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Katla's Farm is a small farm and stable located along the Karth River, just outside of Solitude. The farm is owned by Katla, who lives there with her husband Snilling and their son Knud. The farm is situated southwest of Solitude, west of the East Empire Company Warehouse, offering a peaceful rural setting in the shadow of the bustling city.", + "display_name": "katla's_farm", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Solitude Sawmill is a wood mill located southwest of Solitude in Haafingar. The sawmill consists of a house and the mill itself, and is owned by Hjorunn, a Nord who works alongside his employee, Kharag gro-Shurkul, an Orc.", + "display_name": "solitude_sawmill", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Haafingar Stormcloak Camp is a Stormcloak military encampment located northeast of Dragon Bridge and south of the Statue to Meridia in Haafingar. This camp serves as a base for Stormcloak forces operating in the region during the civil war.", + "display_name": "haafingar_stormcloak_camp", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ironback Hideout is a dilapidated house located to the northwest of Solitude, a short distance east of The Steed Stone in Haafingar. The structure is in ruins, with no roof, windows, or doors, and has been taken over by a group of bandits, including a bandit chief.\n\nThe hideout can be accessed by following the road towards the Thalmor Embassy, turning west once you are east of the house.", + "display_name": "ironback_hideout", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Hraggstad is a medium-sized fort located west of Solitude and east of Steepfall Burrow in Haafingar. It is occupied by bandits, the fort serves as a stronghold in the region, offering a strategic vantage point.", + "display_name": "fort_hraggstad", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Northwatch Keep is a small fort located northwest of Dragon Bridge and north of Rimerock Burrow in Haafingar. The fort is occupied by the Thalmor and serves as a prison, off-limits to anyone not authorized by the Thalmor.", + "display_name": "northwatch_keep", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Castle Volkihar is a large, ominous castle located on an island far northwest of Solitude, connected to Volkihar Keep. It serves as the base of operations for the Volkihar Vampire Clan. To reach Castle Volkihar, you can hire a rowboat at Dawnstar or Icewater Jetty.", + "display_name": "castle_volkihar", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pinefrost Tower is a small, ruined tower located northwest of Dragon Bridge and south of Rimerock Burrow in Haafingar. Perched atop the western mountains of Haafingar, the fallen tower lies a short distance south of Northwatch Keep.", + "display_name": "pinefrost_tower", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Widow's Watch Ruins is a small, weathered tower located west-northwest of Solitude and northeast of Fort Hraggstad in Haafingar. The tower stands as a forgotten remnant of Skyrim's past, surrounded by the rugged terrain of the region, There are rumors of a witch living in the area.", + "display_name": "widow's_watch_ruins", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Volskygge is a medium-sized Nordic ruin located west of Solitude and southeast of Pinefrost Tower in Haafingar. The ruin is home to bandits.\n\nThe site is marked by the remnants of ancient Nordic architecture, and its crumbling halls and towers make it a haunting place to visit.", + "display_name": "volskygge", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hag's End is a small Nordic ruin located west of Dragon Bridge, within Deepwood Vale in The Reach. The site is home to a hagraven, hags, and witches, making it a dangerous and eerie destination for adventurers.\n\nHag's End is only accessible via Deepwood Redoubt, a fort situated in the mountains west of Dragon Bridge, south of the barrow Volskygge.", + "display_name": "hag's_end", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Deepwood Redoubt is a large Nordic ruin located west of Dragon Bridge and east of Mor Khazgur in The Reach. The ruin is inhabited by Forsworn, the fierce and rebellious natives of the Reach, who occupy the site as part of their struggle against outsiders.", + "display_name": "deepwood_redoubt", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kilkreath Ruins is a large, ancient temple located west of Solitude and southeast of Wolfskull Cave in Haafingar. The ruins are home to corrupted shades, spectral enemies who haunt the temple's dilapidated halls. There are rumors that a necromancer has taken over the ruins, causing the shades to appear.", + "display_name": "kilkreath_ruins", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Statue to Meridia is a shrine dedicated to the Daedric Prince of Life and Light, Meridia. Located west of Solitude and east of Clearpine Pond in Haafingar, the statue stands as a beacon of Meridia's influence in Skyrim. It is rumored that the Beacon of Meridia is missing from this location, hidden somewhere in Skyrim.", + "display_name": "statue_to_meridia", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lost Echo Cave is a small cave located west of Solitude in Falkreath Hold, south of Steepfall Burrow. The cave is situated along the road that runs west of Fort Hraggstad, near the point where it turns south. The entrance is marked by piles of stones leading up to stone steps, and, unusually for a cave, the entrance is a wooden door adorned with lit candles on either side, with a statue positioned to the right. Rumors of Falmer have been seen coming out the cave late at night.", + "display_name": "lost_echo_cave", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wolfskull Cave is a medium-sized cave located west of Solitude and southeast of Fort Hraggstad in Haafingar. The cave is rumored to be steeped in dark magic, particularly necromantic forces.", + "display_name": "wolfskull_cave", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Broken Oar Grotto is a small cave located north of Solitude, northwest of Brinewater Grotto, along the northern tip of the coastline in Haafingar. The entrance to the cave is marked by a landslide, next to a small cave opening, with a crushed longboat visible among the rubble, rocks, and broken trees.\n\nInside, the cave is inhabited by the Blackblood Marauders, a group of bandits led by Captain Hargar.", + "display_name": "broken_oar_grotto", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Brinewater Grotto is a small cave located north of Solitude, on the coast near the path that leads to Solitude Lighthouse. As you approach the lighthouse, the path splits, with a branch leading northwest toward a small jetty where a rowboat is moored. At the end of this path, a lantern hangs from a post, marking the entrance to the cave. Bandits occupy the grotto.", + "display_name": "brinewater_grotto", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shadowgreen Cavern is a small cave located northwest of Solitude in Haafingar. To reach the cave, follow the road from Solitude toward the Dainty Sload and Solitude Lighthouse, but stay on the main road as it curves north and then west around the mountain.", + "display_name": "shadowgreen_cavern", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rimerock Burrow is a small cave located northwest of Dragon Bridge and south of Northwatch Keep in Haafingar. To reach the cave, follow a rough path that leads over a wooden bridge spanning a crevice in the cliff wall just before the entrance. The path branches off from the larger road near Pinefrost Tower, marked by a pile of rocks, though the fork can be easily missed. It is rumored that a powerful Conjuer, who has angered a Daedric God, resides in this location.", + "display_name": "rimerock_burrow", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steepfall Burrow is a small cave located northwest of Dragon Bridge and east of Northwatch Keep in Haafingar. It is inhabited by trolls and wolves.", + "display_name": "steepfall_burrow", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ravenscar Hollow is a small cave located west of the Thalmor Embassy and due east of the Steed Stone in Haafingar. The cave is inhabited by hagravens, making it a perilous location for those who dare to venture inside.\n\nTo find the cave, head east along the road that passes Wolfskull Cave, continuing downhill past a switchback. Along the way, you’ll notice two cairns on the left, marking the beginning of a path that winds downhill, passing several more cairns and leading you to the cave’s entrance along the shore. The eerie atmosphere of the cave and its hagraven occupants make it a notable site for adventurers in the region.", + "display_name": "ravenscar_hollow", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pinemoon Cave is a small cave located northwest of Dragon Bridge and east of Volskygge in Haafingar. The cave is inhabited by vampires, making it a dangerous place for anyone who ventures inside.\n\nIts secluded location, nestled between Dragon Bridge and Volskygge, adds to the mystery and menace of the cave. Adventurers who explore Pinemoon Cave can expect to face off against the vampire inhabitants and uncover the dark secrets hidden within its depths.", + "display_name": "pinemoon_cave", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Katariah is the personal transport vessel of the Emperor, Titus Mede II. It serves as both a luxury ship and a symbol of the Emperor's power, allowing him to travel across the seas in style and security. The ship is named after Empress Katariah, the wife of the Emperor, reflecting her importance.", + "display_name": "the_katariah", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dainty Sload is a ship docked north of Solitude, located southwest of the Solitude Lighthouse in Haafingar. The ship is currently docked for supplies and is home to corsairs.", + "display_name": "dainty_sload", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orphan's Tear is a shipwreck located west of Ravenscar Hollow on the northern coast of Haafingar. The wreck is inhabited by bandits who have made it their hideout.", + "display_name": "orphan's_tear", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Steed Stone is one of the thirteen Standing Stones scattered across Skyrim, located northwest of Solitude and east of Fort Hraggstad in Haafingar. Activating the Steed Stone increases your carry weight by a sigfnicant amount and removes the movement penalty of armor, making it especially beneficial for heavy armor wearers. Additionally, it makes worn armor weigh nothing, allowing even those who favor heavy armor to move with ease.\n\nThe stone is situated at the top of several flights of stairs, placed upon a stone structure near the highest point of the mountain. The Steed Stone offers a significant advantage for adventurers looking to improve their carrying capacity and mobility, especially those focusing on strength and endurance.", + "display_name": "the_steed_stone", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Clearpine Pond is a serene pond located west-southwest of Solitude, just northeast of Pinemoon Cave in Haafingar. The pond features a small island that is easily identifiable by a pile of logs and several fallen trees surrounding it, adding a rustic charm to the landscape.", + "display_name": "clearpine_pond", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Solitude Lighthouse is a stone structure located on the northern coast of Skyrim, northeast of Solitude. The lighthouse plays an important role in guiding ships safely into Solitude's harbor. It is tended to by a solitary Khajiit named Ma'zaka, who lives in the lighthouse. It is rumored that if the lighthouse was to go out, it cause extreme danger for ships coming into port.", + "display_name": "solitude_lighthouse", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Forgotten Vale is an isolated region located in northwestern Skyrim, once inhabited by the Snow Elves, who worshipped the god Auri-El. This secluded area is only accessible after navigating both Darkfall Cave and Darkfall Passage, and it provides access to eight distinct locations: Darkfall Grotto, Darkfall Passage, Forgotten Vale Cave, Forgotten Vale Forest, Forgotten Vale Overlook, the Glacial Crevice, the Inner Sanctum, and Sharpslope Cave.\n\nNow, the Forgotten Vale is home to the corrupted Falmer, once the Snow Elves, along with a variety of dangerous creatures such as frost giants. The Snow Elves once built a temple dedicated to Auri-El, which can be found in the Inner Sanctum", + "display_name": "forgotten_vale", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Addvar's House is a small residence located in the residential district of Solitude, right next to Evette San's House. It is the home of Addvar, the town's fishmonger, along with his wife Greta and their daughter Svari.", + "display_name": "addvar's_house", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Angeline's Aromatics is the alchemy shop in Solitude, located as the second building on the left after passing through Solitude's main gate, just past The Winking Skeever. The shop is owned by Angeline Morrard, who specializes in selling potions, food, ingredients, and books.", + "display_name": "angeline's_aromatics", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bits and Pieces is the general goods store in Solitude, run by Sayma, a Redguard merchant. The store is located next door to Radiant Raiment, on the corner by the market square. It is the second building on the right as you enter Solitude from the main gate.\n\nSayma is married to Beirand, and together they have a son named Kayd, a Redguard child. Bits and Pieces offers a variety of general goods, catering to the needs of Solitude's residents and travelers passing through the city. The store plays an important role in the local economy, providing various items to those in need.", + "display_name": "bits_and_pieces", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bryling's House is a small residence in Solitude, home to Bryling, a Thane of Solitude. The house is located just outside the Blue Palace on the left-hand side, next door to the Bards College.\n\nBryling spends most of her time at the Blue Palace. Irnskar Ironhand, a Nord warrior, serves as Bryling's personal protector and also resides in Solitude, ensuring her safety while she holds her position as Thane.", + "display_name": "bryling's_house", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Castle Dour is a large fortress located in Solitude, serving as the headquarters of the Imperial Legion and the residence of the Emperor in Skyrim. The fortress is a significant military and political landmark in the city.\n\nThe exterior of Castle Dour is separated from the rest of Solitude by high stone walls, with two main gateways providing access. One gateway is on the southwest side, leading to the Wells District of Solitude, while the other is on the southeast side, granting access to the Avenues District and the Blue Palace. The castle is a vital hub for the Imperial presence in Skyrim, overseeing military operations and strategic affairs within the region.", + "display_name": "castle_dour", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Erikur's House is a large mansion located just northwest of the Blue Palace in Solitude. It is the last building on the right before the Blue Palace, across from the Bards College and Bryling's House. The mansion is the residence of Erikur, a Nord warrior and Thane of Solitude, who oversees local businesses and engages in trade, notably importing low-quality elven weapons from Black Marsh to sell at inflated prices to the Imperial army.\n\nThe house is also home to Gisli, a Nord ranger and Erikur's sister, who is known for being discouraged and disillusioned, in contrast to her arrogant brother. Additionally, the mansion houses Melaran, a High Elf mage, who likely brings his magical expertise to the household. The mansion's central location and notable inhabitants make it a significant location in Solitude's upper social circle.", + "display_name": "erikur's_house", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Evette San's House is the home of Evette and Octieve San in Solitude. It is located beside Addvar's House, opposite the bottom door of Proudspire Manor.\n\nEvette San is a Nord food vendor who operates both a house and a market stall in Solitude, selling her wares to residents and travelers alike. Her husband, Octieve San, is an elderly Breton who resides in Solitude, often found in The Winking Skeever, enjoying the local tavern atmosphere. Their home is a modest but well-located residence in the heart of Solitude's bustling distri", + "display_name": "evette_san's_house", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Castle Fletcher is a store in Solitude that specializes in selling bows, arrows, and other ranged weapons. It is located on the outside of the walls of the Castle Dour courtyard, next to the Solitude Blacksmith.\n\nThe store is run by Fihada, who offers a variety of bows and arrows for purchase, as well as buying them from customers. The shop caters to archers and adventurers in need of quality ranged weapons.", + "display_name": "fletcher", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Jala's House is a small residence located in Solitude, next to the Bards College. The house is owned by Jala, who lives there along with Ahtar.", + "display_name": "jala's_house", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Potema's Catacombs is a series of catacombs designed to house Potema, the Wolf Queen of Solitude. These catacombs are located beneath the Temple of the Divines in Haafingar. To access the catacombs, enter the temple and proceed to the rear. At the end of the pews, you'll find a stairway leading down.", + "display_name": "potema's_catacombs", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Proudspire Manor is a three-story house located in Solitude, and it is the most expensive house available for purchase in Skyrim. The manor offers expansive living space, with elegant furnishings and a prime location within the city, overlooking the surrounding area.", + "display_name": "proudspire_manor", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Radiant Raiment is a clothing store in Solitude, run by Taarie and her sister Endarie, both High Elves who are skilled tailors. The store is located near the entrance of Solitude, on the right as you enter through the main gate.\n\nRadiant Raiment offers a variety of high-quality clothing and accessories, catering to those with refined tastes. Taarie and Endarie are known for their expertise in tailoring, and their shop is a popular destination for those seeking stylish and elegant outfits in Solitude.", + "display_name": "radiant_raiment", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Solitude Blacksmith is a smithy located on the western side of Solitude, up the ramp to Castle Dour and to the right. The smithy is operated by Beirand and Heimvar, with a spacious interior filled with various weapons, armor, and crafting materials.", + "display_name": "solitude_blacksmith", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Temple of the Divines is the main temple of Solitude and Skyrim, housing shrines dedicated to the Eight Divines. The temple serves as a place of worship and is an important religious site in the city.\n\nIt is located on the eastern side of Castle Dour's courtyard, northwest of the Blue Palace in Solitude. The temple is a central location for those seeking spiritual guidance or wishing to honor the Divines, and it is a peaceful contrast to the bustling political and military activity surrounding Castle Dour.", + "display_name": "temple_of_the_divines", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Thalmor Headquarters is a building located within the walls of Castle Dour in Solitude, Haafingar. The entrance is accessed via a long straight flight of stairs that lead up from the courtyard in Castle Dour.\n\nDespite its name, the building is notably devoid of Thalmor personnel or anyone else, giving it an eerie, abandoned feel. It seems to have been left suddenly, adding an air of mystery surrounding its purpose and the circumstances of its abandonment. The empty headquarters stands in stark contrast to the bustling political and military presence elsewhere in Castle Dour.", + "display_name": "thalmor_headquarters", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Winking Skeever is a popular inn and bar located in Solitude, situated on the left-hand side as you enter from the southwest. The inn proudly displays its name on a sign adorning its front door, and it is a well-known establishment in the city.\n\nThe owner, Corpulus Vinius, shares that the inn is named after a childhood pet skeever that was said to have the remarkable ability to wink. Minette Vinius, Corpulus's daughter, lives in Solitude and often frequents the inn. Lisette, a Breton bard, performs at the inn, adding to its lively atmosphere.", + "display_name": "the_winking_skeever", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vittoria Vici's House is a large residence located in Solitude, serving as the home of Vittoria Vici. The house is situated between Castle Dour and Proudspire Manor, next door to Proudspire Manor and across the street from Solitude's Hall of the Dead.\n\nThe location of the house places it in the heart of Solitude, within walking distance of key landmarks such as Castle Dour and the Hall of the Dead.", + "display_name": "vittoria_vici's_house", + "emotion": "", + "importance": 0.75, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Haafingar is a location at the northwestern edge of Skyrim, home to the provincial capital, Solitude. The hold serves as the center of Imperial rule in Skyrim.\n\nHaafingar is defined by a large ridge that stretches across the hold, with pine forests and meadows covering the southern slopes down to the Karth River. Jarl Elisif the Fair governs the region.", + "display_name": "haafingar", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Solitude is a major city located on the northwest coast of Skyrim, serving as the capital of both Haafingar and the entire province. Built atop a natural arch over the Sea of Ghosts, it is the largest city in Skyrim and the seat of the province's High King. The city is ruled by Jarl Elisif the Fair, widow of the late High King Torygg, and her throne resides in the Blue Palace.", + "display_name": "solitude", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Blue Palace is the seat of power for Solitude, Haafingar, and all of Skyrim. It serves as the home of Jarl Elisif the Fair, the current High Queen of Skyrim, following the death of her husband, High King Torygg. Perched on the tip of the arch that Solitude is built upon, the palace is an imposing structure that commands attention.", + "display_name": "blue_palace", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The East Empire Company Warehouse is located on the Solitude docks, immediately southeast of the city. It serves as the headquarters and main storage facility for the East Empire Company in Skyrim.You do not know anything else about this area.", + "display_name": "east_empire_company_warehouse", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Thalmor Embassy is a heavily guarded diplomatic compound located northwest of Solitude, in Haafingar. It serves as the headquarters for the Aldmeri Dominion's operations in Skyrim and is a focal point for Thalmor activity in the province. You do not know who runs the embassy.You do not know anything else about this area.", + "display_name": "thalmor_embassy", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragon Bridge is a small town located in northwestern Skyrim, near the iconic Dragon Bridge, south of Solitude. The town and its famous bridge are of strategic importance in the civil war, as both the Stormcloaks and Imperials view it as a key location.You do not know anything else about this area.", + "display_name": "dragon_bridge", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Katla's Farm is a small farm and stable located along the Karth River, just outside of Solitude. The farm is owned by Katla who you do not know.You do not know anything else about this area.", + "display_name": "katla's_farm", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Solitude Sawmill is a wood mill located southwest of Solitude in Haafingar. You do not know who runs the mill.You do not know anything else about this area.", + "display_name": "solitude_sawmill", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Haafingar Stormcloak Camp is a Stormcloak military encampment located northeast of Dragon Bridge in Haafingar.You do not know anything else about this area.", + "display_name": "haafingar_stormcloak_camp", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ironback Hideout is a dilapidated house located to the northwest of Solitude in Haafingar.You do not know anything else about this area.", + "display_name": "ironback_hideout", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Hraggstad is a medium-sized fort located west of Solitude in Haafingar. You do not know anything else about this area.", + "display_name": "fort_hraggstad", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Northwatch Keep is a small fort located northwest of Dragon Bridge in Haafingar. You do not know anything else about this area.", + "display_name": "northwatch_keep", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Castle Volkihar is a large, ominous castle located on an island far northwest of Solitude, connected to Volkihar Keep. Rumors of a powerful vampire clan lives here.You do not know anything else about this area.", + "display_name": "castle_volkihar", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pinefrost Tower is a small, ruined tower located northwest of Dragon Bridge in Haafingar.You do not know anything else about this area.", + "display_name": "pinefrost_tower", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Widow's Watch Ruins is a small, weathered tower located west-northwest of Solitude in Haafingar. You do not know anything else about this area.", + "display_name": "widow's_watch_ruins", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Volskygge is a medium-sized Nordic ruin located west of Solitude in Haafingar..\nYou do not know anything else about this area.", + "display_name": "volskygge", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hag's End is a small Nordic ruin located west of Dragon Bridge in The Reach. You do not know anything else about this area.", + "display_name": "hag's_end", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Deepwood Redoubt is a large Nordic ruin located west of Dragon Bridge in The Reach. You do not know anything else about this area.", + "display_name": "deepwood_redoubt", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kilkreath Ruins is a large, ancient temple located west of Solitude in Haafingar. You do not know anything else about this area.", + "display_name": "kilkreath_ruins", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Statue to Meridia is a shrine dedicated to the Daedric Prince of Life and Light, Meridia. Located west of Solitude in Haafingar.You do not know anything else about this area.", + "display_name": "statue_to_meridia", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lost Echo Cave is a small cave located west of Solitude in Haafingar Hold.You do not know anything else about this area.", + "display_name": "lost_echo_cave", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wolfskull Cave is a medium-sized cave located west of Solitude in Haafingar. You do not know anything else about this area.", + "display_name": "wolfskull_cave", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Broken Oar Grotto is a small cave located north of Solitude in Haafingar.You do not know anything else about this area.", + "display_name": "broken_oar_grotto", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Brinewater Grotto is a small cave located north of Solitude, on the coast near the path that leads to Solitude Lighthouse. You do not know anything else about this area.", + "display_name": "brinewater_grotto", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shadowgreen Cavern is a small cave located northwest of Solitude in Haafingar.You do not know anything else about this area.", + "display_name": "shadowgreen_cavern", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rimerock Burrow is a small cave located northwest of Dragon Bridge in Haafingar.You do not know anything else about this area.", + "display_name": "rimerock_burrow", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steepfall Burrow is a small cave located northwest of Dragon Bridge in Haafingar.You do not know anything else about this area.", + "display_name": "steepfall_burrow", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ravenscar Hollow is a small cave located west of the Thalmor Embassy in Haafingar. You do not know anything else about this area.", + "display_name": "ravenscar_hollow", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pinemoon Cave is a small cave located northwest of Dragon Bridge in Haafingar. You do not know anything else about this area.", + "display_name": "pinemoon_cave", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Katariah is the personal transport vessel of the Emperor, Titus Mede II. It serves as both a luxury ship and a symbol of the Emperor's power, allowing him to travel across the seas in style and security. You do not know anything else about this area.", + "display_name": "the_katariah", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dainty Sload is a ship docked north of Solitude, located southwest of the Solitude Lighthouse in Haafingar.You do not know anything else about this area.", + "display_name": "dainty_sload", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orphan's Tear is a shipwreck located on the northern coast of Haafingar. You do not know anything else about this area.", + "display_name": "orphan's_tear", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Steed Stone is one of the thirteen Standing Stones scattered across Skyrim, located northwest of Solitude and east of Fort Hraggstad in Haafingar. Activating the Steed Stone increases your carry weight by a sigfnicant amount and removes the movement penalty of armor, making it especially beneficial for heavy armor wearers. Additionally, it makes worn armor weigh nothing, allowing even those who favor heavy armor to move with ease.You do not know anything else about this area.", + "display_name": "the_steed_stone", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Clearpine Pond is a serene pond located west-southwest of Solitude in Haafingar. You do not know anything else about this area.", + "display_name": "clearpine_pond", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Solitude Lighthouse is a stone structure located on the northern coast of Skyrim, northeast of Solitude. You do not know anything else about this area.", + "display_name": "solitude_lighthouse", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Forgotten Vale is an isolated region located in northwestern Skyrim, once inhabited by the Snow Elves, who worshipped the god Auri-El. It is hidden somwhere in Haafingar Hold.You do not know anything else about this area.", + "display_name": "forgotten_vale", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Addvar's House is a small residence located in the residential district of Solitude. You do not know Addvar.You do not know anything else about this area.", + "display_name": "addvar's_house", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Angeline's Aromatics is the alchemy shop in Solitude. You do not know.who owns it.You do not know anything else about this area.", + "display_name": "angeline's_aromatics", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bits and Pieces is the general goods store in Solitude. You do not know who owns it.You do not know anything else about this area.", + "display_name": "bits_and_pieces", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bryling's House is a small residence in Solitude, home to Bryling, a Thane of Solitude. You do not know much about Bryling apart from the fact he is the Thane of Solitude.You do not know anything else about this area.", + "display_name": "bryling's_house", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Castle Dour is a large fortress located in Solitude, serving as the headquarters of the Imperial Legion and the residence of the Emperor in Skyrim. The fortress is a significant military and political landmark in the city.\nYou do not know anything else about this area.", + "display_name": "castle_dour", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Erikur's House is a large mansion located just northwest of the Blue Palace in Solitude. You do not know about Erikur.You do not know anything else about this area.", + "display_name": "erikur's_house", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Evette San's House is the home of Evette San in Solitude. You do not know anything else about Evette.You do not know anything else about this area.", + "display_name": "evette_san's_house", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Castle Fletcher is a store in Solitude that specializes in selling bows, arrows, and other ranged weapons. You do not know who runs the store.You do not know anything else about this area.", + "display_name": "fletcher", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Jala's House is a residence located in Solitude. You do not know about Jala who lives here.You do not know anything else about this area.", + "display_name": "jala's_house", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Potema's Catacombs is a series of catacombs designed to house Potema, the Wolf Queen of Solitude. You do not know the entrance to the catacombs.You do not know anything else about this area.", + "display_name": "potema's_catacombs", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Proudspire Manor is a three-story house located in Solitude, and it is the most expensive house available for purchase in Skyrim. You do not know anything else about this area.", + "display_name": "proudspire_manor", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Radiant Raiment is a clothing store in Solitude. You do not know who runs the store.You do not know anything else about this area.", + "display_name": "radiant_raiment", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Solitude Blacksmith is a smithy located in Solitude. You do not know who runs the blacksmith.You do not know anything else about this area.", + "display_name": "solitude_blacksmith", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Temple of the Divines is the main temple of Solitude and Skyrim, housing shrines dedicated to the Eight Divines. The temple serves as a place of worship and is an important religious site in the city. You do not know who runs the temples.You do not know anything else about this area.", + "display_name": "temple_of_the_divines", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Thalmor Headquarters is a building located within the walls of Castle Dour in Solitude, Haafingar. You do not know anything else about this area.", + "display_name": "thalmor_headquarters", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Winking Skeever is a popular inn and bar located in Solitude,. You do not know who runs the inn.You do not know anything else about this area.", + "display_name": "the_winking_skeever", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vittoria Vici's House is a large residence located in Solitude, serving as the home of Vittoria Vici. You do not know much about Vittoria.You do not know anything else about this area.", + "display_name": "vittoria_vici's_house", + "emotion": "", + "importance": 0.4, + "location": "Haafingar", + "tags": [], + "type": "LOCATION" + } + ], + "entry_count": 106, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Locations - Haafingar", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/Oghma_-_Locations_-_Hjaalmarch.sknpack b/oghma-sknpack/Oghma_-_Locations_-_Hjaalmarch.sknpack new file mode 100644 index 0000000..cf18e17 --- /dev/null +++ b/oghma-sknpack/Oghma_-_Locations_-_Hjaalmarch.sknpack @@ -0,0 +1,850 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Tamrielic lore from CHIM's Oghma Infinium — locations hjaalmarch. Merges educated and common-knowledge entries graded by importance.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "Hjaalmarch is a hold in northern Skyrim, with its capital in Morthal, located east of Solitude and south of the Pale. Despite its proximity to Skyrim's capital, Hjaalmarch is remote and isolated, dominated by a vast, fog-shrouded swamp in the north and bordered by snowy mountains in the south. The ancient ruins of Labyrinthian block potential trade routes to Whiterun Hold, adding to its seclusion. It is ruled by Jarl Idgrod Ravencrone.\n\nHjaalmarch’s salt marshes, stretching from Fort Snowhawk in the west to Ustengrav in the east, are rich in flora, including deathbell, swamp fungal pods, and giant lichen, as well as rare blue mountain flowers around Morthal. The swamps are teeming with dangerous creatures like frostbite spiders, trolls, and even chaurus, while mudcrabs, fish, and dragonflies populate the waterways. The southern regions are snowy and mountainous, with bears, sabre cats, and deer roaming the rugged terrain. A single paved road connects Dragon Bridge in the west to Morthal.", + "display_name": "hjaalmarch", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Morthal is a small city in northern Skyrim and the capital of Hjaalmarch, located on the southern edge of the Drajkmyr marsh. Initially aligned with the Empire, Jarl Idgrod Ravencrone’s mystical and reclusive nature has led to perceptions of her as an ineffective ruler. She often speaks of sensing larger forces at play, which has distanced her from her citizens, many of whom worry about the war bringing outsiders and prefer their isolated way of life.\n\nThe city is a humble settlement with little economic or strategic value, supported only by a small lumber mill, an apothecary (Thaumaturgist's Hut), and an inn (Moorside Inn). Morthal’s surroundings are often shrouded in thick fog, with twisted trees and glowing torches creating a haunting atmosphere. The swampy lands are rich in deathbells, swamp fungal pods, and giant lichen, but are also dangerous at night, with creatures such as trolls and occasionally chaurus lurking nearby.", + "display_name": "morthal", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stonehills is a small mining settlement located east of Morthal and west of Dimhollow Crypt in Hjaalmarch. It serves as the encampment for workers at Rockwallow Mine, which is owned by Thane Bryling of Solitude. The mine is managed by Sorli the Builder and her husband, Pactur, who live in a house near the mine with their son, Sirgar.", + "display_name": "stonehills", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hjaalmarch Imperial Camp is an Imperial military encampment located south of Ustengrav and northwest of Stonehills in Hjaalmarch. Commanded by Legate Taurinus Duilis.", + "display_name": "hjaalmarch_imperial_camp", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hjaalmarch Stormcloak Camp is a Stormcloak military encampment located east of Ustengrav and west of Mzinchaleft in Hjaalmarch. The camp serves as a base of operations for the Stormcloaks in their campaign to gain control of the region.\n\nThe camp is typically commanded by Arrald Frozen-Heart.", + "display_name": "hjaalmarch_stormcloak_camp", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Robber's Gorge is a small bandit camp and cave located west-southwest of Morthal and east-northeast of Broken Tower Redoubt in Hjaalmarch. The camp spans a road connecting Rorikstead to Dragon Bridge, with a bridge controlled by the bandits crossing the River Hjaal.", + "display_name": "robber's_gorge", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Talking Stone Camp is a giant camp located northeast of Rorikstead and south of Orotheim in Hjaalmarch. The camp is home to giants and their mammoths, with the typical features of a giant camp, including a large bonfire and scattered mammoth bones.", + "display_name": "talking_stone_camp", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Abandoned Shack is an isolated house located east-southeast of Solitude in Hjaalmarch. It is the location where Dark Brotherhood iniates are taken to see if have the heart to kill", + "display_name": "abandoned_shack", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Crabber's Shanty is a small, run-down shack located on the banks of the River Hjaal, southwest of Morthal. This modest dwelling is home to a lone fisherman who makes a simple living by the water.", + "display_name": "crabber's_shanty", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Meeko's Shack is a dwelling located on the edge of the Hjaalmarch marshlands, west-northwest of Morthal and Fort Snowhawk. It sits a short distance from the road connecting Morthal to Dragon Bridge. It is rumored that the owner of the house, a Nord who you do not know the name of, has not been heard from in weeks.", + "display_name": "meeko's_shack", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Snowhawk is a medium-sized fort located west of Morthal and south of The Apprentice Stone in Hjaalmarch. It has been taken over by necromancers.", + "display_name": "fort_snowhawk", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cold Rock Pass is a small mountain passage located south-southwest of Morthal and north of Rannveig's Fast in Whiterun Hold. The pass is home to a frost troll and provides a treacherous but convenient shortcut through the mountainous terrain.", + "display_name": "north_cold_rock_pass", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cold Rock Pass is a small mountain passage located south-southwest of Morthal and north of Rannveig's Fast in Whiterun Hold. The pass is home to a frost troll and provides a treacherous but convenient shortcut through the mountainous terrain.\"", + "display_name": "south_cold_rock_pass", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cold Rock Pass is a small mountain passage located south-southwest of Morthal and north of Rannveig's Fast in Whiterun Hold. The pass is home to a frost troll and provides a treacherous but convenient shortcut through the mountainous terrain.\"", + "display_name": "cold_rock_pass", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dead Men's Respite is a medium-sized Nordic ruin located southwest of Morthal in Hjaalmarch. The ruin is inhabited by draugr. It is rummored that the a Verse from the Poetic Edda is hidden somehwere in the ruin.", + "display_name": "dead_men's_respite", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Folgunthur is a medium-sized Nordic ruin located southeast of Solitude and west of the Abandoned Shack in Hjaalmarch. The ruin is inhabited by draugr.", + "display_name": "folgunthur", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kjenstag Ruins is a small outdoor Nordic ruin located east-northeast of Morthal and southwest of the Hjaalmarch Stormcloak Camp in Hjaalmarch. The ruin features a circular layout with an arched entrance on its northern side.\n\nInside, a short central wall and an empty stone table suggest the ruins once served a ceremonial purpose.", + "display_name": "kjenstag_ruins", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Labyrinthian is a vast and ancient Nordic ruin located southeast of Morthal, situated in a mountain pass that connects Hjaalmarch and Whiterun Hold. Once the great city of Bromjunaar, the capital of the Dragon Cult, Labyrinthian was built during the Merethic Era as a temple to the dragons who ruled Skyrim at the time. Over centuries, the city grew into a thriving hub of power for the cult, where the highest-ranking Dragon Priests convened to govern. Following the defeat of the Dragon Cult during the Dragon War, Bromjunaar fell into ruin, leaving behind the eerie remnants of its past, including the famed Labyrinth.", + "display_name": "labyrinthian", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lost Valkygg is a small Nordic ruin located northeast of Labyrinthian and west of Skyborn Altar in Hjaalmarch. The ruin is inhabited by draugr.", + "display_name": "lost_valkygg", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rannveig's Fast is a small Nordic ruin located east-northeast of Rorikstead and south of Cold Rock Pass in Whiterun Hold. The ruin is shrouded in mystery.", + "display_name": "rannveig's_fast", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ustengrav is a medium-sized Nordic ruin located northeast of Morthal and south of High Gate Ruins in Hjaalmarch. It is inhabited by a variety of foes, including bandits, warlocks, and draugr. It is rumored that the Horn of Jurgen Windcaller is located here.", + "display_name": "ustengrav", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mzinchaleft is a medium-sized Dwarven ruin located southwest of Dawnstar and north of Frostmere Crypt in Hjaalmarch.", + "display_name": "mzinchaleft", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Brood Cavern is a small cave located southwest of Morthal and southeast of Dead Men's Respite in Hjaalmarch. The cavern is inhabited by dagnerous animals.", + "display_name": "brood_cavern", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Movarth's Lair is a small cave located north-northeast of Morthal and southwest of Ustengrav in Hjaalmarch. The lair is home to vampires led by Movarth Piquine and consists of a single zone.\n\nA winding path connects the cave to Morthal, making it accessible for adventurers investigating the vampire menace in the region.", + "display_name": "movarth's_lair", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orotheim is a small cave located northeast of Rorikstead and southeast of Robber's Gorge in Hjaalmarch. The cave serves as a hideout for bandits who are intent on poaching mammoths.\n\nA rough path runs northwest from the River Hjaal, winding around the mountain to the cave entrance. Adventurers should beware of the numerous bear traps scattered along the approach.", + "display_name": "orotheim", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Forebears' Holdout is a small cave located southeast of Dragon Bridge in Haafingar. To find the entrance, follow the road south-southeast from Dragon Bridge into the surrounding wilderness.", + "display_name": "forebears'_holdout", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Wreck of the Icerunner is a location east of Solitude, where an Imperial ship has run aground. The ship was originally transporting passengers and cargo between Skyrim and Cyrodiil, there are rumors that a noteable imperial scholar, who you do not know the name of, was looking for a rare unkown artifact in Skyrim.", + "display_name": "wreck_of_the_icerunner", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Eldersblood Peak is a mountaintop dragon lair located south of Morthal and north-northeast of Rannveig's Fast in Hjaalmarch. To reach Eldersblood Peak from the north, travelers should take the main road south of Morthal, then look for a dirt path on the left that winds past an unmarked hunter's camp and North Cold Rock Pass.", + "display_name": "eldersblood_peak", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skyborn Altar is a mountaintop dragon lair located east-southeast of Morthal and south of Stonehills in Hjaalmarch. The path to the altar can be accessed from the south by traveling between Silent Moons Camp and Dustman's Cairn, with a dirt path marked by two stone bird heads flanking the base of stone steps leading up the mountain.", + "display_name": "skyborn_altar", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Apprentice Stone is one of the thirteen Standing Stones scattered across Skyrim, located on an island in the marsh, just north of Fort Snowhawk and west-northwest of Morthal in Hjaalmarch. When activated, the Apprentice Stone increases magicka regeneration by a large amount but also makes the user more susceptible to magicka damage by an equally large amount, making it a powerful but risky boon for magic users.\n\nThe stone is set in a typical Standing Stone arrangement on the northeast end of a small marsh archipelago, surrounded by common marsh plants, including deathbell plants and swamp fungal pods. A nirnroot can also be found on the shoreline southeast of the stone, adding a touch of rare flora to the mystical and dangerous environment of the area.", + "display_name": "the_apprentice_stone", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Lord Stone is one of the thirteen Standing Stones scattered across Skyrim, located east of Morthal and northeast of the Shrine of Mehrunes Dagon in Hjaalmarch. When activated, the Lord Stone grants a moderate boost to your armor rating and a decent amount of magic resistance, making it easier to reach the armor and magic resistance caps. While it offers less defense than the Atronach Stone, it has no associated penalty, making it a more balanced defensive option.\n\nThe stone itself is perched atop a stone base, flanked by the remains of large arches. To reach the Lord Stone, follow the path that leads past the Shrine of Mehrunes Dagon, which begins to the west of the Hall of the Vigilant. The route is marked by several piles of rocks, some with remnants of banners flapping in the wind. After passing Dimhollow Crypt, ascend a flight of stone steps leading up to the shrine, then turn northeast to find the Lord Stone atop a nearby hill.", + "display_name": "the_lord_stone", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alva's House is a small residence located in Morthal, home to Alva and her husband, Hroggar. The house is situated along the jetty, just next to the Guardhouse.", + "display_name": "alva's_house", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Falion's House is the residence and shop of the town wizard, Falion, in Morthal. Located along the jetty, it sits behind the Thaumaturgist's Hut and is situated on the edge of the water, just a short distance from Alva's house. Falion lives there with his child apprentice, Agni.", + "display_name": "falion's_house", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Highmoon Hall is the residence of Idgrod Ravencrone, the Jarl of Hjaalmarch, located in the town of Morthal. This grand hall serves as the administrative center for the region, where Jarl Idgrod Ravencrone oversees the affairs of her hold.\n\nThe hall is also home to several key figures in Hjaalmarch's governance, including Aslfur, the steward, Legate Taurinus Duilis, the military advisor, and Gorm, the housecarl. Despite Jarl Idgrod’s reclusive nature and mystical tendencies, Highmoon Hall remains a focal point for the people of Morthal and the surrounding areas.", + "display_name": "highmoon_hall", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Jorgen and Lami's House is a modest, one-room cottage located on the outskirts of Morthal, across from the town's lumber mill. The house is home to Jorgen, a Nord lumberjack, and his wife Lami, who runs the Thaumaturgist's Hut in Morthal as the town's apothecary.", + "display_name": "jorgen_and_lami's_house", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Moorside Inn is the inn in Morthal, owned and operated by Jonna. Located in the heart of the town. Lurbuk serves as the inn's bard, though his performances are not particularly well-received, and business at the inn seems slow. Jonna often mentions that the front door sees little traffic.", + "display_name": "moorside_inn", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Thaumaturgist's Hut is an alchemy shop located across from Highmoon Hall in Morthal. The shop is run by Lami, who manages the business during normal hours from 8 AM to 8 PM.", + "display_name": "thaumaturgist's_hut", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Thonnir's House is the residence of Thonnir and his son Virkmund, located in Morthal. Thonnir, a Nord lumberjack, lives with his son, who is a young child.", + "display_name": "thonnir's_house", + "emotion": "", + "importance": 0.75, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hjaalmarch is a hold in northern Skyrim, with its capital in Morthal, located east of Solitude and south of the Pale. Despite its proximity to Skyrim's capital, Hjaalmarch is remote and isolated, dominated by a vast, fog-shrouded swamp in the north and bordered by snowy mountains in the south. The ancient ruins of Labyrinthian block potential trade routes to Whiterun Hold, adding to its seclusion. It is ruled by Jarl Idgrod Ravencrone.\n\nHjaalmarch’s salt marshes, stretching from Fort Snowhawk in the west to Ustengrav in the east, are rich in flora.", + "display_name": "hjaalmarch", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Morthal is a small city in northern Skyrim and the capital of Hjaalmarch, located on the southern edge of the Drajkmyr marsh. Initially aligned with the Empire, Jarl Idgrod Ravencrone’s mystical and reclusive nature has led to perceptions of her as an ineffective ruler. \n\nThe city is a humble settlement with little economic or strategic value, supported only by a small lumber mill, an apothecary (Thaumaturgist's Hut), and an inn (Moorside Inn). Morthal’s surroundings are often shrouded in thick fog, with twisted trees and glowing torches creating a haunting atmosphere. The swampy lands are rich in deathbells, swamp fungal pods, and giant lichen, but are also dangerous at night, with creatures such as trolls and occasionally chaurus lurking nearby.", + "display_name": "morthal", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stonehills is a small mining settlement located east of Morthal.You do not know anything else about this area.", + "display_name": "stonehills", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hjaalmarch Imperial Camp is an Imperial military encampment located southeast of Morthal.You do not know anything else about this area.", + "display_name": "hjaalmarch_imperial_camp", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hjaalmarch Stormcloak Camp is a Stormcloak military encampment located east of Morthal in Hjaalmarch.You do not know anything else about this area.", + "display_name": "hjaalmarch_stormcloak_camp", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Robber's Gorge is a small bandit camp and cave located west-southwest of Morthal in Hjaalmarch.You do not know anything else about this area.", + "display_name": "robber's_gorge", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Talking Stone Camp is a giant camp located northeast of Rorikstead in Hjaalmarch.You do not know anything else about this area.", + "display_name": "talking_stone_camp", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Abandoned Shack is an isolated house located east-southeast of Solitude in Hjaalmarch. No one really knows who the shack belonged to, or what purpose it had. However it is rumored to be haunted and best stayed away from.You do not know anything else about this area.", + "display_name": "abandoned_shack", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Crabber's Shanty is a small, run-down shack located on the banks of the River Hjaal, southwest of Morthal.You do not know anything else about this area.", + "display_name": "crabber's_shanty", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Meeko's Shack is a dwelling located on the edge of the Hjaalmarch marshlands, west-northwest of Morthal. You do not know anything else about this area.", + "display_name": "meeko's_shack", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Snowhawk is a medium-sized fort located west of Morthal.You do not know anything else about this area.", + "display_name": "fort_snowhawk", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cold Rock Pass is a small mountain passage located south-southwest of Morthalin Whiterun Hold. You do not know anything else about this area.", + "display_name": "north_cold_rock_pass", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cold Rock Pass is a small mountain passage located south-southwest of Morthalin Whiterun Hold. You do not know anything else about this area.", + "display_name": "south_cold_rock_pass", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cold Rock Pass is a small mountain passage located south-southwest of Morthalin Whiterun Hold. You do not know anything else about this area.", + "display_name": "cold_rock_pass", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dead Men's Respite is a medium-sized Nordic ruin located southwest of Morthal in Hjaalmarch.You do not know anything else about this area.", + "display_name": "dead_men's_respite", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Folgunthur is a medium-sized Nordic ruin located southeast of Solitude and west of the Abandoned Shack in Hjaalmarch. You do not know anything else about this area.", + "display_name": "folgunthur", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kjenstag Ruins is a small outdoor Nordic ruin located east-northeast of Morthal in Hjaalmarch. You do not know anything else about this area.", + "display_name": "kjenstag_ruins", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Labyrinthian is a vast and ancient Nordic ruin located southeast of Morthal, situated in a mountain pass that connects Hjaalmarch and Whiterun Hold. It used to be a mighty city a long time ago under the rule of the Dragon cult.You do not know anything else about this area.", + "display_name": "labyrinthian", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lost Valkygg is a small Nordic ruin located northeast of Labyrinthi in Hjaalmarch.You do not know anything else about this area.", + "display_name": "lost_valkygg", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rannveig's Fast is a small Nordic ruin located east-northeast of Rorikstead in Whiterun Hold. You do not know anything else about this area.", + "display_name": "rannveig's_fast", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ustengrav is a medium-sized Nordic ruin located northeast of Morthal and south in Hjaalmarch.You do not know anything else about this area.", + "display_name": "ustengrav", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mzinchaleft is a medium-sized Dwarven ruin located southwest of Dawnstar and north of Frostmere Crypt in Hjaalmarch.You do not know anything else about this area.", + "display_name": "mzinchaleft", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Brood Cavern is a small cave located southwest of Morthal in HjaalmarchYou do not know anything else about this area.", + "display_name": "brood_cavern", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Movarth's Lair is a small cave located north-northeast of Morthal.You do not know anything else about this area.", + "display_name": "movarth's_lair", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orotheim is a small cave located northeast of Rorikstead in Hjaalmarch. You do not know anything else about this area.", + "display_name": "orotheim", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Forebears' Holdout is a small cave located southeast of Dragon Bridge in Haafingar.You do not know anything else about this area.", + "display_name": "forebears'_holdout", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Wreck of the Icerunner is a location east of Solitude, where an Imperial ship has run aground. The ship was originally transporting passengers and cargo between Skyrim and Cyrodiil, there are rumors that a noteable imperial scholar, who you do not know the name of, was looking for a rare unkown artifact in Skyrim.You do not know anything else about this area.", + "display_name": "wreck_of_the_icerunner", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Eldersblood Peak is a mountaintop dragon lair located south of Morthal in Hjaalmarch.You do not know anything else about this area.", + "display_name": "eldersblood_peak", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skyborn Altar is a mountaintop dragon lair located east-southeast of Morthal and in Hjaalmarch. You do not know anything else about this area.", + "display_name": "skyborn_altar", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Apprentice Stone is one of the thirteen Standing Stones scattered across Skyrim, located on an island in the marsh, just west-northwest of Morthal in Hjaalmarch. When activated, the Apprentice Stone increases magicka regeneration by a large amount but also makes the user more susceptible to magicka damage by an equally large amount, making it a powerful but risky boon for magic users.You do not know anything else about this area.", + "display_name": "the_apprentice_stone", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Lord Stone is one of the thirteen Standing Stones scattered across Skyrim, located east of Morthal in Hjaalmarch. When activated, the Lord Stone grants a moderate boost to your armor rating and a decent amount of magic resistance, making it easier to reach the armor and magic resistance caps. While it offers less defense than the Atronach Stone, it has no associated penalty, making it a more balanced defensive option.You do not know anything else about this area.", + "display_name": "the_lord_stone", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alva's House is a small residence located in Morthal, home to Alva, who you do not know.You do not know anything else about this area.", + "display_name": "alva's_house", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Falion's House is the residence in Morthal. You do not know who Falion is.You do not know anything else about this area.", + "display_name": "falion's_house", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Highmoon Hall is the residence of Idgrod Ravencrone, the Jarl of Hjaalmarch, located in the town of Morthal. This grand hall serves as the administrative center for the region, where Jarl Idgrod Ravencrone oversees the affairs of her hold. You do not know any of the other servants who work here.\nYou do not know anything else about this area.", + "display_name": "highmoon_hall", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Jorgen and Lami's House is located in Morthal. You do not know the occupents of the house.You do not know anything else about this area.", + "display_name": "jorgen_and_lami's_house", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Moorside Inn is the inn in Morthal. You do not know who runs the Inn.You do not know anything else about this area.", + "display_name": "moorside_inn", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Thaumaturgist's Hut is an alchemy shop located in Morthal. You do not know who runs the shop.You do not know anything else about this area.", + "display_name": "thaumaturgist's_hut", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Thonnir's House is the residence of Thonnir located in Morthal. You do not know who Thonnir is.You do not know anything else about this area.", + "display_name": "thonnir's_house", + "emotion": "", + "importance": 0.4, + "location": "Hjaalmarch", + "tags": [], + "type": "LOCATION" + } + ], + "entry_count": 76, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Locations - Hjaalmarch", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/Oghma_-_Locations_-_Other.sknpack b/oghma-sknpack/Oghma_-_Locations_-_Other.sknpack new file mode 100644 index 0000000..6764439 --- /dev/null +++ b/oghma-sknpack/Oghma_-_Locations_-_Other.sknpack @@ -0,0 +1,1510 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Tamrielic lore from CHIM's Oghma Infinium — locations other. Merges educated and common-knowledge entries graded by importance.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "Skyrim, the northernmost province of Tamriel, is a cold, mountainous region historically inhabited by Nords, though it was once home to the Elves, who were displaced by Nordic settlers. The province is ruled by a High King, chosen by the Moot, a council of jarls, and its political structure has undergone significant shifts, especially following the Pact of Chieftains in 1E 420. Skyrim's history includes the rise of the Nords, their overthrow of the Dragon Cult, and the eventual defeat of the Dwemer, whose remnants remain a dark force in the region. The province also saw significant division in the 2nd Era, leading to the formation of two independent kingdoms, Eastern and Western Skyrim, which later reunited during the Tiber War.\n\nGeographically, Skyrim is bordered by Morrowind to the east, Cyrodiil to the south, Hammerfell to the southwest, and High Rock to the west. It is known for its harsh, snowy northern landscapes and milder southern regions. The province contains four of Tamriel's highest peaks and is home to many notable locations, including Orc strongholds and settlements of the Dunmer following the Red Year. Skyrim's history is also marked by the arrival of new races and influences, including Orcs, Elves, and the Thalmor, who have contributed to its complex and often turbulent political landscape. Despite its internal conflicts, Skyrim remains a region rich in culture, legend, and ancient mysteries.", + "display_name": "skyrim", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Red Mountain, known as Sahqo-Strunmah in Dragon Language and Vvardenfell in Dwemer, is a colossal volcano located on the island of Vvardenfell in Morrowind. It stands as the highest peak in Tamriel, although its height has been permanently reduced due to catastrophic eruptions throughout history. The most significant of these occurred during the Sun's Death in 1E 668, the Days of Fire in 2E 882, and the Red Year in 4E 5, the latter causing widespread devastation and a mass exodus of the local population. The volcano is considered one of the most dangerous regions in Vvardenfell, with its ash storms and treacherous terrain.\n\nThe Dwemer established settlements around Red Mountain during the Merethic Era, and the location was the site of the pivotal Battle of Red Mountain in the First Era, which resulted in the mysterious disappearance of the Dwemer and the rise of the Tribunal. In later centuries, the volcano became associated with Dagoth Ur, a being who emerged from within it and challenged the Tribunal's power. To contain the Ash Blight emanating from the mountain, the Tribunal constructed the Ghostfence, restricting access to the area. Following the defeat of Dagoth Ur by the Nerevarine in 3E 427, the stability of the mountain was further compromised, leading to the catastrophic Red Year eruption in 4E 5. Despite its perilous nature, the region is home to unique flora and fauna adapted to the harsh volcanic environment, including ash hoppers and scathecraw, and remnants of ancient Dwemer citadels hidden within its slopes.", + "display_name": "red_mountain", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Morrowind, formerly known as Dwemereth, Veloth, Resdayn, and Dunmereth, is a province located in the northeastern region of Tamriel, primarily inhabited by the Dunmer, or Dark Elves. The province is characterized by the large island of Vvardenfell, which features the iconic and ash-spewing Red Mountain as its central landmark. Morrowind's geography includes territory on the continental mainland, bordered by the Inner Sea to the south and the Sea of Ghosts to the north.\n\nHistorically, Morrowind has also claimed the island of Solstheim, located to the north, although it was not traditionally regarded as part of any specific province. Following the catastrophic events of the Red Year in 4E 5, the Nords of Skyrim formally conceded Solstheim to Morrowind in 4E 16, allowing the Dunmer to settle the island without opposition. The culture and history of Morrowind are rich, influenced by its unique geography and the legacy of its ancient civilizations.", + "display_name": "morrowind", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vvardenfell, also known as the Black Isle, is a large island situated within the bay-like Inner Sea of Morrowind, bordered by the mainland except for its northern coast, which meets the Sea of Ghosts. The island is dominated by the towering volcano, Red Mountain, and derives its name from the original Dwemeri term for the mountain, meaning \"City of the Strong Shield.\" The landscape of Vvardenfell is characterized by arid wastelands, rocky highlands, and coastal wetlands that host a variety of unique flora and fauna. The volcanic activity of Red Mountain, including lava flows and ash-falls, contributes to a constant cycle of ecological renewal, enriching the soil and allowing new plants and fungi to flourish in the aftermath of eruptions.\n\nHistorically, Vvardenfell was home to House Dagoth, the only Chimer clan with its capital located on the island, alongside a significant Dwemer kingdom. However, the influence of Dagoth Ur and the corruption of the Ash Blight dramatically impacted the island's environment and its inhabitants, leading to a noticeable decline in its vibrancy by the late Third Era, including the extinction of native species such as Cliff Striders and Nix-Oxen. The island faced catastrophic destruction during the Red Year in 4E 5 when the Ministry of Truth collided with the city of Vivec, triggering a massive eruption of Red Mountain. The resulting ash coverage forced the majority of Vvardenfell's population to evacuate, marking a significant turning point in the region's history.", + "display_name": "vvardenfell", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Akavir, often referred to as Dragon Land, is a vast continent located east of Tamriel, home to various unique races and cultures. The two continents share a tumultuous history marked by animosity and conflict, with Akavir having launched several invasions into Tamriel, and vice versa. Much of what Tamriel knows about Akavir is considered incomplete or potentially inaccurate, shrouded in mystery and speculation.", + "display_name": "akavir", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Adamantine Tower, also known as the Balfiera Tower, Direnni Tower, or Ada-mantia, is an ancient and towering structure located at the highest point of the Isle of Balfiera in the Iliac Bay. Renowned as the oldest known structure in Tamriel, its construction is estimated to date back to around ME 2500. The tower has served various purposes over the centuries, including as a fortress, prison, and palace for the Direnni Hegemony. Despite numerous modifications to its exterior, the tower's central cylindrical core of metal remains untouched, rumored to extend deep into the ground, with its depths still largely unexplored.", + "display_name": "adamantine_tower", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The White-Gold Tower, often referred to simply as White-Gold, is the central spire of the Imperial City, located in the Palace District along Green Emperor Way. This grand structure was constructed by the early Aldmeri migrants to Cyrodiil during the middle Merethic Era, serving as the heart of the region inhabited by their descendants, the Ayleids. Originally known as the Temple of the Ancestors, the tower housed the Ten Ancestors, a collection of statues made from meteoric iron and glass. Established as an independent city-state around 1E 0, the tower remained a significant political and cultural center until the Alessian Slave Rebellion culminated in its capture in 1E 243.\n\nFollowing its conquest by human forces led by Morihaus, the White-Gold Tower became a symbol of the emerging human-dominated Empires, eventually serving as the Imperial Palace. Some legends suggest that the tower's presence altered the surrounding landscape of Cyrodiil, transforming it from a subtropical jungle into temperate forests and fields. Throughout its history, the tower has been a repository of knowledge and power, housing the vaults and libraries of the Moth Priesthood. By 2E 582, the Ruby Throne was situated on its ground floor, while by 3E 433, this area had become the meeting place for the Elder Council. The White-Gold Tower stands as a testament to the intertwining of Aldmeri and human histories, embodying the legacy of power and transformation in Tamriel.", + "display_name": "white_gold_tower", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Crystal Tower, also known as the Crystal-Like-Law or Lawful Crystal, is an ancient and mystical structure situated near the northern tip of Summerset Isle, northwest of Cloudrest. Erected by the early Aldmer as a tribute to their ancestors, it holds significant spiritual and cultural importance to the Altmer. Before the establishment of the Arcane University, the Crystal Tower was regarded as the foremost center of magical learning in Tamriel, featuring a radiant white interior that housed a Great Library and a treasury filled with ancient relics, including maps attributed to Topal the Pilot. Additionally, it was famous for The Bestiary, a collection of dangerous creatures cared for by trolls.\n\nAs one of the legendary Towers that help stabilize the Mundus, the Crystal Tower existed concurrently across all realms of the Aurbis, functioning as a gateway to various realities. The summit of the tower housed the Tower's Stone, known as Transparent Law, which has been theorized to bestow omnipresence within the Aurbis upon its controller. To prevent misuse of this power, the Sapiarchs created two Resolute Diamonds, artifacts that must be attuned to before entry into the Crystal Tower is granted. The structure stands as a symbol of the Altmer's ancient wisdom and magical prowess, embodying their reverence for their heritage and the mystical forces of the universe.", + "display_name": "crystal_tower", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Yokuda is a continent located to the west of Tamriel, known as the ancestral homeland of the Redguards. The continent is historically significant as it was the birthplace of prominent Redguard heroes, such as Frandar Hunding and his son Divad, and is renowned for giving rise to the martial tradition of sword-singing.\n\nIn the First Era, much of Yokuda sank into the sea, leading to the migration of the Redguard people to Hammerfell around 1E 808. The native language of Yokuda, known as Yoku, was largely supplanted by other languages following this migration, which was aimed at facilitating foreign trade. Additionally, Yokuda was once home to an enigmatic Aldmeri race known as the Lefthanded Elves, although this group is now considered extinct.", + "display_name": "yokuda", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Coldharbour is a bleak and desolate realm of Oblivion, presided over by Molag Bal, the Daedric Prince of Domination. This realm serves as a twisted reflection of Nirn, constructed through a combination of mocking imitation and the outright appropriation of its features. Coldharbour is characterized by its lifeless landscape and is populated by Daedra as well as the Soul Shriven, mortals condemned to eternal torment. Those who have made pacts with Molag Bal can also be found residing within this grim plane, while the souls of vampires are directed to Coldharbour upon their death.", + "display_name": "coldharbour", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Atmora, meaning \"Elder Wood\" in Ehlnofex, is a continent located to the north of Tamriel. According to tradition, it is believed to be the original homeland from which the first humans migrated to Tamriel. The name \"Atmora\" is a corrupted form of the Aldmeris term \"Altmora,\" which refers to the northernmost landmass inhabited by the Mer (Elves).\n\nIn ancient Nords' lore, Atmora was revered as \"the land of truth.\" It served as the homeland for the Nedic peoples, who are considered the ancestors of modern-day Nords, Imperials, and Bretons. The cultural and historical significance of Atmora remains an essential aspect of the identity and heritage of these human races in Tamriel.", + "display_name": "atmora", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Colovia, also known as the Colovian West or Old Colovia, constitutes the western half of the province of Cyrodiil. Renowned for its strong-willed and industrious inhabitants, Colovia has a rich martial tradition, with many citizens serving in the Imperial Legion. The region is characterized by its rugged landscapes, which include hilly terrains along the Gold Road, dense forests in the Great Forest, and expansive grasslands within the Imperial Reserve, a well-known area for hunting.\n\nThe Colovians are known for their self-sufficiency and craftsmanship, particularly in timber, which is highly sought after for construction and weaponry. While most Colovians reside in major cities such as Anvil, Chorrol, Kvatch, and Skingrad, the nobility often inhabit private estates near the Gold Coast. Despite shifts in territorial borders over the eras, Colovia remains a vital part of Cyrodiil, blending a fierce frontier spirit with a deep appreciation for their agricultural and natural resources.", + "display_name": "colovia", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Tamriel is one of the primary continents on the planet Nirn, often referred to as \"the Arena\" due to its history of conflict and war. Known for its rich tapestry of cultures and races, Tamriel is home to at least a dozen distinct races, each with their own traditions and histories. The continent is divided into nine provinces, which have occasionally united under the rule of various empires, most notably the Empire of Tamriel.\n\nThe name \"Tamriel\" translates to \"Dawn's Beauty\" in Elvish, while different cultures have their own interpretations, such as Tamri-El by the Ayleids and Taazokaan by the Dov. Despite its beauty, Tamriel's history is marred by conflict, leading many to refer to their homeland as \"the Arena,\" a reflection of the constant struggles faced by its inhabitants. Throughout its history, there have been fleeting moments of unity among the people, such as the formation of the All Flags Navy and the successful resistance against invading forces, but these instances are rare in a land defined by turmoil and strife.", + "display_name": "tamriel", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Oblivion, often referred to as Hell or the Outer Realms, is a vast and complex realm within the Aurbis, primarily inhabited by the Daedra, who are et'Ada that did not participate in the creation of the Mundus. It encompasses at least sixteen major Planes, each presided over by a Daedric Prince, and contains over 37,000 documented planes, including various chaos realms and pocket realities. While many of these realms are governed by powerful Daedra, some are ruled by mortals who have achieved immortality.\n\nOblivion is considered a distinct universe separate from Mundus, with its landscapes shaped by the perceptions of those who enter, often creating illusions that resemble familiar earthly elements. The nature of each Daedric realm varies widely, ranging from the serene and beautiful to the bizarre and desolate. For instance, notable realms include Apocrypha, ruled by Hermaeus Mora; Coldharbour, ruled by Molag Bal; and the Shivering Isles, formerly ruled by Jyggalag and now by Sheogorath. Each realm reflects the character and essence of its ruler, embodying the chaotic and ever-changing nature of Oblivion itself.", + "display_name": "oblivion", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Oblivion, often referred to as Hell or the Outer Realms, is a vast and complex realm within the Aurbis, primarily inhabited by the Daedra, who are et'Ada that did not participate in the creation of the Mundus. It encompasses at least sixteen major Planes, each presided over by a Daedric Prince, and contains over 37,000 documented planes, including various chaos realms and pocket realities. While many of these realms are governed by powerful Daedra, some are ruled by mortals who have achieved immortality.\n\nOblivion is considered a distinct universe separate from Mundus, with its landscapes shaped by the perceptions of those who enter, often creating illusions that resemble familiar earthly elements. The nature of each Daedric realm varies widely, ranging from the serene and beautiful to the bizarre and desolate. For instance, notable realms include Apocrypha, ruled by Hermaeus Mora; Coldharbour, ruled by Molag Bal; and the Shivering Isles, formerly ruled by Jyggalag and now by Sheogorath. Each realm reflects the character and essence of its ruler, embodying the chaotic and ever-changing nature of Oblivion itself.", + "display_name": "hell", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cyrodiil, the heartland of Tamriel and home to the Imperials, serves as the seat of the Empire and the location of its capital, the Imperial City. Dominated by the iconic White-Gold Tower, Cyrodiil is central to Tamriel's history and culture. Though initially described as a jungle, its climate is temperate, possibly altered by Emperor Tiber Septim. The province's early history is marked by the rule of the Ayleids, who enslaved the native Nedic people. The rebellion led by Alessia in 1E 242 ended Ayleid dominance, establishing the Alessian Empire and shaping Cyrodiil into a center of human governance and culture. The Alessians expanded westward, influenced by the prophet Marukh's teachings, which codified much of Tamriel’s religion.\n\nCyrodiil’s history is defined by cycles of conquest and upheaval, from the Akaviri invasion of 1E 2703, which united Tamriel under Emperor Reman I, to the eventual collapse of the Second Empire. The chaos of the Interregnum ended with Tiber Septim's rise, uniting Tamriel under the Third Empire. The Fourth Era brought new challenges, including the Great War against the Aldmeri Dominion, marked by the brutal Battle of the Red Ring and the controversial White-Gold Concordat. While Cyrodiil remains the seat of the Empire, these events have left a lasting impact, straining relations with Skyrim and reshaping the political landscape of Tamriel.", + "display_name": "cyrodiil", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Black Marsh, also called Argonia by the Mer, is a dense and treacherous swampland in southeastern Tamriel, home to the Argonians and the sapient Hist trees. The Argonians, who organize into tribes rather than a unified nation, thrive in this tropical and hostile environment filled with poisonous plants and dangerous predators. Foreign attempts at colonization and agriculture have largely failed due to the land's resilience against outside interference.\n\nIn addition to Argonians, Black Marsh has been home to various other sapient races, including the now-extinct Kothringi and Lilmothiit, who were wiped out by the Knahaten Flu. The region also hosts unique creatures like the serpent-bodied Lamias and the fox-like Lilmothiit, adding to its rich and mysterious cultural and ecological diversity. Black Marsh remains one of the most enigmatic provinces of Tamriel, resisting full integration into the Cyrodiilic Empire.", + "display_name": "black_marsh", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elsweyr is a southern coastal region of Tamriel and the homeland of the feline Khajiit. The province is divided into two distinct climates: the dry savannahs and badlands of Anequina in the north, and the fertile jungles and rainforests of Pellitine in the south. Historically, the land was home to sixteen Khajiiti clans, which evolved into kingdoms named after their regions, but hardships such as the Thrassian Plague led to their consolidation into the two kingdoms of Anequina and Pellitine. These eventually united as the Elsweyr Confederacy, only to split again during the Third Aldmeri Dominion.\n\nElsweyr shares borders with Valenwood to the west, Cyrodiil to the north and east, and has access to Topal Bay and the Southern Sea to the south. Notable geographic features include Lake Vread in the eastern region and Khenarthi's Roost, an island in the Southern Sea that is part of the province. The Khajiit’s unique culture and connection to their homeland make Elsweyr a vital and enigmatic part of Tamriel.", + "display_name": "elsweyr", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hammerfell, located in western Tamriel, is the homeland of the Redguards, who migrated from the partially submerged Yokuda. Known for its diverse landscapes, Hammerfell features vibrant coastal regions, grasslands, temperate mountains, and the vast Alik'r Desert, with notable thermal activity near the Dragontail Mountains. The province borders High Rock to the north, Skyrim to the northeast, and Cyrodiil to the southeast, with extensive access to the Illiac Bay, the Abecean Sea, and the Eltheric Ocean. Hammerfell is divided into regions such as the Alik'r Desert, Craglorn, and Khefrem, and includes islands like Stros M'Kai and Herne.\n\nThe Redguards primarily inhabit port cities along the coasts, while the interior hosts small farms and nomadic tribes. Hammerfell’s history is shaped by its strategic location and natural resources, making it a center of maritime activity and cultural resilience. From temperate to tropical climates, its landscapes and volcanic regions, such as those near Elinhir, highlight the province’s dynamic geography and enduring significance in Tamrielic history.", + "display_name": "hammerfell", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "High Rock, located in northwestern Tamriel, is home to the Bretons, who have divided the province into numerous city-states and minor kingdoms. The region also historically housed Orsinium, the Orcs' City-State. High Rock’s history traces back to the Direnni Hegemony, which once ruled the area before its dissolution in the First Era, leaving behind ruins and a lasting influence on Breton culture. The rugged terrain, including highlands, isolated valleys, and diverse landscapes like temperate forests and snowy mountains, has fostered a strong sense of independence among the Breton clans. Other races, such as Orcs, Snow Elves, and centaurs, have also called High Rock home at various points in its history.\n\nThe province is divided into six main regions: Glenumbra, Stormhaven, Rivenspire, the Western Reach, northern Bangkorai, and Wrothgar, alongside numerous islands like Balfiera and Betony. High Rock is bordered by Hammerfell to the southeast and Skyrim to the east, with the Iliac Bay and surrounding seas providing access to its coastal areas. Its unique geography and bardic traditions contribute to a rich cultural heritage, uniting its fiercely independent clans under a shared Breton identity.", + "display_name": "high_rock", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Summerset Isles, officially renamed Alinor in 4E 22, is a province in southwestern Tamriel consisting of 14 islands, including the prominent Summerset Isle, Auridon, and the elusive Artaeum. Home to the Altmer (High Elves), the region boasts a rich history dating back to the Early Merethic Era when the Aldmer first arrived, claiming the land and founding cities like Firsthold and the Crystal Tower. Over time, the Aldmer evolved into the Altmer, establishing a strict class system with their society centered around the monarchy in Alinor. Despite their idyllic lifestyle, the Altmer faced frequent conflicts, including invasions by the necromantic Sload and the rival Maormer. The Summerset Isles were eventually incorporated into the Second Empire under favorable terms, minimizing contact with outsiders.\n\nDuring the Oblivion Crisis, the Thalmor rose to power by successfully defending the Isles, later overthrowing the ancient monarchy and renaming the region Alinor. This marked the foundation of the Third Aldmeri Dominion, with Valenwood and Elsweyr joining as client states. The Thalmor's dominance persisted into the Fourth Era, significantly influencing Tamriel's political landscape. The Summerset Isles remains a symbol of Altmeri culture, history, and their enduring pursuit of power and isolation.", + "display_name": "summerset_isles", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Valenwood is a lush, densely forested province in southwestern Tamriel, renowned for its sprawling rainforests, rolling hills, and mangrove swamps. Home to the Bosmer (Wood Elves), as well as races like Wood Orcs, Imga, and Centaurs, Valenwood is a natural haven often referred to as \"Tamriel's garden.\" A unique feature of the region is its massive, migratory trees, some of which serve as cities. Among these is Falinesti, a mile-high tree that acts as the capital of Valenwood. The province is bordered by Elsweyr to the east, Cyrodiil to the north, and lies across the sea from the Summerset Isles.\n\nThe region is divided into Grahtwood, Greenshade, Malabal Tor, and western Reaper's March, with its landscapes ranging from coastal mangroves to temperate inland forests nourished by heavy rainfall. The Bosmer inhabit timber clanhouses scattered across Valenwood, blending seamlessly with the natural environment. Despite its beauty, the province's dense woodlands and remote settlements make travel difficult, with only a few Imperial roads connecting its widely separated communities.", + "display_name": "valenwood", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Anvil, located on the Gold Coast by the Abecean Sea, is a prominent harbor city and the seat of County Anvil in southwestern Cyrodiil. Known for its Redguard-influenced architecture and bustling maritime trade, Anvil features notable districts such as Castle Anvil, Chapelgate, and Harborside. The city's landmarks include the Chapel of Dibella, the mysterious Mermaid Statue, and Benirus Manor, which carries a dark history of necromancy. Anvil also hosts the Fighters Guild and a Mages Guild chapter specializing in Restoration. Historically, the city served as a pirate haven before being transformed into a fortified settlement by King Bendu Olo, who led the All Flags Navy against the Sload in the First Era.\n\nThroughout its history, Anvil has endured periods of turmoil and prosperity. In the Second Era, it became a free city under pirate control, and during the Oblivion Crisis in the Third Era, it faced attacks by Daedra, thieves, and the Dark Brotherhood. Despite these challenges, the city thrived under Count Corvus Umbranox and his lineage. Anvil's strategic location made it a target during the Great War in the Fourth Era, resulting in a siege by the Aldmeri Dominion. Despite this, Anvil remains a vital cultural and economic hub, blending its rich maritime heritage with the resilience of its people.", + "display_name": "anvil", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bravil, a Nibenese city on the banks of Niben Bay in southern Cyrodiil, is known for its squalid charm and rich history. Surrounded by the tropical rainforests of the Nibenay Valley, the city is crisscrossed by the Larsius River and characterized by its wooden, stacked buildings, giving it a distinctive appearance. Beneath Bravil lies an ancient Ayleid settlement, a testament to its deep roots in Tamrielic history. The city's symbol is the wild stag, and it has been shaped by events such as the Alessian conquest, the Oblivion Crisis, and the Great War, where it endured sieges and turmoil.\n\nThroughout its history, Bravil has faced economic struggles and social unrest, including periods of independence and conflict with neighboring Leyawiin. Its darker chapters include riots, skooma wars, and involvement with the Dark Brotherhood, culminating in the destruction of the iconic Lucky Old Lady statue. Despite its hardships, Bravil remains a notable cultural and historical site, with its Ayleid ruins, connections to Imperial legends, and role in Cyrodiil's storied past.", + "display_name": "bravil", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bruma, a Nibenese city nestled in the Jerall Mountains north of the Imperial City, is known for its Nordic population and snow-covered, cold climate. The city's architecture reflects its Nordic influence, and its residents practice a mix of traditional Nordic beliefs and the worship of the Divines. The Great Chapel of Talos dominates the city center, and Bruma is connected to other regions by the Silver Road to the Imperial City and the Orange Road to Chorrol. Nearby landmarks include the historic Cloud Ruler Temple, and the city's underground network of sewers and caves has been the site of significant events, including use by the Mythic Dawn during the Oblivion Crisis.\n\nBruma has a storied history, playing a key role in various conflicts, such as Varen's Rebellion and the Oblivion Crisis in 3E 433. The city successfully repelled a Daedric siege during the Crisis, thanks to Martin Septim and reinforcements from other Cyrodiilic cities. Later, Bruma endured attacks from Molag Bal's forces during the Planemeld in 2E 582 and suffered losses like the destruction of its Mages Guild hall by the Order of the Black Worm. In the Fourth Era, Bruma faced continued challenges, including the destruction of the Dark Brotherhood sanctuary and raids by groups like the Crimson Dirks. Despite these adversities, Bruma remains a resilient and culturally rich city in northern Cyrodiil.", + "display_name": "bruma", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cheydinhal is a prosperous city in the eastern Nibenay region of Cyrodiil, near the border with Morrowind. Known for its picturesque beauty, Cheydinhal features lush greenery, flowing waterways, and a blend of Cyrodiilic and Dunmeri architectural styles, reflecting its close ties to Morrowind and its significant Dunmer population. The city is connected to the Imperial City via the Red Ring Road and is surrounded by fertile farmlands and scenic landscapes.\n\nCheydinhal is home to the Great Chapel of Arkay and notable guild chapters, including the Fighters Guild and the Mages Guild. Beneath its peaceful exterior, the city also hosts the sanctuary of the Dark Brotherhood, a secretive and infamous organization of assassins. Cheydinhal's history is shaped by its cultural diversity, strategic location, and role as a hub for trade and governance in eastern Cyrodiil.", + "display_name": "cheydinhal", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chorrol is a picturesque Colovian town located in northwestern Cyrodiil, nestled between the Great Forest and the Colovian Highlands near the Hammerfell border. Known for its serene environment, Chorrol is shaded by large oak canopies, with the iconic Great Oak standing at its center. The town is divided into districts, including Castle Chorrol, Chapel Street, and Great Oak Place, and is surrounded by thick walls and guard towers for protection. It is home to notable landmarks such as the Great Chapel of Stendarr, Weynon Priory, and the historic statue of Saint Osla at Fountain Gate.\n\nChorrol has a rich history dating back to the Merethic Era and has played a role in many key events, such as the Colovian Revolt led by Varen Aquilarios and the Oblivion Crisis of the Third Era when it came under siege by Daedric forces. Countess Arriana Valga ruled the town at the close of the Third Era, and its legacy as a hub of Colovian culture and trade endures into the Fourth Era. The town's blend of history, beauty, and community makes it a notable gem in Cyrodiil's landscape.", + "display_name": "chorrol", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cloud Ruler Temple, perched high in the Jerall Mountains near Bruma, was an ancient and iconic stronghold of the Blades, showcasing dramatic Akaviri architecture. Constructed by the Akaviri Dragonguard during the founding of the Second Empire under Reman Cyrodiil, it served as the Blades' headquarters until the end of the Third Era. The temple was revered for its Great Hall, where swords of those who died protecting the Dragonborn were displayed, and for its archives, which housed invaluable lore on the Blades.\n\nThroughout its history, Cloud Ruler Temple played a crucial role in Tamrielic events. It became a refuge for Martin Septim during the Oblivion Crisis of 3E 433, where the Blades aided his efforts to thwart Mehrunes Dagon. In the Fourth Era, the temple was a key target during the Great War, as the Thalmor besieged it to eliminate the Blades, who had orchestrated resistance missions against the Dominion. The siege led to the destruction of the temple’s archives, and only a few, like Acilius Bolar, survived to continue the Blades’ legacy in exile.", + "display_name": "cloud_ruler_temple", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Imperial City, also known as Cyrodiil City, is the cultural and political heart of Tamriel, located on City Isle in the center of Lake Rumare. Dominated by the iconic White-Gold Tower, the city serves as the capital of Cyrodiil and the Tamrielic Empire. Its origins trace back to the Merethic Era, when the Aldmer constructed the White-Gold Tower as a temple, marking the beginnings of Ayleid civilization in the region. Over centuries, the city became the seat of power for various empires, from Alessia's rebellion to the rise of the Reman and Septim Dynasties. Despite its grandeur, the city has endured numerous challenges, including sieges, invasions, and disasters such as the Oblivion Crisis and the Great War.\n\nThe city is divided into several districts, each with distinct roles and architectural styles. Key areas include the Market District, a hub of commerce; the Arboretum, home to statues of the Divines; and the Temple District, housing the Temple of the One. The Arena District hosts the Imperial Arena, famous for its bloody spectacles, while the Waterfront District serves as a harbor and residential area for the city's poorer residents. Beneath the city lies an extensive network of sewers and Ayleid ruins, often used as hideouts by outlaws and secretive organizations like the Thieves Guild. Throughout history, the city has been a focal point of Tamrielic events, from the Alessian Slave Rebellion to the Planemeld, showcasing its enduring significance as the center of Tamrielic culture and governance.", + "display_name": "imperial_city", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kvatch is a Colovian city located in the hinterlands of the Gold Coast, perched atop a bluff overlooking the surrounding forests. Known for its iconic coat of arms—a black Dire Wolf on a gray background—Kvatch features key landmarks such as the imposing Kvatch Castle, the Great Chapel of Akatosh, and a renowned arena. Its position along trade routes between Anvil and Skingrad has historically made it a significant settlement, with its county extending northwest to the Brena River at the Hammerfell border. The city has a storied history dating back to the First Era, including alliances formed during the collapse of the Alessian Empire and the founding of the Order of the Hour in the Second Era.\n\nThroughout its history, Kvatch has faced numerous challenges, including the sack by the Camoran Usurper in 3E 249 and the devastating Oblivion Crisis in 3E 433, during which the city was razed by Daedra. Despite the destruction, the city's courage and resilience were epitomized by figures like Antus Pinder, memorialized with a statue for his valiant defense of the city. By the Fourth Era, Kvatch was rebuilt and restored to prominence, contributing to Cyrodiil's defense during the Great War. Its enduring legacy is one of resilience and recovery, standing as a testament to the strength of its people and their faith in Akatosh.", + "display_name": "kvatch", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Leyawiin, a Nibenese city in southeastern Cyrodiil, sits at the mouth of the Niben River where it meets Topal Bay. Known as \"the city that spans the waters,\" it occupies a vital position on the Trans-Niben, the narrow strip of land between Elsweyr and Black Marsh. The city is divided into four districts: Chapel District, Guild Plaza, Main Street, and Castle Leyawiin. Its symbol, the Ivory Horse, is steeped in myth, with ties to Pelinal Whitestrake or a legendary white horse that once protected the riverbanks. Leyawiin honors Topal the Pilot as its patron saint, and his statue adorns the city’s southwest wall, reflecting its cultural heritage.\n\nHistorically, Leyawiin has experienced repeated upheavals and significant cultural shifts. After its involvement in the Alessian Slave Rebellion in the First Era, it fell under Khajiiti control during the Anequine Conquests. By the Second Era, Leyawiin's governance transitioned towards the influential Chamber of Legates, and it endured political and military turmoil during the Three Banners War. In the Third Era, tensions arose from its annexation of the Trans-Niben and the racial frictions among its diverse population. Leyawiin faced destruction during the Oblivion Crisis and later, in the Fourth Era, suffered Dominion occupation during the Great War. Throughout its history, Leyawiin has remained a dynamic city, shaped by its strategic location and resilient populace.", + "display_name": "leyawiin", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sancre Tor, known as the \"Golden Hill,\" was an ancient city in the Jerall Mountains of Colovia, central to the history and mythology of Cyrodiil. Believed to be the birthplace and resting place of Reman Cyrodiil, it was associated with various legends, including Alessia's divine inspiration and the mythical union of King Hrol and Saint Alessia, which supposedly birthed the Reman dynasty. Initially a vibrant settlement marked by its sacred crypts and fortifications, it fell into ruin after the collapse of the Reman Dynasty. Over the centuries, Sancre Tor became a haunted site, known for its crypts filled with undead and its ties to pivotal events such as the hiding of the Amulet of Kings during the Second Era.\n\nThroughout history, Sancre Tor played a significant role in the Elder Scrolls lore, serving as a battleground for General Talos (later Tiber Septim) during the Tiber Wars and as the site of his eventual ascension to godhood. In the Third Era, the ruins were corrupted by the Underking and sealed by the Blades, with its guardians cursed to undeath. The Hero of Kvatch later unsealed the ruins, freed the cursed Blades, and retrieved the Armor of Tiber Septim during their quest. Sancre Tor remains a symbol of both glory and decay, reflecting the cyclical nature of power and its legacy in Tamrielic history.", + "display_name": "sancre_tor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skingrad, a prominent Colovian town in the West Weald region of Cyrodiil, is celebrated for its prosperity, cultural significance, and agricultural contributions, particularly its renowned wines, tomatoes, and cheeses. Known as the \"Gem of Old Colovia,\" Skingrad embodies Colovian virtues of independence, hard work, and resilience. Governed by Count Janus Hassildor during the late Third Era, the town flourished under his strict leadership, minimizing crime and maintaining order. Its vineyards, such as those owned by the Surilie brothers and Tamika, have made Skingrad a centerpiece of Cyrodiil's winemaking tradition. Architecturally, the town is divided into districts connected by gates and bridges, featuring landmarks like the Great Chapel of Julianos and Castle Skingrad, the count's residence and rumored haven for his vampirism.\n\nHistorically, Skingrad played a key role in resisting the Alessian Order's theocratic dominance, contributing to the formation of the autonomous Colovian Estates. Under figures like King Rislav Larich, it became a bastion of independence and military strength, defeating the Alessian forces and helping dissolve their rule. The town's importance continued through the eras, from its Second Era reputation as a center for intellectuals and winemaking to its survival of the Oblivion Crisis in the Third Era, where it benefited from the Hero of Kvatch’s aid. In the Fourth Era, Skingrad remained resilient, with its vineyards still thriving and its legacy enduring as a symbol of Colovian pride and stability amidst Cyrodiil's turbulent history.", + "display_name": "skingrad", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stormhold, one of the largest cities in Black Marsh, serves as the capital of the Shadowfen region and is steeped in a history of conflict, resilience, and transformation. Built atop the ancient Ayleid ruins of Silyanorn, Stormhold retains remnants of its past as a hub of Elven slavery during the Dark Elves’ control. The city’s architecture reflects its layered history, combining Argonian mud huts, Ayleid ruins, and Dark Elf stonework. A prominent Hist tree sits at its heart, surrounded by ancient relics, emphasizing its cultural and spiritual significance. During the Second Era, Stormhold became the capital of the Ebonheart Pact’s allied regions, playing a pivotal role in uniting Argonians, Nords, and Dark Elves against external threats, including the Akaviri invasion and the influence of the Aldmeri Dominion.\n\nIn the Third Era, Stormhold's history took a darker turn as it became notorious for its corrupted prison system under Warden Quintus Varus, who exploited prisoners to mine the magical Stormhold Crystals. These events culminated in the heroic efforts of a prisoner who neutralized the corruption caused by Varus’s obsession with the mystical Storm Crystal. By the Fourth Era, the city faced destruction during Umbriel’s undead invasion, highlighting its enduring struggles in the volatile swamps of Black Marsh. Despite its challenges, Stormhold remains a symbol of Argonian resilience and adaptation, blending ancient traditions with the scars of its tumultuous past.", + "display_name": "stormhold", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Torval, one of Elsweyr's eight major cities, is nestled within the lush jungles of the Tenmar Forest, serving as the spiritual and political heart of the Khajiit. Historically a center of worship for the Mane, the revered leader of the Khajiit, Torval's cultural and religious significance dates back to its origins as one of the sixteen ancient Khajiiti kingdoms. Its layout features grand timber palaces surrounded by symmetrical moon-sugarcane gardens, where the Mane meditates and governs. The city is renowned for its rare ochre pigment, southern wines, and temples like the famed Temple of Two-Moons Dance, a hub for hand-to-hand combat training that attracts students from across Tamriel.\n\nThroughout its history, Torval has endured various challenges, from the dissolution of the sixteen kingdoms following the Thrassian Plague to its involvement in conflicts such as the Five Year War and the Slaughter of Torval. In the Second Era, under the leadership of Mane Akkhuz-ri and his Speaker, Lord Gharesh-ri, Torval played a pivotal role in forming the Aldmeri Dominion during the Knahaten Flu crisis. By the Third Era, the city saw rebellion, cultural vibrancy, and significant events such as Emperor Pelagius III's legendary asylum ball. Despite its turbulent history, Torval remains a symbol of Khajiiti resilience and tradition, blending ancient customs with its enduring political and spiritual importance.", + "display_name": "torval", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daggerfall, the capital city of its eponymous kingdom in High Rock, is a prominent and historic settlement in the western region of Glenumbra. Perched on a bluff overlooking the Iliac Bay, it serves as a hub of trade, culture, and political influence. Known for its rich history and strategic location, Daggerfall boasts a mix of medieval architecture, including Castle Daggerfall, the Daggerfall Cathedral, and an intricate network of underground caves and sewers. Divided into districts such as Castle Town, the Harbor District, and the Trade District, the city thrives on commerce, with connections to major routes across Tamriel. Its significance in Breton culture is evident in its reverence for tradition, its obsession with the past, and its vibrant celebrations, including holidays like Dancing Day and the Day of the Dead.\n\nThroughout its long history, Daggerfall has played a pivotal role in the politics and conflicts of Tamriel. From its origins during the Skyrim Conquests to its key involvement in the Siege of Orsinium and the creation of the Daggerfall Covenant in the Second Era, the city has been a center of military and economic activity. In the Third Era, it became the de-facto capital of High Rock under the Third Empire but faced turmoil during events like the War of Betony and the haunting of King Lysandus' ghost. Despite challenges, Daggerfall remains a vital symbol of Breton pride, a bustling trade center, and a testament to the enduring legacy of High Rock's history.", + "display_name": "daggerfall", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sentinel, the capital of its eponymous kingdom in Hammerfell, is a significant cultural and political hub in the northwestern hills overlooking the Iliac Bay. Despite the arid Alik'r Desert surrounding it, the city thrives as a major population center, with fertile fields along the coast supporting its vibrant economy. Founded by the warrior-sailors of Grandee Yaghoub during the Ra Gada migration, Sentinel's history is deeply intertwined with Redguard heritage and resilience. The city is renowned for its architectural marvels, particularly the grand Sentinel Palace (Samaruik), and its bustling market streets that attract both locals and visiting nobility from across Tamriel. Its strategic location has made it a crucial player in trade, controlling a significant portion of Iliac Bay commerce during the Second Era.\n\nThroughout history, Sentinel has endured numerous challenges, including pirate raids, invasions, and the tensions between the Crown and Forebear factions. In the Second Era, the city faced threats such as necromantic armies and internal conflict during the political shifts following High King Thassad II's death. Sentinel remained pivotal during the Third Empire, flourishing as a beacon of opportunity and adventure despite setbacks like the War of Betony. In the Fourth Era, the city demonstrated unity when Forebears came to the aid of Crowns during the Great War, leading to a reconciliation of the two factions. Today, Sentinel stands as a testament to Redguard tenacity, blending cultural richness with a history of overcoming adversity.", + "display_name": "sentinel", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wayrest, a prominent city in the Stormhaven region of High Rock, serves as the capital of the kingdom of the same name. Located at the mouth of the Bjoulsae River on the Iliac Bay, it is a major hub of commerce, culture, and politics in Tamriel. Divided into seven districts, including the bustling Market Square, the Temple District, and the docks along Iliac Bay, Wayrest boasts notable landmarks such as Castle Wayrest, the Temple of Akatosh, and the Wayrest Sewers. Its strategic position has fostered significant trade, making it one of the wealthiest cities in High Rock. Wayrest is also a cultural influence, shaping traditions such as the New Life Festival through its Breton-inspired aesthetics.\n\nFounded as a fishing village in 1E 800, Wayrest rose to prominence after the Fall of Orsinium and became a kingdom by 1E 1100. The city has withstood numerous sieges, such as those by Reachmen under Durcorach the Black Drake and King Ranser during the Ranser's War. Throughout the eras, Wayrest's history has been shaped by political intrigue, including the Daggerfall Covenant's formation, royal disputes, and the Warp in the West. In the Fourth Era, it faced threats such as a corsair siege in 4E 188, where the Forgotten Hero played a pivotal role in its defense. Today, Wayrest remains a testament to Breton resilience and prosperity, thriving as a cultural and economic beacon in Tamriel.", + "display_name": "wayrest", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Balmora, meaning \"Stonewood\" or \"Stoneforest\" in the Dark Elvish tongue, was a prominent city in Vvardenfell, serving as the seat of House Hlaalu's power and the second-largest settlement after Vivec City. Located in the river valley of the West Gash, on the banks of the Odai River, the city was divided into three key districts: the bustling Commercial District, the residential Labor Town, and the affluent High Town. Known for its strategic trade location and Hlaalu-style architecture, Balmora played a vital role in the economic and political landscape of Vvardenfell, acting as a gateway between the region's rugged landscapes and fertile coastlines. Significant landmarks included the Hlaalu Council Manor, the Tribunal Temple, and the Moonmoth Imperial Legion Fort.\n\nHistorically, Balmora was initially a House Redoran stronghold before it was transformed by House Hlaalu through strategic construction projects and business maneuvers. During the Third Era, it grew under Imperial influence, becoming a hub of trade and administration. It played a central role in the Nerevarine Prophecy when the outlander destined to fulfill the prophecy operated from Balmora under the guidance of Caius Cosades. However, the city was devastated in the Red Year (4E 5) due to the eruption of Red Mountain, leaving it in ruins. Rebuilt over time, Balmora persisted into the late Fourth Era as a symbol of resilience, though its exact state in later years remains ambiguous, with conflicting accounts suggesting its abandonment or continued habitation.", + "display_name": "balmora", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Seyda Neen, often called the \"Gateway to Vvardenfell,\" was a small yet significant port village in the southern Bitter Coast region, renowned for its lighthouse, the Grand Pharos. Originating from a House Hlaalu fleet's ill-fated voyage to seek the \"face of Veloth,\" the settlement was constructed from the remnants of the destroyed fleet. Over time, Seyda Neen became a vital stop for Imperial travelers heading to Vvardenfell, with its port managed by House Hlaalu and protected by the Imperial Legion. The village featured Imperial-style architecture built by the Gold Coast Trading Company, a Census and Excise Office for processing visitors, and a silt strider port providing connections to key destinations like Vivec and Balmora.\n\nBy the late Third Era, Seyda Neen served as a bustling hub for maritime activity and trade, though its surrounding swamplands earned it the nickname \"Swamp Fever Capital of the World.\" Wildlife such as cliff racers, slaughterfish, and scribs populated the area, and Imperial cutters patrolled the waters to combat smuggling. However, Seyda Neen's fate remains uncertain following the Red Year (4E 5) and the catastrophic eruption of Red Mountain, which devastated Vvardenfell and surrounding regions. Given its proximity to Vivec City, which bore the brunt of the disaster, it is unlikely Seyda Neen survived intact, leaving its legacy shrouded in mystery.", + "display_name": "seyda_neen", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sadrith Mora, meaning \"Mushroom Forest\" in Dark Elvish, was the seat of power for Great House Telvanni on the island of Vvardenfell. Situated on an island in the Zafirbel Bay, it was accessible primarily by boat or teleportation, and entry required a certification of hospitality. Dominated by Tel Naga, the central Telvanni tower and home of the local councilor, Sadrith Mora was characterized by its mushroom-inspired architecture, sprawling markets, and strict governance by House Telvanni. The city also hosted the Telvanni Council House and Wolverine Hall, an Imperial bastion incongruously located in Telvanni territory. Known for its exclusive culture, the city exemplified Telvanni independence and disdain for outside influence.\n\nIn its history, Sadrith Mora played a critical role in Telvanni politics and magical innovation. During the Second Era, Archmagister Nelos Otheri advanced the House’s magical capabilities, including the creation of the Spore Steed. By the Third Era, the city was ruled by the eccentric Magister Neloth, who gave his support to the Nerevarine during their quest to fulfill prophecy. Sadrith Mora was devastated during the Red Year in 4E 5, when the eruption of Red Mountain destroyed much of Vvardenfell. Though its fate afterward remains unclear, the city's legacy endures as a symbol of Telvanni magical prowess and defiance of convention.", + "display_name": "sadrith_mora", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Castle Ebonheart, also referred to simply as Ebonheart, was the hub of Imperial authority on Vvardenfell. Located near Vivec City, it served as the administrative center for the Vvardenfell district under the leadership of Duke Vedam Dren and his Grand Council. The castle housed the Imperial Chapels, which supported the Duke, his retainers, and the garrison, and acted as a central base for the Imperial Cult. Security was paramount, with the Duke protected by an elite Imperial Guard unit and the Hawkmoth Legion stationed within the castle walls. Castle Ebonheart was a hub for Imperial and House Hlaalu affairs, as the Duke also held the title of Hlaalu Grandmaster. Adjacent to the castle were the East Empire Company offices, bolstered by Imperial security, and diplomatic missions from Skyrim and Black Marsh, the latter advocating for its citizens under Morrowind's unique legal exemptions regarding slavery.\n\nThe castle's origins date back to 2E 582, when Vivec, inspired by the mainland city of Ebonheart, decreed the creation of a counterpart on Vvardenfell. However, it was not until 3E 414, following Vvardenfell's opening for settlement, that Castle Ebonheart was constructed. It quickly became the Imperial capital of the island and a focal point for governance, trade, and diplomacy. Tragically, the proximity of Castle Ebonheart to Vivec City likely led to its destruction in 4E 5, during the Red Year, when the Ministry of Truth fell, triggering the eruption of Red Mountain and devastating the region.", + "display_name": "ebonheart", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blacklight, situated in northwestern Morrowind, serves as the capital of House Redoran and became the provincial capital after the sacking of Mournhold during the Accession War in 4E 6. The city is renowned for its disciplined architecture, hedge maze parks, and bustling harbors. Strategically located near the Velothi Mountains, it connects House Redoran’s expansive holdings across the region. The Rootspire, a central landmark, now hosts the Council of the Great Houses, solidifying Blacklight as the political and cultural heart of Morrowind.\n\nThroughout history, Blacklight has symbolized Redoran resilience and honor. While raiders and bandits plagued the surrounding region in the First Era, the city endured and thrived, withstanding conflicts such as Tiber Septim's invasion and the cataclysmic Red Year in 4E 5. By the Fourth Era, Blacklight's size and grandeur rivaled that of the fallen Mournhold, reflecting centuries of growth and the Redoran ethos of perseverance and strength.", + "display_name": "blacklight", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Clockwork City, created by Sotha Sil, is a mechanical realm designed to replicate Nirn's natural world in miniature while striving for perfection through the fusion of magic and technology. It exists outside conventional space and time, accessible through magical means like the Clockwork Globe. The city consists of three main regions: the Radius, a wilderness emulating Tamriel's biomes; the Brass Fortress, the central settlement; and the Mechanical Fundament, housing Sotha Sil's control center, the Throne Aligned. The City is maintained by structures like the Halls of Regulation, which sustain its ecosystem, and the Mnemonic Planisphere, which stores Sotha Sil’s memories. The Clockwork Apostles, its inhabitants, strive to create a \"perfect Nirn\" by blending mer and machine.\n\nThroughout history, the Clockwork City has been a site of conflict and innovation. Sotha Sil modeled much of the City's technology on Dwemer designs but ultimately evolved a unique style. Significant events include the creation of the Mechanical Heart, a replacement for the Heart of Lorkhan, and Sotha Sil's murder by Almalexia in 3E 427. The City faced threats from Daedric Princes, rogue Apostles, and internal strife. Despite these challenges, it remains a marvel of invention, home to Fabricants, Factotums, and a society that reveres Sotha Sil's vision. By the Fourth Era, the Mechanical Heart sustained the City, enabling its unique synthetic ecosystem to thrive even after Sotha Sil's death.", + "display_name": "clockwork_city", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Necrom, the \"City of the Dead,\" is a major center of ancestor worship and cultural heritage in Morrowind, perched on the eastern coast along the Padomaic Ocean. This ancient city, built on a steep, mountainous island surrounded by cliffs, features a dense layout with interconnected districts, including its renowned Necropolis. Its white towers and lofty walls are nestled beneath the rib-like rock formations, believed to be the remains of GULGA MOR JIL, a mythical creature from Tribunal mythology. Governed by the Keepers of the Dead, a monastic order under House Indoril's authority, Necrom serves as a hub for pilgrims, traders, and mourners, drawing Dunmer back to their ancestral roots through its festivals, rituals, and sacred spaces. The Necropolis and its catacombs house countless ancestral remains, where spirits are honored and released into the afterlife, reflecting the city's deep connection to death and remembrance.\n\nNecrom's history stretches back to the Merethic Era, predating the Tribunal Temple. Its origins are tied to Chimer traditions and myths, such as Vivec’s defeat of GULGA MOR JIL, which laid the city's foundation. Over the eras, Necrom has endured cultural and political changes, including its role in supporting the Ghostfence and adapting to the rise of the New Temple in the Fourth Era. The city holds great religious and historical significance, featuring artifacts like the Fulcrum Obscura and legendary figures such as Prior Durdryn. Festivals and pilgrimages keep its streets alive, while its bustling markets and trade connections cement its status as a vital metropolis. Necrom remains a testament to the enduring spirit of the Dunmer and their reverence for their ancestors.", + "display_name": "necrom", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alinor, the ancient capital of the Summerset Isles, is a shining symbol of High Elven civilization, renowned for its towering, light-catching architecture and its position as the seat of the High Kingship for millennia. Nestled on the Oleander Coast between verdant mountains and idyllic beaches, Alinor boasts a sophisticated layout, from bustling lower streets and marketplaces to the majestic Royal Palace that overlooks the city. Known as the \"forest city of Summerset,\" it is surrounded by vineyards and features the Alinor Docks, a hub for trade despite its landlocked location. Alinor's sister city, Sunhold, lies just beyond the mountains, and together they form the cultural heart of the Altmer. The city has long been a focal point for diplomacy, art, and governance, maintaining its grandeur through eras of isolation and global engagement.\n\nThroughout its history, Alinor has been central to major events shaping Tamriel. It has weathered conflicts with Maormer and Sload, contributed to the All Flags Navy, and led the formation of the Aldmeri Dominions under leaders like Queen Ayrenn. The city played a pivotal role in resisting Tiber Septim's conquests, though it ultimately fell to the Numidium, leading to the integration of Summerset into the Third Empire. By the Fourth Era, Alinor was transformed under Thalmor rule, as the monarchy was abolished and the province was renamed \"Alinor\" to evoke its ancient past. Despite periods of turmoil, the city's enduring legacy as a beacon of Altmeri culture and innovation remains unchallenged.", + "display_name": "alinor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Marbruk, located in the forested region of Greenshade in Valenwood, serves as a significant historical and cultural site. Originally settled by an Ayleid clan following the Alessian Slave Rebellion, the city evolved into a Bosmer settlement before being transformed into a fortified bastion by the Aldmeri Dominion in 2E 580. Built to defend Greenshade from external threats, its construction showcased modern Altmeri architecture, blending imported materials to respect the Green Pact while constructing atop ancient Ayleid ruins. The city became a symbol of Dominion unity but also sparked cultural tensions, as the Altmer enforced restrictions on traditional Bosmer practices. Marbruk's Mages Guild vault housed priceless artifacts, including the Staff of Magnus, which played a central role in a Veiled Heritance attack led by the lich Prince Naemon. The Dominion, with the Vestige's aid, repelled the undead assault and secured the city.\n\nThroughout its history, Marbruk changed hands multiple times, reflecting the shifting political landscape of Valenwood. It was annexed by the Second Aldmeri Dominion during a Camoran civil war in 2E 830 but fell to Tiber Septim's forces following his use of the Numidium in 2E 896, becoming part of the Third Empire. By the Third Era, the city had diminished to a small settlement known as Marbruk Field, ruled by Lord Palinis and enduring periods of rebellion and strife, including the Camoran Usurper Rebellion and the Oblivion Crisis. In 4E 29, a Thalmor-backed coup reclaimed Valenwood for the Aldmeri Dominion, marking Marbruk's third incorporation into the Dominion. Despite its turbulent past, Marbruk remains a testament to the layered history and cultural dynamics of Valenwood.", + "display_name": "marbruk", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Apocrypha, the realm of Hermaeus Mora, Daedric Prince of Knowledge and Fate, is a vast and surreal domain designed to house all forbidden knowledge. Its geography alternates between eerie open fields, an endless library of black-covered books, and a dark, inky sea populated by writhing tentacles. This plane, haunted by the ghosts of mortals seeking knowledge, features towering book stacks, labyrinthine mazes, and ominous ruins under an unnatural green sky. Entry is primarily granted through Black Books, powerful artifacts scattered across Tamriel. Mortals who venture into Apocrypha risk insanity from unending revelations, as the realm operates outside the laws of the mortal world. Among its inhabitants are grotesque Daedric servants like Seekers, Lurkers, and the Watchers, who catalog and guard its secrets.\n\nThe realm is dotted with significant locations, including the Infinite Panopticon, a pocket dimension holding Mora's most precious and dangerous knowledge, and Cipher’s Midden, a mortal settlement governed by the Prince’s will. Mortals entering Apocrypha are often drawn into Mora's web of intrigue, with many succumbing to the overwhelming truths contained within. Historical events, such as the saga of Miraak, the First Dragonborn, highlight the realm's power. Apocrypha also serves as the setting for Mora's omnipresent influence, where secrets shape destiny, and knowledge becomes both a blessing and a curse.", + "display_name": "apocrypha", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stros M'Kai, a tropical island off Hammerfell's southern coast, is notable for its rich history, Dwemer ruins, and strategic importance. Its main settlements, Port Hunding and Saintsport, are surrounded by unique geography, including the Ogres Tooth Mountains and the Goblin Caverns. The island's history is intertwined with the Redguard colonization following the Dwemer disappearance and the arrival of the Ra Gada. The city of Port Hunding became a hub of activity during the Second Era, playing a central role in the Tiber War and the subsequent conflict between the Crowns and the Empire, culminating in the rise of the Restless League and the rebellion led by Cyrus.\n\nDuring the Tiber War, Stros M'Kai became a final stronghold for the Crowns after the death of Prince A'tor. The island was the site of a pivotal battle where the Empire's dragon, Nafaalilargus, and Admiral Richton secured victory. The rebellion led by Cyrus restored Redguard autonomy after the signing of the First Treaty of Stros M'Kai, legitimizing their rule under Tiber Septim. In the Fourth Era, the island played a key role in the Second Treaty of Stros M'Kai, marking Hammerfell's independence from both the Empire and the Aldmeri Dominion after resisting Dominion conquest during the Great War. This independence cemented the island's legacy as a symbol of Redguard resilience and self-determination.", + "display_name": "stros_m'kai", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orsinium, known as the \"City of Orcs,\" has been the cultural and political center of the Orsimer for centuries, enduring a tumultuous history of destruction and rebuilding. First established in the First Era by Chieftain Torug gro-Igron in the Wrothgarian Mountains, Orsinium became a symbol of Orc unity. It attracted refugees from Hammerfell and other regions, forming a stronghold that rivaled its neighbors. However, its ambition led to conflict, most notably the 30-year Siege of Orsinium (1E 950-980) by allied Breton, Redguard, and Yokudan forces, which resulted in its destruction. Despite this, Orsinium was rebuilt multiple times, each iteration representing the Orcs' resilience and desire for recognition.\n\nIn the Second Era, King Kurog relocated Orsinium to eastern Wrothgar and allied it with the Daggerfall Covenant, seeking to unite the Orcs while navigating tensions with Bretons and Redguards. Following Kurog’s death, his successor, Bazrag, continued efforts toward unity while fostering peace. In the Third Era, Gortwog gro-Nagorm established Nova Orsinium near Wayrest, achieving political stability and prosperity through diplomacy. However, Orsinium faced destruction again in the Fourth Era after the Oblivion Crisis, forcing the Orcs to relocate to a site between Skyrim and Hammerfell. Despite constant adversities, Orsinium remains a testament to the Orcs' indomitable spirit and their enduring quest for a homeland.", + "display_name": "orsinium", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orc strongholds are fortified settlements primarily inhabited by Orcs, also known as Orsimer. These strongholds are typically located in remote, harsh regions such as Skyrim, Hammerfell, and Orsinium (the Orc homeland). They are often isolated from the rest of Tamrielic society, with the Orcs living a clan-based, warrior culture. The strongholds are often led by a chief, and Orcs are known for their crafting, particularly their skill in blacksmithing and the forging of weapons and armor. Though Orcs were once ostracized by other races, especially after the sacking of Orsinium, many Orcs now live in these strongholds, maintaining a fierce independence. Some strongholds have formed alliances with other factions, while others remain neutral or wary of outsiders. The Orcs’ traditional way of life is rooted in honor, strength, and self-reliance, making their strongholds key centers of Orcish identity.", + "display_name": "orc_stronghold", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "\"Aetherius is the sea of light, the Immortal Plane, the origin of magic.\"―Girnalin\r\nAetherius, or the Immortal Plane, is the realm from which Aedra such as the Nine Divines originate. Aetherius is the source of magic and of all creation in Mundus. It can be construed as the inverse of Oblivion, from which the Daedra originate; conversely, Aetherius is the realm from which the Aedra are connected. Oblivion is considered the dualistic inverse of Aetherius.\r\n\r\nIt is the plane of pure magicka, and is the realm where magicka originates. Common belief is that souls ascend to this location upon death. The Imperial Geographic Society has this to say about it:\r\n\"It is aetherial energy that infuses our daily existence, from highest to lowest, and gives all the races of men, mer, and beast common purpose. Its magic brings the rain to the fields, love to our hearths, and scientific principles to our technological industries. It gives us the very Sun itself. Finally, Aetherius is the home to the Aedra, those cornerstones of the Mundus whose aspects we see in the temple, in lordship, and the high walk of heroes.\"", + "display_name": "aetherius", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Mundus, also called the Gray Maybe, the Mundex Terrene, or the Great Map by the Redguards, is the plane or realm of existence that comprises Nirn, the mortal planet. Some sources use the terms Nirn and Mundus synonymously, though others describe Mundus as a more expansive structure which extends past Nirn itself and encompasses additional regions and planes. The origin of Mundus is a matter shrouded in much ambiguity, and different creation myths propose different events leading to its creation. It is commonly thought to have been created during the Dawn Era by the Aedra and Magna Ge, based on Lorkhan's inspiration and, per some sources, Magnus' designs. Though other sources propose different origins, which include the mortal world being a direct creation of Anu, or the core of the Mundus, Nirn, being a deity and one of the children of Ahnurr and Fadomai, the goddess Nirni. Some sources claim that the existence of Nirn and Mundus, normally impossible, was allowed to come into being through the power of the Magna-Ge Londa-Vera, the Green Star, the embodiment of the feminine power of magic that exists everywhere and nowhere at once.The Mundus, also called the Gray Maybe, the Mundex Terrene, or the Great Map by the Redguards, is the plane or realm of existence that comprises Nirn, the mortal planet. Some sources use the terms Nirn and Mundus synonymously, though others describe Mundus as a more expansive structure which extends past Nirn itself and encompasses additional regions and planes. The origin of Mundus is a matter shrouded in much ambiguity, and different creation myths propose different events leading to its creation. It is commonly thought to have been created during the Dawn Era by the Aedra and Magna Ge, based on Lorkhan's inspiration and, per some sources, Magnus' designs. Though other sources propose different origins, which include the mortal world being a direct creation of Anu, or the core of the Mundus, Nirn, being a deity and one of the children of Ahnurr and Fadomai, the goddess Nirni. Some sources claim that the existence of Nirn and Mundus, normally impossible, was allowed to come into being through the power of the Magna-Ge Londa-Vera, the Green Star, the embodiment of the feminine power of magic that exists everywhere and nowhere at once.", + "display_name": "mundus", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Moonshadow is a realm of Oblivion created and ruled over by the Daedric Prince Azura, Queen of Dawn and Dusk. The realm is said to hold \"too much beauty\", so much so it can render mortal visitors \"half-blind\". It contains flowers, waterfalls, pink trees, and a city of silver. Azura herself resides in a rose palace, and is welcoming to mortal travelers.\r\nTo the Khajiit, Moonshadow is where Azurah tends the Gates of the Crossing—the bridge between Nirni and the afterlife beyond. It is there where they are guided to the Sands Behind the Stars if they are worthy.\r\n\r\nAccording to myth, as Azurah wept in the Great Darkness after the death of her mother, the light from her tears chased away the Darkness and eventually left a \"place of moonlight and shadow\". Khajiiti mythology also writes that when Magrus fled from Boethra and Lorkhaj after the former had plucked his eye out, he fell into the Moonshadow. There, Azurah judged him as too fearful to rule a sphere, and tore out his other eye. The blinded Magrus fled to the heavens, and Azurah made of his eye a \"stone to reflect the Varliance Gate\".\r\n\r\nDuring the Second Era, the Ashlander inhabitants of Ald'ruhn had come into possession of several Crimson Shards of Moonshadow, large red crystals which glow with a powerful red light. Rose foundation is made from the pink petals of flowering trees in the realm and imported to Tamriel. Several pieces of armor of Daedric quality found in Tamriel are thought to have originated from Moonshadow; they are enchanted with a strong magical light enchantment, but are otherwise unremarkable.", + "display_name": "moonshadow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rawl'kha is a Khajiiti city in western Elsweyr, on the border with Valenwood. It is found in the Reaper's March borderlands between the two provinces. It's located on the banks of the Crescent River in northern Jodewood, southwest of Dune. The city is home to Rawl'kha Temple, also called the House of the Dance. Although not the largest, this temple devoted to the Two-Moons Dance is considered to be the most culturally significant Khajiiti temple in northern Elsweyr.\r\n\r\nHistory:\r\nRawl'kha has been established for many years, as far back as the Merethic Era when it was a part of the Kingdom of Dune. At the high point of the era, the Moon-Priests had significant power over the feudal hunt-lords. This ended when the ruthless hunt-lord Takanzin the Striped Death secretly hired several mercenaries to ransack Rawl'kha Temple and destroy the monks that lived there. The monks attempted to fight back but were annihilated and driven out of Dune by Takanzin's armies. The hunt-lord accused the monks at Rawl'kha of treason, using the incident to suppress other religious orders in ancient Elsweyr.\r\n\r\nIn 2E 311, the Mane revealed the Riddle'Thar Epiphany at Rawl'kha Temple, a key event in modern Khajiiti theology. By the time of the Interregnum, Rawl'kha was home to the Darkmoon Prowlers, a gang of outlaws who insisted on non-Khajiit members wearing a cat mask.\r\n\r\nIn 2E 582, the Lunar Champions Khali and Shazah entered Rawl'kha Temple to experience moon sugar-induced visions as part of their trials to become the Mane. This trial was witnessed by the Aldmeri Dominion, with Queen Ayrenn representing the Altmer and the Green Lady Gwaering representing the Bosmer. Rawl'kha was also the center of an archaeological project that year, which sought to excavate ancient battle sites and return the recovered relics and bones in order to strengthen relations between the region's Khajiit and Bosmer populations.", + "display_name": "rawl'kha", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Tenmar Forest, also known as the Tenmar Jungle, in southern Elsweyr is a large region lying between Torval, the seat of the Mane, and the busy seaport of Senchal. Primarily known for the production and export of moon sugar, its sugarcane groves are venerated and diligently guarded by the Khajiit.\n\nThe forest is home to two subspecies of Khajiit rarely found elsewhere, the Dagi and Dagi-raht. The Tenmar Forest once contained the ancient Kingdom of Tenmar, one of the original sixteen states of Elsweyr. It was known for its jungle and tree-folk.\n\nTenmar Senche-Tigers and Tenmar Senche-Leopards are fearsome predators of the Forest, however, the Leopards are also bred by Khajiit for hunting.\n\nHistory:\nCirca 2E 582, a dragon named Maarselok, spread an infectious disease known as Azure Blight to the local fauna and flora, which corrupted them, and caused them to become extremely aggressive to all. The source of the disease was from a mountain in Tenmar, and was destined to spread into Valenwood if not stopped. Fortunately, a group of Undaunted and a changeling stopped the Azure Blight by killing Maarselok.\n\nDuring the Imperial Simulacrum in the late Third Era, the town of Tenmar Forest had its name loaned from the region. It was ruled by Baroness Rajjan. It had a rivalry with Portneu View and Darvulk Haven. It was neighbored by several settlements, including Black Heights in the east, and Chasegrove in the northwest.", + "display_name": "tenmar_forest", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Sands Behind the Stars, also known as Llesw'er, is the realm to which the souls of Khajiit travel at the end of their days. Described as a paradise promised to the Khajiit by the Riddle'Thar, souls are carried there by Khenarthi's embrace, as long as they have followed the true path of the moons. Choice plays a central role in the process of death and rebirth for Khajiit, who have to earn their way to paradise, as Khenarthi rewards their faithfulness. It is said that the realm is filled with dunes formed of sugar, and a \"warmth without end\". Legends state that the name \"Llesw'er\" may have been the inspiration for name of the Khajiiti homeland, Elsweyr. It is said that Khajiiti spirits await here until the Next Pounce, where Khenarthi will call upon their combined might to fight for creation at the end of time. It is also believed that it is in the Moonshadow where Azurah tends the Gates of the Crossing—the bridge between Nirn and the afterlife beyond. It is at this place where Khajiit souls initially go, and if deemed worthy, they are then guided to the Sands Behind the Stars.", + "display_name": "sands_behind_the_stars", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Spilled Sand is an obscure realm speculated to be the realm of Alkosh that exists beyond even the Sands Behind the Stars. It is not a physical place, but a story which is simultaneously part of the tapestry of time while also outside of it. Masser and Secunda are visible from the realm, indicating that it may reside in the Mundus. The realm consists of an endless looping expanse of sands; a giant golden dragon, either deep in slumber or possibly dead, can be seen partially buried in the sand. In the center of the realm lies a golden oasis with Alkosh's Hourglass, the symbol of the Dragon God of Time.\r\n\r\nThe Spilled Sand was accessed by the Vestige in the 2E 582 in pursuit of the Mask of Alkosh. The dragon Nahfahlaar described the realm as a myth made manifest that was simply a \"trick of the mask\". The Khajiit hero Ja'darri described it as not a place, but rather a story being told again and again, though when pressed would not say outright if it was the realm of Alkosh. Under the guidance of Ja'darri's spirit, the Vestige and Nahfahlaar performed a ritual through Alkosh that imbued the mask with the power to take on the dragon Laatvulon, and later Kaalgrontiid.", + "display_name": "the_spilled_sand", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Anequina (Ta'agra: Ne Quin-al), or Northern Elsweyr, is the historical Khajiiti kingdom occupying the arid northern half of Elsweyr, characterized by badlands, canyons, and dry plains. It descends from the city‑state of Ne Quin-al, one of Elsweyr’s original sixteen realms, famed for its warriors and the Temple of Two‑Moons Dance. Under rulers like Anequina Sharp-Tongue and later Darloc Brae, the “Golden Beast of Anequina,” it expanded through the Anequine Conquests, controlling territory from Arenthia in the west to Rimmen in the east. The Thrassian Plague shattered the old sixteen realms, leaving only two major Khajiiti kingdoms: Anequina in the north and Pellitine in the south. Their rivalry persisted for centuries, even under the Reman Empire, with Anequina relying on disciplined warriors and Pellitine on wealth and mercenaries. In 2E 309, the marriage of Keirgo of Anequina and Eshita of Pellitine formed the Elsweyr Confederacy, though this was initially rejected by Anequina’s tribes, prompting rebellion that was later calmed by Mane Rid-Thar-ri’Datta’s moon‑based power‑sharing reforms.\r\n\r\nDuring the Interregnum (2E 576–582), Anequina’s capital Rimmen fell under the control of the Imperial usurper Euraxia Tharn, who ruled as a tyrant, levying harsh taxes, building siege engines against her own subjects, and collaborating with necromancers and, later, Dragons released from the Halls of Colossus. The Northern Elsweyr Defense Force, led by Gharesh-ri and Khamira, eventually overthrew Euraxia, after which Khamira claimed the throne of Anequina and aligned the kingdom with the First Aldmeri Dominion. The region’s geography is dominated by the great canyon system known as the Scar, stretching southwest of Rimmen toward Valenwood’s border, with notable subregions like Scar’s Edge, Ashen Scar (site of a shrine to Azurah), the Weeping Scar (infested by the Tenarr Zalviit vampire clan), the Stitches (a haven for outlaws), Scab Ridge, and Scar’s End. Anequina’s name later appears in the “Heart of Anequina” battle of the Five Year War against Valenwood, and in 4E 115 the Thalmor-backed dissolution of the Elsweyr Confederacy restored Anequina and Pellitine as separate client kingdoms of the Third Aldmeri Dominion.", + "display_name": "anequina", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pellitine (Ta'agra: Pa'alatiin), also known as Pelletine or Southern Elsweyr, was a kingdom in southern Tamriel, which merged with the rival kingdom of Anequina in 2E 309 to form the Elsweyr Confederacy, uniting the region for the first time. Pellitine occupied the southern half of Elsweyr, a region of dense jungles, rainforests, river basins, tropical grasslands, and pristine white beaches.\r\n\r\nIn the early First Era, Elsweyr was known to consist of sixteen independent realms that cooperated with each other for their mutual protection and economic benefit. Pellitine was one of the ports that traded with the burgeoning Imperial City.\r\n\r\nThe devastating Thrassian Plague of 1E 2260 disrupted Elsweyr's delicate political balance, and when it subsided the original sixteen realms had consolidated into two survivors: Pa'alatiin and Ne Quin-al, or Pellitine and Anequina as they were known in Cyrodilic. The two kingdoms fell into a bitter, often violent feud that stalemated for centuries, even as both kingdoms were incorporated into the Empire of Reman Cyrodiil; Anequina had developed a disciplined warrior culture, but Pellitine had wealth enough to hire mercenaries thanks to its fertile lands and the cultivation of Moon Sugar derived from the Tenmar Forest. The feud finally ended in 2E 309, as the kingdoms' rulers, Keirgo of Anequina and Eshita of Pellitine, married and united their realms into the Elsweyr Confederacy. While this move sparked a tribal revolt in Anequina that threatened to sunder the two kingdoms once more, Mane Rid-Thar-ri'Datta quelled the unrest by instituting a power-sharing system between the tribes and the nobility based on the phases of the moons Masser and Secunda.\r\n\r\nBy the time of the late Third Era, the Khajiit of southern Elsweyr were considered settled city dwellers with ancient mercantile traditions and a stable agrarian aristocracy based on sugarcane and saltrice plantations. Compared to the northern nomadic tribes clinging to traditions, the settled south had been quick to adopt Imperial ways.\r\n\r\nIn 4E 115, the Thalmor backed a coup that dissolved the Elsweyr Confederacy. In its place, the kingdoms of Anequina and Pelletine were reestablished and made client states of the third Aldmeri Dominion.\r\n\r\nFlora and Fauna\r\nThe region is home to unique mammalian fauna such as glyptodons, giant armored herbivores, and addaxes, a species of Antelope with distinctive horns.", + "display_name": "pellitine", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "To those who have peered beyond kalpas, the Aurbis is not merely “the universe” but the totality of all pattern and possibility. It is the Gray Maybe where the infinite forces of Anu (Stasis) and Padomay (Change) grind against one another in the Void, and where their friction births et’Ada, stories, and worlds. At their intersection lies the Wheel: a perfect circle of potential whose hub is Mundus, whose rim is Aetherius, whose hollows are the planes of Oblivion, the spokes are the Aedra—structure and bracket and connect—and whose outer darkness is the unspeaking Void that surrounds all. Within this Wheel, each spark of being is an Aurbic echo of that first conflict—gods, Daedra, mortals, dragons—each a “bit of immortal polarity given life,” spinning inside a structure that calls itself reality.\n\nThose who can read the deeper harmonics speak of the Aurbis as a multiverse, a lattice of “Many Paths” where countless reflections of the same beings play out variations of fate, like images in a cracked mirror. In one path, magic thrives; in another, it never was. In one, Lorkhan is a trickster; in another, a martyr; in others, he never speaks at all. All these branches still hang from the same root: the Aurbis as the arena in which Anuic and Padomaic currents seek no moral conclusion, only a shifting balance. To feel this fully is to know that even gods are local phenomena, and that what mortals call “cosmos” is just a pattern written on the fabric of something, vast and nameless, beyond the Wheel.", + "display_name": "aurbis", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nirn is the mortal planet at the core of Mundus, the world on which Tamriel and all known mortal civilizations stand. In some sources, “Nirn” means “Gray Maybe” in Ehlnofex, and it is sometimes called the “mortal Aurbis” or simply the “Arena,” reflecting its role as the contested center of creation. Nirn floats in the Void of Oblivion, surrounded by the other Aedric planet-planes and bathed in light from Aetherius. Different traditions describe its origin differently, but common accounts say it was shaped in the Dawn Era by the Aedra and Magna Ge, inspired or instigated by Lorkhan, with Magnus and other spirits defining its laws and structure.\r\n\r\nWithin Nirn, the natural world is not considered inert. Many traditions hold that Earthbones and lesser spirits inhabit rocks, rivers, trees, winds, and even mountains. Druidic and similar teachings describe Nirn as threaded with ley‑like lines of power—the “bones” of the world—whose crossing points strengthen magic and prayer. The book Spirit of Nirn, God of Mortals calls Lorkhan the “Spirit of Nirn,” and says that all mortals share a sense that they came from another state and that Nirn is a harsh but crucial step toward whatever comes next. Some faiths see Nirn as a prison to escape; others as a testing ground for transcendence. Khajiiti myth personifies the world as Nirni, a goddess and “Green Mother,” said to be the mother of mortal life in the Mundus.", + "display_name": "nirn", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "In metaphysical scholarship, the Void (also called the Outer Darkness, Ancient Darkness, Great Darkness, or Lorkh‑Apeiron) is the name given to the dimensions between and beyond the known realms of the Aurbis: Aetherius, Oblivion, and Mundus. It is the “place outside the places,” the darkness beyond both mortal world and Daedric plane, an expanse of “endless night” or “endless nothingness.” Many creation myths state that the primordial forces Anu and Padomay arose from this Void; some also claim that any deity wishing to form a new plane must first carve out a space for it within this emptiness. In less precise usage, “void” is sometimes used as a synonym for Oblivion itself, but careful writers reserve The Void for the unstructured darkness that encompasses and underlies the entire Wheel of existence.\r\n\r\nDespite its apparent “nothingness,” the Void is not merely absence. Various cultures identify it with Sithis or primal possibility: the “nothing between the something” from which all arose and to which all will return. Argonian and Hist traditions equate the Void with Sithis as a creative‑destructive blank canvas; Khajiiti teachings tie it to Namira as the “Great Darkness” and the Dark Behind the World, from which the Dark Heart and dro‑m’Athra corruption flow. Reachfolk see it in Namira’s aspect as Spirit Queen and source of fundamental dualities. Contact with the Void is exceedingly dangerous: it is said no corporeal life can dwell there, and even incorporeal beings who glimpse it are changed or broken. Those few lifeforms and energies that naturally stem from the Void are described as “strange beyond imagining,” and void‑touched phenomena—such as the Dark Heart, certain Shades, or Void‑warped creatures—often warp the fabric of reality around them. Even Daedra are reluctant to speak of it, and many arcane sources treat the Void as the ultimate boundary condition of existence: the cold, lightless margin against which all worlds and spirits are defined.", + "display_name": "void", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Taneth is one of the great port cities of southern Hammerfell, positioned along the Taneth River delta where the Alik’r’s dry interior meets the Abecean Sea. Historically, Taneth served as a crossroads between Yokudan-descended Redguard culture and the mercantile influences of High Rock and Cyrodiil. It rose to particular prominence after the Ra Gada expansion, when its fortified harbor became a major landing point for the Yokudan refugee fleets. Taneth’s naval traditions, shipyards, and command of coastal trade routes secured its place as a strategic and economic hub throughout the First and Second Eras.\r\n\r\nPolitically, Taneth has long stood as one of the “Forebear” cities—aligned with cosmopolitan, merchant-focused Redguards and often at odds with the more traditionalist “Crowns” of northern Hammerfell. During the Interregnum, Taneth fought alongside Sentinel and Bergama against Imperial remnants and regional warlords, later becoming a key city in the Daggerfall Covenant during the Three Banners War. Its architecture blends Redguard sandstone construction with foreign influences, reflecting centuries of trade and contact. Despite being far from Skyrim, Taneth’s name appears in Nordic mercenary contracts, Imperial naval records, and bardic tales describing the wealth and daring of its sea captains.", + "display_name": "taneth", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blackreach — called Fal’Zhardum Din in the ancient Dwemer tongue, meaning “Blackest Kingdom Reaches” — is an immense subterranean cavern beneath Skyrim, stretching below the Pale, Winterhold, Hjaalmarch, Haafingar, and the Reach. Its vast expanse is lit by colossal glowing mushrooms and shaped by both natural geology and ancient engineering, making it unique among the world’s underground realms. The cavern’s soils are rich in mineral and geode veins, and its deep waters and fungal forests support a strange ecosystem found nowhere else on Nirn.\r\n\r\nIn the distant past, long before many surface peoples knew of it, Blackreach was settled by the first vampire clans, who established kingdoms and wielded powers unknown to outsiders. Later, the Dwemer discovered and developed the cavern as a central hub for their subterranean networks, building roads, structures, and Great Lifts that linked the underworld to surface cities such as Alftand, Mzinchaleft, and Raldbthar. The Dwemer cultivated mushrooms and installed automata guardians throughout, and their ruins — including the Silent City and the enigmatic structures surrounding the Tower of Mzark — remain at the cavern’s heart. Over the centuries, the Falmer repopulated these halls after the disappearance of the Dwemer, claiming the abandoned cities and spreading throughout Blackreach’s many chambers.", + "display_name": "blackreach", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Geographically, Nibenay is defined by the great Niben River and its surrounding basin, which forms a vast network of valleys, tributaries, and lowlands stretching from the Jerall Mountains in the north to the swamps of Blackwood in the south. The region includes the Nibenay Valley and Basin, along with major waterways such as the Corbolo, Reed, and Silverfish rivers, all of which feed into the Niben system. This abundance of water and fertile land has made Nibenay one of the most agriculturally productive and densely settled regions of Cyrodiil, with its river routes serving as vital arteries of trade and communication.\r\n\r\nCulturally, Nibenay stands in contrast to Colovia, forming one half of Cyrodiil’s enduring duality. Where Colovia is martial and austere, Nibenay is known for its esoteric, ceremonial, and cosmopolitan character. Its people—the Nibenese—have historically favored scholarship, mysticism, and elaborate religious practices, including ancestor veneration and complex rites influenced by the Alessian faith. In earlier eras, the region was dominated by aristocracies of battlemages, later supplanted by priesthoods that shaped its spiritual life. For this reason, Imperial scholars often describe Nibenay not merely as a region, but as the “soul of Cyrodiil,” where the province’s cultural identity first took form.", + "display_name": "nibenay", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Khenarthi’s Roost lies along the southern shores of Elsweyr and serves as a maritime crossroads shaped by Khajiiti culture and external influence. Its principal settlement, Mistral, functions as a port city where trade and governance intersect, historically shared between local Khajiiti leadership and representatives of the Maormer under the terms of a formal treaty. This arrangement granted the Maormer a permanent embassy and a share in commerce, reflecting both the island’s economic importance and its vulnerability to seaborne power.\r\n\r\nThe island’s history is marked by recurring tension between cooperation and conflict. Early coexistence between Khajiit and Maormer gave way to exploitation through unequal treaty terms and continued piracy, while older accounts describe periods of domination under figures such as the Maormer mage Uldor, whose rule involved possession and enslavement of victims. In the Second Era, the island became a point of contention during the rise of the Aldmeri Dominion, culminating in the assassination of the Silvenar, the summoning of a storm atronach to destroy Mistral, and the eventual expulsion of Maormer forces. These events secured the island’s alignment with the Dominion and reinforced its role as both a cultural outpost of Elsweyr and a contested gateway between land and sea.", + "display_name": "khenarthi’s_roost", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The High Savannah lies along the northern border of Elsweyr within the region of Anequina, forming a transitional landscape between harsher badlands and more fertile territories to the south. It is characterized by arid grasslands, mesas, and sparse, wind-bent vegetation, with steady savannah winds blowing across the Rim Territories. The city of Riverhold stands as its principal settlement, positioned near the Cyrodilic border and sustained in part by localized water sources that irrigate the surrounding basin.\r\n\r\nThe region supports a range of adapted fauna, particularly predatory and domesticated felines central to Khajiiti life. Creatures such as senche-tigers, Pride-King Lions, and smaller desert-adapted animals form part of a local ecosystem shaped by scarcity and mobility. The Khajiit of the High Savannah are known to make practical use of native plant life, producing woven goods from savannah grasses, reflecting a culture attuned to its environment. As part of Anequina, the region contributes to the northern kingdom’s reputation for resilience and hardiness, shaped by a landscape that favors endurance over abundance.", + "display_name": "the_high_savannah", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skyrim, the northernmost province of Tamriel, is a cold, mountainous land originally inhabited by Elves, later displaced by the Nords. It is ruled by a High King chosen by a council of jarls, with a history marked by significant events like the rise of the Nords, the fall of the Dragon Cult, and the defeat of the Dwemer. The province saw political divisions in the 2nd Era, forming two kingdoms that later reunited. Geographically, it is bordered by Morrowind, Cyrodiil, Hammerfell, and High Rock, and features both harsh northern landscapes and milder southern regions. Skyrim is home to notable locations such as Orc strongholds and Dunmer settlements, and its history is shaped by the influence of various races, including Orcs, Elves, and the Thalmor.", + "display_name": "skyrim", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Red Mountain, located on Vvardenfell in Morrowind, is a massive volcano that has experienced several catastrophic eruptions, including the Sun's Death, the Days of Fire, and the Red Year, the last of which caused widespread devastation. Historically significant, it was the site of the Battle of Red Mountain, where the Dwemer mysteriously disappeared, and later became associated with Dagoth Ur, who challenged the Tribunal's power. The Tribunal constructed the Ghostfence to contain the Ash Blight emanating from the mountain, and after the defeat of Dagoth Ur, the region remained perilous due to ongoing volcanic instability. Despite its dangers, Red Mountain is home to unique life forms and ancient Dwemer ruins.", + "display_name": "red_mountain", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Red Mountain, located on Vvardenfell in Morrowind, is a massive and active volcano known for its dangerous eruptions, including those in 1E 668, 2E 882, and 4E 5, which caused widespread destruction. The Dwemer settled around it, and the Battle of Red Mountain in 1E 700 led to their disappearance. The volcano is linked to Dagoth Ur, a powerful figure who challenged the Tribunal, and the Tribunal built the Ghostfence to contain the Ash Blight. After Dagoth Ur's defeat, the mountain became more unstable, culminating in the Red Year eruption. Despite its hazards, the area is home to unique creatures and ancient Dwemer ruins.", + "display_name": "morrowind", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vvardenfell, also known as the Black Isle, is an island in Morrowind dominated by the volcano Red Mountain. The landscape features arid wastelands, rocky highlands, and coastal wetlands, with volcanic activity enriching the soil. Historically home to House Dagoth and the Dwemer, the island suffered from the corruption of the Ash Blight and the influence of Dagoth Ur. By the late Third Era, many species became extinct, and the region was devastated during the Red Year in 4E 5 when Red Mountain erupted, causing widespread destruction and forcing the evacuation of most of the population.", + "display_name": "vvardenfell", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "kavir, also known as Dragon Land, is a large continent east of Tamriel, home to various unique races and cultures. The two continents have a history of conflict and invasions, but much of what Tamriel knows about Akavir is shrouded in mystery and speculation.", + "display_name": "akavir", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Adamantine Tower, located on the Isle of Balfiera in the Iliac Bay, is the oldest known structure in Tamriel, dating back to around ME 2500. It has served as a fortress, prison, and palace, with its central metal core remaining largely unexplored despite numerous modifications over the centuries.", + "display_name": "adamantine_tower", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The White-Gold Tower, located in the Imperial City, was originally built by Aldmeri migrants during the Merethic Era and served as a center of culture and power for the Ayleids. After being captured by human forces in 1E 243, it became the Imperial Palace and a symbol of human dominance. Throughout history, it has housed knowledge, including Moth Priest libraries and the Ruby Throne, and is considered a key site in Tamriel's transformation from jungle to temperate lands.", + "display_name": "white_gold_tower", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Crystal Tower, located in Summerset Isle, is an ancient structure built by the Aldmer as a tribute to their ancestors and a center of magical learning. It housed a Great Library, relics, and a Bestiary of dangerous creatures, while also serving as a gateway to multiple realities. The tower’s summit contained the Transparent Law, granting immense power, which was safeguarded by artifacts known as Resolute Diamonds. It symbolizes the Altmer's wisdom and magical prowess.", + "display_name": "crystal_tower", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Yokuda is a continent west of Tamriel, known as the homeland of the Redguards. It is historically significant for its martial tradition of sword-singing and notable heroes like Frandar Hunding and Divad. In the First Era, much of Yokuda sank, prompting the Redguards to migrate to Hammerfell. The native language, Yoku, was replaced by others, and the Lefthanded Elves, once native to Yokuda, are now extinct.", + "display_name": "yokuda", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Coldharbour is a bleak realm of Oblivion ruled by Molag Bal, the Daedric Prince of Domination. It mirrors Nirn in a twisted and mocking way, with a lifeless landscape populated by Daedra and the Soul Shriven—mortals condemned to eternal torment. Those who make pacts with Molag Bal, as well as the souls of vampires, are sent to Coldharbour after death.", + "display_name": "coldharbour", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Atmora is a continent located north of Tamriel, believed to be the original homeland of the first humans who migrated to Tamriel. Known as \"the land of truth\" in ancient Nordic lore, Atmora was home to the Nedic peoples, ancestors of the Nords, Imperials, and Bretons. The name \"Atmora\" is derived from the Aldmeris term \"Altmora,\" referring to the northernmost land inhabited by the Elves. Its cultural and historical significance remains central to the heritage of several human races in Tamriel.", + "display_name": "atmora", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Colovia, or Old Colovia, is the western half of Cyrodiil, known for its strong-willed inhabitants and rich martial tradition. The region is characterized by rugged landscapes, including hilly terrains, dense forests, and expansive grasslands. Colovians are self-sufficient and skilled in craftsmanship, especially in timber used for construction and weaponry. Major cities like Anvil, Chorrol, Kvatch, and Skingrad are home to most Colovians, while the nobility live near the Gold Coast. Despite historical shifts in borders, Colovia remains a vital region in Cyrodiil, blending frontier spirit with a deep respect for agricultural and natural resources.", + "display_name": "colovia", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Tamriel, known as \"the Arena\" due to its history of conflict, is a continent on the planet Nirn, home to many diverse races and cultures. It is divided into nine provinces and has occasionally united under various empires, notably the Empire of Tamriel. Despite its beauty, Tamriel's history is marked by constant struggles, with few moments of unity, such as the formation of the All Flags Navy and successful resistance against invaders. The name \"Tamriel\" means \"Dawn's Beauty\" in Elvish, but its history reflects a land defined by turmoil and war.", + "display_name": "tamriel", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Oblivion, also known as Hell or the Outer Realms, is a vast and chaotic realm within the Aurbis, primarily inhabited by Daedra, beings who did not partake in the creation of the Mundus. It consists of at least sixteen major planes, each ruled by a Daedric Prince, and thousands of other realms shaped by the perceptions of those who enter. These realms vary widely in nature, from serene to bizarre and desolate. Notable realms include Apocrypha, Coldharbour, and the Shivering Isles, each reflecting the essence of their respective rulers, and Oblivion itself embodies chaos and constant change.", + "display_name": "oblivion", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Oblivion, also known as Hell or the Outer Realms, is a vast and chaotic realm within the Aurbis, primarily inhabited by Daedra, beings who did not partake in the creation of the Mundus. It consists of at least sixteen major planes, each ruled by a Daedric Prince, and thousands of other realms shaped by the perceptions of those who enter. These realms vary widely in nature, from serene to bizarre and desolate. Notable realms include Apocrypha, Coldharbour, and the Shivering Isles, each reflecting the essence of their respective rulers, and Oblivion itself embodies chaos and constant change.", + "display_name": "hell", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cyrodiil, the heart of Tamriel and the seat of the Empire, is home to the Imperial City and the White-Gold Tower. Initially a jungle, its climate was possibly changed by Emperor Tiber Septim. Its early history was marked by Ayleid rule, which ended with the Alessian Rebellion in 1E 242. The province's history includes cycles of conquest, such as the Akaviri invasion and the rise of Tiber Septim, who unified Tamriel under the Third Empire. The Fourth Era brought challenges, including the Great War with the Aldmeri Dominion and the controversial White-Gold Concordat, shaping Cyrodiil's political landscape.", + "display_name": "cyrodiil", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Black Marsh, or Argonia, is a dense, dangerous swampland in southeastern Tamriel, inhabited by the Argonians and the sapient Hist trees. The Argonians live in tribes and thrive in the hostile environment filled with poisonous plants and dangerous animals. Foreign attempts at colonization have failed due to the land's resilience. The region also hosted extinct races like the Kothringi and Lilmothiit, and unique creatures like Lamias. Despite its rich cultural and ecological diversity, Black Marsh remains enigmatic and resistant to full integration into the Cyrodiilic Empire.", + "display_name": "black_marsh", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elsweyr is a southern province of Tamriel, home to the feline Khajiit, divided into two regions: the dry savannahs of Anequina and the fertile jungles of Pellitine. Historically, the region was made up of sixteen Khajiiti clans that later merged into the kingdoms of Anequina and Pellitine, and eventually the Elsweyr Confederacy. The province shares borders with Valenwood, Cyrodiil, and the Southern Sea, and features landmarks like Lake Vread and Khenarthi's Roost. Elsweyr’s unique culture and geography make it an important and mysterious part of Tamriel.", + "display_name": "elsweyr", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hammerfell, located in western Tamriel, is the homeland of the Redguards, who migrated from the submerged Yokuda. The province is known for its diverse landscapes, including coastal regions, grasslands, temperate mountains, and the vast Alik'r Desert. It borders High Rock, Skyrim, and Cyrodiil, with access to several seas and oceans. Hammerfell is divided into regions like the Alik'r Desert and Craglorn, with key islands like Stros M'Kai. The Redguards primarily live in coastal cities, while the interior is home to farms and nomadic tribes. Hammerfell's strategic location and natural resources have made it a significant center of maritime activity and cultural resilience.", + "display_name": "hammerfell", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "High Rock, located in northwestern Tamriel, is home to the Bretons and is divided into multiple city-states and minor kingdoms. Historically, it also housed Orsinium, the Orcs' city-state. The province has a rugged landscape with highlands, valleys, temperate forests, and snowy mountains, fostering a strong sense of independence among its clans. High Rock’s history includes the Direnni Hegemony, which greatly influenced Breton culture. The province is divided into six main regions, including Glenumbra, Stormhaven, and Wrothgar, and is bordered by Hammerfell and Skyrim. Its diverse geography and bardic traditions contribute to a rich cultural heritage.", + "display_name": "high_rock", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Summerset Isles, renamed Alinor in 4E 22, is a province in southwestern Tamriel consisting of 14 islands, including Summerset Isle and Auridon. Home to the Altmer (High Elves), the region has a rich history dating back to the Early Merethic Era, when the Aldmer arrived and founded cities like Firsthold. Over time, the Altmer established a strict class system centered around their monarchy. The Isles faced conflicts with invaders like the necromantic Sload and Maormer. After the Oblivion Crisis, the Thalmor rose to power, founding the Third Aldmeri Dominion, which continued to shape Tamriel’s politics in the Fourth Era. The Summerset Isles remains a symbol of Altmeri culture and power.", + "display_name": "summerset_isles", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Valenwood is a lush, densely forested province in southwestern Tamriel, home to the Bosmer (Wood Elves) and other races like Wood Orcs, Imga, and Centaurs. The region is known for its sprawling rainforests, rolling hills, and mangrove swamps, with unique migratory trees that serve as cities, including Falinesti, the capital. Valenwood is bordered by Elsweyr, Cyrodiil, and the Summerset Isles, and is divided into regions like Grahtwood, Greenshade, and Malabal Tor. The Bosmer live in harmony with nature, in timber clanhouses scattered across the province. Despite its beauty, the province's remote location and difficult terrain make travel challenging.", + "display_name": "valenwood", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Anvil is a prominent harbor city on the Gold Coast of Cyrodiil, known for its Redguard-influenced architecture and bustling maritime trade. It features landmarks like the Chapel of Dibella, the Mermaid Statue, and Benirus Manor, with a history rooted in piracy and maritime warfare. The city has hosted both the Fighters Guild and a Mages Guild chapter, and has endured periods of turmoil, including pirate control, Daedric attacks during the Oblivion Crisis, and a siege in the Fourth Era. Despite these challenges, Anvil remains a vital cultural and economic hub with a rich history.", + "display_name": "anvil", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bravil is a Nibenese city in southern Cyrodiil, known for its squalid charm and deep historical roots. Situated on the banks of Niben Bay and crisscrossed by the Larsius River, the city features wooden, stacked buildings and an ancient Ayleid settlement beneath its streets. Bravil has endured various struggles, including economic hardships, social unrest, and involvement with the Dark Brotherhood. Despite facing sieges, riots, and skooma wars, it remains an important cultural and historical site with connections to Imperial legends and its role in Cyrodiil's past.", + "display_name": "bravil", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bruma, located in the Jerall Mountains north of the Imperial City, is known for its cold climate and Nordic population. The city's architecture and religious practices reflect its Nordic influence, with the Great Chapel of Talos at its center. Bruma has played a significant role in Cyrodiil's history, notably during the Oblivion Crisis and the Planemeld, when it successfully repelled Daedric forces. The city has also faced other challenges, including raids by the Crimson Dirks and the destruction of its Mages Guild hall. Despite these struggles, Bruma remains a resilient and culturally rich city in northern Cyrodiil.", + "display_name": "bruma", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cheydinhal is a prosperous city in eastern Cyrodiil, near the Morrowind border, known for its lush greenery and mix of Cyrodiilic and Dunmeri architecture. The city is home to the Great Chapel of Arkay and several guilds, including the Fighters Guild and the Mages Guild. Despite its peaceful appearance, Cheydinhal also hosts the Dark Brotherhood sanctuary. Its strategic location and cultural diversity make it a key hub for trade and governance in eastern Cyrodiil.", + "display_name": "cheydinhal", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chorrol is a picturesque town in northwestern Cyrodiil, known for its serene environment, large oak trees, and the iconic Great Oak. The town features districts like Castle Chorrol and Chapel Street, and is home to landmarks such as the Great Chapel of Stendarr and Weynon Priory. With a rich history dating back to the Merethic Era, Chorrol played a role in events like the Colovian Revolt and the Oblivion Crisis. Its legacy as a cultural and trade hub continues into the Fourth Era, making it a notable part of Cyrodiil’s landscape.", + "display_name": "chorrol", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cloud Ruler Temple, located in the Jerall Mountains near Bruma, was a significant stronghold of the Blades, founded by the Akaviri Dragonguard during the Second Empire. Known for its dramatic Akaviri architecture, it served as the Blades' headquarters until the end of the Third Era. The temple housed the Great Hall, displaying swords of fallen protectors, and valuable archives. It played a crucial role during the Oblivion Crisis as a refuge for Martin Septim, and later became a target during the Great War, resulting in its destruction and the scattering of the Blades' legacy.", + "display_name": "cloud_ruler_temple", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Imperial City, located on City Isle in Lake Rumare, is the political and cultural heart of Tamriel and serves as the capital of Cyrodiil and the Tamrielic Empire. Founded by the Aldmer in the Merethic Era, the city is home to the iconic White-Gold Tower and has witnessed numerous historical events, from the Alessian Slave Rebellion to the Oblivion Crisis and the Great War. The city is divided into several districts, including the Market District, the Temple District, and the Arena District. Beneath the city lies an extensive network of sewers and Ayleid ruins, often used by outlaws and secret organizations like the Thieves Guild. The Imperial City remains central to Tamriel's history, culture, and governance.", + "display_name": "imperial_city", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kvatch, a Colovian city located on the Gold Coast, has a rich history marked by resilience and recovery. Known for its black Dire Wolf coat of arms, the city features landmarks like Kvatch Castle, the Great Chapel of Akatosh, and a famous arena. Kvatch's strategic location along trade routes made it an important settlement, though it faced numerous challenges, including destruction during the Oblivion Crisis. Despite being razed by Daedra, the city's spirit endured, epitomized by heroes like Antus Pinder. By the Fourth Era, Kvatch was rebuilt, contributing to Cyrodiil's defense during the Great War, and continues to symbolize the strength of its people.", + "display_name": "kvatch", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Leyawiin is a Nibenese city located at the mouth of the Niben River, known as \"the city that spans the waters.\" Positioned between Elsweyr and Black Marsh, it has been a cultural and strategic hub. The city is divided into four districts and honors Topal the Pilot as its patron saint. Leyawiin's history includes significant upheavals, from its involvement in the Alessian Slave Rebellion to its later occupation during the Great War. Despite facing destruction during the Oblivion Crisis and political turmoil, the city remains resilient, shaped by its diverse population and strategic location.", + "display_name": "leyawiin", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sancre Tor, known as the \"Golden Hill,\" was an ancient city in the Jerall Mountains central to Cyrodiilic history, associated with the birth and resting place of Reman Cyrodiil. It played a key role in the legends of Alessia and the Reman dynasty, as well as being the site of pivotal events like the Tiber Wars and Talos’s ascension to godhood. After the fall of the Reman Dynasty, Sancre Tor became a ruin haunted by undead and tied to the Amulet of Kings. The ruins were later unsealed by the Hero of Kvatch, who freed the cursed Blades and retrieved Tiber Septim's Armor. It remains a symbol of both power and decay in Tamriel’s history.", + "display_name": "sancre_tor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skingrad, a prosperous Colovian town in Cyrodiil, is known for its renowned wines, agricultural products, and vibrant culture. Governed by Count Janus Hassildor in the late Third Era, it flourished under his rule, contributing significantly to Cyrodiil's winemaking tradition. The town is also known for its architectural beauty, including the Great Chapel of Julianos and Castle Skingrad. Historically, Skingrad played a crucial role in resisting the Alessian Order's dominance and helped establish the Colovian Estates' independence. Its legacy of resilience and pride continues into the Fourth Era, maintaining its importance amidst Cyrodiil's history.", + "display_name": "skingrad", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stormhold, the capital of the Shadowfen region in Black Marsh, is a city with a deep history shaped by conflict and transformation. Built atop the ancient Ayleid ruins of Silyanorn, it blends Argonian, Ayleid, and Dark Elf architecture. Stormhold played a key role in the Second Era as part of the Ebonheart Pact, uniting Argonians, Nords, and Dark Elves against external threats. In the Third Era, it became infamous for its corrupt prison system, which was later dismantled by a heroic prisoner. Despite facing destruction during Umbriel’s undead invasion in the Fourth Era, Stormhold remains a symbol of Argonian resilience and adaptation.", + "display_name": "stormhold", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Torval, one of Elsweyr's major cities, is located in the Tenmar Forest and serves as the spiritual and political center for the Khajiit. Known for its significance as a religious hub for the Mane, Torval features grand palaces and moon-sugarcane gardens, along with the Temple of Two-Moons Dance, a renowned combat training site. Over its history, the city has faced challenges like the dissolution of the ancient Khajiiti kingdoms, involvement in the Five Year War, and the Slaughter of Torval. Despite these events, Torval remains a symbol of Khajiiti resilience, blending tradition with political and spiritual importance.", + "display_name": "torval", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Daggerfall, the capital of the Kingdom of Daggerfall in High Rock, is a historic and strategic city overlooking Iliac Bay. Known for its medieval architecture, such as Castle Daggerfall and the Daggerfall Cathedral, it thrives as a cultural, political, and trade hub. The city has played key roles in Tamriel's history, from its involvement in the Skyrim Conquests and Siege of Orsinium to its central position in the formation of the Daggerfall Covenant. Despite enduring turmoil, including the haunting of King Lysandus' ghost, Daggerfall remains a symbol of Breton pride and a bustling center of commerce and tradition.", + "display_name": "daggerfall", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sentinel, the capital of the Kingdom of Sentinel in Hammerfell, is a vital cultural and political center overlooking the Iliac Bay. Founded by the Redguard warrior-sailors during the Ra Gada migration, the city is known for its architecture, including the grand Sentinel Palace, and its thriving market streets. Despite its desert surroundings, Sentinel has remained an important trade hub throughout history, facing challenges such as pirate raids, necromantic threats, and internal conflict between the Crown and Forebear factions. Today, Sentinel stands as a symbol of Redguard resilience, uniting its people and blending cultural heritage with a history of overcoming adversity.", + "display_name": "sentinel", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wayrest, the capital of the Kingdom of Wayrest in High Rock, is a thriving city located at the mouth of the Bjoulsae River on Iliac Bay. Known for its strategic position, Wayrest is a major hub of commerce and culture, featuring landmarks like Castle Wayrest and the Temple of Akatosh. Founded as a fishing village in 1E 800, it became a kingdom by 1E 1100 and has since withstood numerous sieges, including those during the Ranser's War. With a rich history of political intrigue and trade, Wayrest continues to prosper in the Fourth Era, symbolizing Breton resilience and economic strength in Tamriel.", + "display_name": "wayrest", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Balmora, located in Vvardenfell's West Gash region, was the second-largest city after Vivec City and the seat of House Hlaalu's power. Known for its strategic trade location and Hlaalu-style architecture, it played a vital role in Vvardenfell's economy and politics. Historically, it was a House Redoran stronghold before House Hlaalu transformed it into a thriving center during the Third Era. Balmora was also significant in the Nerevarine Prophecy, serving as the base for the outlander destined to fulfill it. After being devastated during the Red Year in 4E 5, the city was rebuilt, continuing to stand as a symbol of resilience despite conflicting reports of its later status.", + "display_name": "balmora", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Seyda Neen, known as the \"Gateway to Vvardenfell,\" was a small port village in the southern Bitter Coast region, famous for its Grand Pharos lighthouse. Built from the remnants of a destroyed House Hlaalu fleet, the village became a key stop for Imperial travelers heading to Vvardenfell, with its port managed by House Hlaalu and protected by the Imperial Legion. Over time, it grew into a hub for maritime activity and trade, though it was plagued by swamplands and wildlife, earning the nickname \"Swamp Fever Capital of the World.\" Its fate after the Red Year in 4E 5 remains uncertain, as the eruption of Red Mountain likely devastated the area.", + "display_name": "seyda_neen", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sadrith Mora, meaning \"Mushroom Forest\" in Dark Elvish, was the seat of House Telvanni's power on Vvardenfell, located on an island in Zafirbel Bay. Known for its mushroom-inspired architecture and strict Telvanni governance, the city was dominated by the central Tel Naga tower and featured notable structures like the Telvanni Council House and Wolverine Hall. Sadrith Mora played a crucial role in Telvanni politics and magical advancements, especially under Archmagister Nelos Otheri and Magister Neloth in later years. Devastated during the Red Year by the eruption of Red Mountain, its fate remains uncertain, but it remains a symbol of Telvanni's magical prowess and independence.", + "display_name": "sadrith_mora", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Castle Ebonheart, located near Vivec City on Vvardenfell, was the administrative center for the Imperial authority in the region, serving as the hub for governance, trade, and diplomacy under Duke Vedam Dren. It housed the Imperial Chapels and the Duke's elite guard, along with offices for the East Empire Company and diplomatic missions. Founded in 3E 414, the castle was the focal point of Imperial and House Hlaalu affairs. Tragically, it was destroyed in 4E 5 during the Red Year, when the eruption of Red Mountain ravaged the region.", + "display_name": "ebonheart", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blacklight, the capital of House Redoran in northwestern Morrowind, became the provincial capital after the fall of Mournhold in 4E 6. Known for its disciplined architecture, hedge maze parks, and bustling harbors, it serves as the political and cultural center of Morrowind. Key landmarks include the Rootspire, which now houses the Council of the Great Houses. Throughout history, Blacklight has symbolized Redoran resilience, surviving invasions, banditry, and the Red Year, growing into a city that rivals Mournhold's former grandeur by the Fourth Era.", + "display_name": "blacklight", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Clockwork City, created by Sotha Sil, is a mechanical realm designed to replicate Nirn in miniature, blending magic and technology in pursuit of perfection. It consists of three main regions: the Radius, the Brass Fortress, and the Mechanical Fundament, housing Sotha Sil's control center. The city is maintained by structures like the Halls of Regulation and the Mnemonic Planisphere. While modeled on Dwemer designs, the city evolved its own style. Despite internal strife, threats from Daedric Princes, and the murder of Sotha Sil, the city continues to thrive in the Fourth Era, sustained by the Mechanical Heart.", + "display_name": "clockwork_city", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Necrom, also known as the \"City of the Dead,\" is a major cultural and religious center in Morrowind, focused on ancestor worship and remembrance. Situated on a steep island, the city features interconnected districts, with the Necropolis housing ancestral remains. Governed by the Keepers of the Dead under House Indoril, it serves as a hub for pilgrims and traders. Necrom's origins date back to the Merethic Era, with ties to Chimer traditions and Tribunal mythology. Despite political and cultural shifts, it remains a vital metropolis, celebrating its deep connection to death through rituals, festivals, and historical artifacts.", + "display_name": "necrom", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alinor, the ancient capital of the Summerset Isles, is a symbol of High Elven civilization known for its striking architecture and central role in the Altmer culture. Situated between mountains and beaches, the city boasts a sophisticated layout with bustling streets and the majestic Royal Palace. Historically, Alinor has been a hub for diplomacy, art, and governance, playing a significant role in events such as conflicts with the Maormer, the formation of the Aldmeri Dominion, and resistance to Tiber Septim's conquest. By the Fourth Era, it was transformed under Thalmor rule, though it remains a key center of Altmeri culture and innovation.", + "display_name": "alinor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Marbruk, located in Greenshade, Valenwood, is a city with a rich history, originally settled by Ayleids and later transformed into a Bosmer settlement before being fortified by the Aldmeri Dominion in 2E 580. The city blends Altmeri architecture with respect for the Green Pact, standing atop ancient Ayleid ruins. Marbruk has been a focal point of conflict, from the Veiled Heritance attack to its shifting political control, including annexation by the Dominion and later conquest by Tiber Septim. Despite turmoil, Marbruk remains a symbol of Valenwood's complex history, culture, and resilience.", + "display_name": "marbruk", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Apocrypha, the realm of Hermaeus Mora, is a surreal and vast domain filled with forbidden knowledge. Its landscape includes endless libraries, dark seas, and eerie fields, all under a green sky. Accessible through Black Books, this plane is dangerous, often driving mortals insane with its overwhelming revelations. Its inhabitants include grotesque Daedric servants, such as Seekers and Lurkers, who protect Mora's secrets. Key locations in Apocrypha include the Infinite Panopticon and Cipher’s Midden, with the realm serving as the setting for events like Miraak's saga, where knowledge becomes both a power and a curse.", + "display_name": "apocrypha", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stros M'Kai, an island off Hammerfell's southern coast, is known for its rich history, Dwemer ruins, and strategic location. Key settlements like Port Hunding played important roles in the Tiber War and the conflict between the Crowns and the Empire. The island was a last stronghold for the Crowns during the war and became a symbol of Redguard resilience after Cyrus led a rebellion that secured their autonomy. In the Fourth Era, the island's role in the Second Treaty of Stros M'Kai solidified Hammerfell's independence from both the Empire and the Aldmeri Dominion.", + "display_name": "stros_m'kai", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orsinium, the City of Orcs, has long been the heart of Orc culture and politics, enduring a history marked by destruction and resilience. Founded in the First Era, it faced the 30-year Siege of Orsinium, which led to its initial fall. The city was rebuilt several times, including a relocation in the Second Era by King Kurog. In the Third Era, Gortwog gro-Nagorm established Nova Orsinium, achieving political success. Despite facing destruction again in the Fourth Era during the Oblivion Crisis, Orsinium's history remains a symbol of the Orcs' perseverance and their continued struggle for recognition and a homeland.", + "display_name": "orsinium", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Orc strongholds are fortified settlements primarily inhabited by Orcs, also known as Orsimer. These strongholds are typically located in remote, harsh regions such as Skyrim, Hammerfell, and Orsinium (the Orc homeland). They are often isolated from the rest of Tamrielic society, with the Orcs living a clan-based, warrior culture. The strongholds are often led by a chief, and Orcs are known for their crafting, particularly their skill in blacksmithing and the forging of weapons and arm", + "display_name": "orc_stronghold", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Aetherius is the realm of the eight(nine) divines, said to be a sea of pure light. Supposedly, the afterlife resides there for those who seek the Nord halls of Sovngarde, The calming waves of the Redguard's Far Shores or the Sands Beyond the Stars that so many Khajiit long for. One's soul may ascend there, unless claimed by a Daedric force, or some other sorcerous design.", + "display_name": "aetherius", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mundus is the mortal world in the broad sense: the realm where Nirn lies, under the sun and stars, between the heavens of the gods and the dark realms of the Daedra. For most folk, “Mundus” simply means “the world we live in,” as opposed to Aetherius (the pure realms of the Divines) or Oblivion (the Daedric planes). Creation stories say the gods made Mundus in a distant age so mortals could live, fight, farm, and die here, and that this realm sits at the center of all things known.", + "display_name": "mundus", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Moonshdow is a realm of Oblivion, ruled by the Daedric Prince(goddess) of Twilight, Azura(Azurah to Khajiit). It's fabled to be so beautiful that the mere sight of it's dazzling vistas will leave half-blind those who witness it's splendor.", + "display_name": "moonshadow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rawl'kha is a city that sits on the border of Elsweyr and Valenwood, it has a storied reputation as the birthplace of Riddle'Thar, and as the location of ancient Bosmer-Khajiit battlegrounds, where excavations have uncovered many cultural relics. Numerous relic have been returned to Valenwood, the respect of which has strengthened bonds between the Khajiiti and Bosmer peoples.", + "display_name": "rawl'kha", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Tenmar Forest is a jungle in the south of Elsweyr, it's the home of a type of Khajiit called Dagi, that are shorter than their Cathay cousins, and are said to be more agile than Bosmer in the tree canopy.", + "display_name": "tenmar_forest", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Llesw'er is the paradise afterlife of Khajiit religion found within Aetherius, like Sovngarde is to the Nords, or the Far Shores is for Redguard.", + "display_name": "sands_behind_the_stars", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Spilled Sand is the fabled realm of Alkosh, the Cat-Dragon God of the Khajiiti pantheon.", + "display_name": "the_spilled_sand", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Anequina(Ta'agra(native khajiit): Ne Quin-al) is both the ancient and modern name for Elsweyr's northern kingdom, home to the province's capital city of Rimmen, and the foremost religious city of Riddle'Thar, Ne Quin-al, which was the region's former capital. Anequina is a landscape of desert canyons in the south, it's northern regions bare similarities to Cyrodiil's more fertile hills and rivers. While Elsweyr's southern region, Pellitine. is the more cosmopolitan and agrarian of the two, the of the people of Anequina carry on a more traditional nomadic lifestyle.", + "display_name": "anequina", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pellitine is the modern and ancient name for the major region of southern half of Elseweyr, the northern half being Anequina. Over the centuries, Pellitine has become the more cosmopolitan region of Elsweyr two regions, strong trade with the Imperial City, and cultivation of cash crops such as moon sugar and saltrice making them a rich, urbanized society that mirrors Cyrodiilic life more than their northern siblings.", + "display_name": "pellitine", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Aurbis is the name scholars give to the whole of creation: the great Wheel of existence. In this view, the mortal realm of Mundus (with Nirn at its heart) is the hub; the planes of Oblivion are the hollow spaces around it; the bright realm of Aetherius forms the outer rim; and beyond that lies the empty Void. Creation myths say this structure arose from the interplay of two primordial forces—Anu and Padomay—whose conflict birthed the first spirits and, in time, the world. Priests, mages, and philosophers differ on the details, but most agree that when they speak of “the world,” “the heavens,” and “the realms beyond,” they are speaking of different parts of the same vast thing: the Aurbis, in which all known planes and powers reside.", + "display_name": "aurbis", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nirn is the world itself—the land beneath your feet, the seas, the sky, and the places where all known peoples live. Tamriel, Skyrim, Cyrodiil, Morrowind, and the other continents are all parts of Nirn. Most people simply call it “the world,” but scholars use “Nirn” to distinguish it from the realms of the gods (Aetherius) and the Daedra (Oblivion). Creation tales say the gods made Nirn long ago as the place for mortal life, and that every person, beast, and plant lives and dies under its changing skies.", + "display_name": "nirn", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Void is the term scholars use for the darkness outside all known realms: the empty spaces between and beyond Aetherius, Oblivion, and the mortal world of Mundus. Many myths say the first forces of creation, Anu and Padomay, came from this Void, and that new realms must be “cut” from it before they can exist. It is commonly described as endless blackness or nothingness, with very few beings able to survive there. Different cultures link the Void to different powers—Argonians to Sithis, Khajiit to Namira, the Dark Brotherhood to the afterlife of those chosen by Sithis—but all agree it is a cold, inimical place, not a normal plane. In everyday speech, some people loosely use “the void” for Oblivion, but strictly speaking the Void is deeper and farther than any Daedric realm: the outer dark that surrounds the whole of the Aurbis.", + "display_name": "void", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Taneth is a major port city in southern Hammerfell, known for its strong navy and busy trade routes. It has long been home to wealthy merchants, skilled sailors, and Forebear nobles who look outward to the world. Tales reaching Skyrim describe Taneth as a warm, sandstone city where ships from every coast gather and Redguard captains earn their fame. Most know it as one of Hammerfell’s great coastal powers.", + "display_name": "taneth", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blackreach is a vast underground cavern deep beneath Skyrim, filled with glowing mushrooms, ancient ruins, and strange life forms. Ancient crafts and roads of the vanished Dwemer still stand among echoing halls claimed by the Falmer and other creatures. Most surface-dwelling travelers know only that Blackreach exists in legend or myth, whispered in tales of forgotten places.", + "display_name": "blackreach", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nibenay, often called the Nibenean East, is the eastern region of Cyrodiil and is widely regarded as the cultural and spiritual heart of the Empire. It encompasses the lands surrounding the Niben River and includes major counties such as Bravil, Leyawiin, Cheydinhal, and Bruma, as well as the Heartlands around the Imperial City. To most travelers, Nibenay is known as a fertile and diverse region of rivers, forests, and wetlands, distinct from the harsher, more martial lands of western Cyrodiil.", + "display_name": "nibenay", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Khenarthi’s Roost is an island off the southern coast of Elsweyr, named for the Khajiiti goddess of winds and sky. It is commonly known as a place of trade, seafaring, and Khajiiti settlement.", + "display_name": "khenarthi’s_roost", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The High Savannah is a broad expanse of dry grassland in northern Elsweyr. It is commonly known as a windswept region of open plains and scattered settlements.", + "display_name": "the_high_savannah", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "LOCATION" + } + ], + "entry_count": 136, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Locations - Other", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/Oghma_-_Locations_-_Pale.sknpack b/oghma-sknpack/Oghma_-_Locations_-_Pale.sknpack new file mode 100644 index 0000000..9f466fd --- /dev/null +++ b/oghma-sknpack/Oghma_-_Locations_-_Pale.sknpack @@ -0,0 +1,1048 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Tamrielic lore from CHIM's Oghma Infinium — locations pale. Merges educated and common-knowledge entries graded by importance.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "The Pale is a hold in northern Skyrim, with its capital in Dawnstar. It is aligned with the Stormcloaks. \n\nThe Pale is a sparsely populated region, known for its harsh, snow-covered terrain and limited safe havens for travelers. The unforgiving landscape is largely unsuitable for farming, though the far southern edges, where the mountains give way to more hospitable terrain, offer better conditions. The hold's largest lake, Lake Yorgrim, lies to the south, feeding the River Yorgrim. One of three entrances to Blackreach can be found in Raldbthar, a Dwarven ruin located south of the lake.\n\nDespite its challenging climate, the Pale is rich in natural resources. Snowberries thrive in the snowy environment, while sturdy blue and purple mountain flowers can be found in the region. Along the coastline, Nordic barnacles, clams, and spiky grass are abundant. The hold's wildlife includes giants, sabre cats, wolves, ice wraiths, trolls, and frostbite spiders, making it a rugged and dangerous region. Brina Merilis serves as the Jarl of the Pale, overseeing the hold from Dawnstar.", + "display_name": "the_pale", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnstar (also known as Danstrar) is a settlement on the northern coast of Skyrim and serves as the capital of The Pale. Historically, it was a garrison town used as an exile post due to its cold, harsh climate and notorious gales. Its name is said to come from its reputation for \"greeting the sun as it begins its journey.\" Dawnstar has a turbulent history, often troubled by the Ice Tribes and Gehenoth, and it has been the site of battles that have significantly impacted the fate of the Empire.\n\nThe settlement is surrounded by several neighboring locations, including Bardmont to the south, Helarchen Creek to the southeast, Stonehills to the southwest, and Winterhold to the east. Due to the nearby glacial icefields, Dawnstar is the last major port before Windhelm that remains ice-free following the Great Collapse. Its economy is supported by its two productive mines: Iron-Breaker Mine, which supplies iron, and Quicksilver Mine, which produces quicksilver. Additionally, fishing plays a significant role in the town's livelihood.\n\nKey locations in Dawnstar include The White Hall, the seat of the Jarl of the Pale, Windpeak Inn, The Sea Squall, and The Mortar and Pestle, a local alchemy shop. Despite its small size, Dawnstar remains an essential hub for trade and travel along Skyrim's northern coast.", + "display_name": "dawnstar", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnstar Sanctuary is an abandoned Dark Brotherhood sanctuary located on the shore of the Sea of Ghosts, just north of Dawnstar in The Pale. Once one of the first sanctuaries established by the Dark Brotherhood in Skyrim, it has been deserted for nearly a century.", + "display_name": "dawnstar_sanctuary", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nightgate Inn is a remote inn located west of Windhelm and east of Shrouded Grove in The Pale\n\nThe inn is run by Hadring, a Nord warrior who serves as its proprietor. Nightgate Inn is a quiet, secluded location, offering respite to travelers navigating the harsh, snowy terrain of the region. Its isolation adds to its charm, providing a peaceful retreat far from the hustle and bustle of Skyrim's cities.", + "display_name": "nightgate_inn", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Hall of the Vigilant is a secluded lodge located south-southwest of Dawnstar and northwest of Fort Dunstad in The Pale. It serves as the headquarters for the Vigilants of Stendarr, a group dedicated to hunting Daedra and other malevolent forces in Skyrim.\n\nThe lodge is led by Keeper Carcette, who provides expert training in Restoration magic to those seeking to improve their healing abilities. The Hall of the Vigilant is a refuge for the Vigilants, offering a safe haven for their mission to protect Skyrim from supernatural threats.", + "display_name": "hall_of_the_vigilant", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Loreius Farm is a small farm located in The Pale, north of Whitewatch Tower and south of Blizzard Rest. The farm is home to Vantus Loreius and his wife, Curwe.", + "display_name": "loreius_farm", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Anga's Mill is a small wood mill located along the north bank of the River Yorgrim, west of the Windhelm Stables and north of Morvunskar, in The Pale. The mill consists of two houses and a sawmill, providing lumber for the surrounding area.\n\nThe mill is owned by Aeri, a Nord woman who inherited it from her father, who perished during the Great War.", + "display_name": "anga's_mill", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blizzard Rest is a giant camp located south of Dawnstar and north-northeast of Loreius Farm in The Pale. The camp is inhabited by giants and features the usual assortment of items associated with their camps, including mammoth bones and cooking fires,.", + "display_name": "blizzard_rest", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pale Stormcloak Camp is a Stormcloak military encampment located in The Pale, southeast of Bronze Water Cave on the southern shore of Lake Yorgrim. The camp serves as a strategic base for Stormcloak forces in the region, supporting their efforts in the ongoing civil war.", + "display_name": "pale_stormcloak_camp", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pale Imperial Camp is an Imperial military encampment located in The Pale, west of Dawnstar and northwest of Mzinchaleft. It serves as a strategic base for the Imperial Legion during their efforts in the Skyrim civil war.\n\nThe camp is typically under the command of Legate Constantius Tituleius.", + "display_name": "pale_imperial_camp", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Red Road Pass is a giant camp located south-southwest of Dawnstar and north of the Hall of the Vigilant in The Pale. The camp is inhabited by giants and features the typical elements of a giant encampment, such as mammoth bones and a cooking fire.", + "display_name": "red_road_pass", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stonehill Bluff is a giant camp located south-southwest of Dawnstar and north-northeast of Volunruud in The Pale. The camp is typical of the isolated and rugged homes of Skyrim's giants, featuring a large central bonfire, mammoth bones, and various trophies from the wild.", + "display_name": "stonehill_bluff", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Tumble Arch Pass is a giant camp located northeast of Whiterun and south-southwest of Nightgate Inn in The Pale. The camp is home to giants and features the usual elements of a giant encampment, including mammoth bones and a cooking fire", + "display_name": "tumble_arch_pass", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Dunstad is a large fort located south of Dawnstar and west of Duskglow Crevice in The Pale. It is occupied by bandits.", + "display_name": "fort_dunstad", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nightcaller Temple is a small fort perched on a clifftop overlooking Dawnstar, located east of the town in The Pale. Known to some locals as the Tower of Dawn, the temple is a ruin within a ruin—originally a military fort, it was later abandoned and eventually occupied by worshippers of the Daedric Prince Vaermina.\n\nThe temple's history is marked by a violent conflict. When the Daedric devotees began using the Skull of Corruption, its dark influence caused terrible nightmares among a nearby Orc war party. The Orcs attacked the temple, determined to destroy the artifact. In a desperate bid to protect the Skull, the worshippers released the Miasma, a gas that put everyone within the temple into a deep sleep, leaving the structure abandoned once more.", + "display_name": "nightcaller_temple", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Windward Ruins is a small outdoor Nordic ruin located southwest of Dawnstar and northeast of Mzinchaleft in The Pale. The ruins are inhabited by skeevers, making it a relatively minor but noteworthy location in the region.", + "display_name": "windward_ruins", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frostmere Crypt is a medium-sized Nordic ruin located south-southwest of Dawnstar and east-northeast of Stonehills in The Pale. The crypt is occupied by bandits.", + "display_name": "frostmere_crypt", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "High Gate Ruins is a medium-sized Nordic ruin located west of Dawnstar and east of the Wreck of the Icerunner in The Pale. The ruins are inhabited by draugr.", + "display_name": "high_gate_ruins", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Korvanjund is a medium-sized Nordic ruin located northeast of Whiterun and south of Silverdrift Lair in The Pale. The ruin is inhabited by draugr.", + "display_name": "korvanjund", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Silverdrift Lair is a small Nordic ruin located south-southeast of Dawnstar and west-northwest of Nightgate Inn in The Pale. The lair is inhabited by draugr.", + "display_name": "silverdrift_lair", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Volunruud is a medium-sized Nordic ruin located southeast of Morthal and north-northwest of Halted Stream Camp in The Pale. The ruin is inhabited by draugr.", + "display_name": "volunruud", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Yorgrim Overlook (also referred to as Yorgrim's Overlook) is a small outdoor Nordic ruin located on the southern slope of the mountain range directly south of Winterhold. The path to the overlook begins just northeast of Forsaken Cave, leading up a series of steps flanked by ancient Nordic statues.", + "display_name": "yorgrim_overlook", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Tower of Mzark is a small Dwarven tower located in Blackreach, accessible only from within the cavern. It is situated in the southwestern corner of Blackreach, perched on a spire between two waterfalls. A stone bridge crosses the river below, connecting to the northern face of the tower.", + "display_name": "tower_of_mzark", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Raldbthar is a medium-sized Dwarven ruin located west-southwest of Windhelm in The Pale. The ruin is filled with ancient Dwemer machinery, traps, and automatons, making it a challenging destination for adventurers. Bandits have taken refugee in the area.", + "display_name": "raldbthar", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Irkngthand is a large Dwarven ruin located west of Windhelm and northwest of Raldbthar in The Pale. The ruin is initially occupied by bandits.\n\nThe entrance to Irkngthand can be reached by following a dirt path south from Nightgate Inn. When the path diverges, take the eastern route, as the southwest branch leads to Tumble Arch Pass. Alternatively, the entrance can be accessed by descending the mountain from the south and navigating a series of wooden bridges leading up to the ruin.", + "display_name": "irkngthand", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Shrine of Mehrunes Dagon is a shrine dedicated to the Daedric Prince Mehrunes Dagon, located in The Pale, south-southeast of Stonehills and southwest of The Lord Stone.\n\nThe shrine is best reached by traveling southwest from The Lord Stone, following a winding path that leads to its remote location in the mountainous terrain.", + "display_name": "shrine_of_mehrunes_dagon", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bronze Water Cave is a small cave located west of Windhelm and east-southeast of Nightgate Inn in The Pale.", + "display_name": "bronze_water_cave", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Forsaken Cave is a medium-sized cave located west of Windhelm, inhabited by ice wraiths and draugr.", + "display_name": "forsaken_cave", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Duskglow Crevice is a small cave located south of Dawnstar and east of Fort Dunstad in The Pale. The cave is inhabited by Falmer. The cave is accessible via a path off the road between Dawnstar and Windhelm, not far north-northeast of the Weynon Stones. It can also be approached from Fort Fellhammer.", + "display_name": "duskglow_crevice", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dimhollow Crypt is a medium-sized cave located east of Stonehills and southwest of Frostmere Crypt in The Pale. Rumors of vampires have been seen around the area.", + "display_name": "dimhollow_crypt", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Wreck of the Brinehammer is a shipwreck located northwest of Dawnstar and northeast of High Gate Ruins, along the shore of the Sea of Ghosts in The Pale. The remains of the ship are scattered across the coastline.", + "display_name": "wreck_of_the_brinehammer", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shearpoint is a mountaintop dragon lair located northeast of Whiterun and southwest of Irkngthand in The Pale. To reach Shearpoint, adventurers can follow a rough path northwest past Fellglow Keep, circling northeast to the summit.", + "display_name": "shearpoint", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shrouded Grove is a secluded grove with a small cave located in The Pale, west of Lake Yorgrim, due south of Silverdrift Lair, and west of Nightgate Inn.", + "display_name": "shrouded_grove", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Weynon Stones are an ancient landmark in The Pale, consisting of a circle of standing stones. The site is located south of Dawnstar, between Korvanjund and Fort Dunstad, just south of the main path connecting these locations.", + "display_name": "weynon_stones", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Beitild's House is the residence of Beitild, a Nord miner and the owner of Iron-Breaker Mine, located in Dawnstar. Beitild is known for her strong personality and her position as a key figure in Dawnstar's economy, with the mine being one of the town's primary sources of income.", + "display_name": "beitild's_house", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Brina's House is a small residence in Dawnstar, home to Brina Merilis, a Nord warrior and former commander in the Imperial Legion. She is accompanied by Horik Halfhand, a retired Nord Legionnaire who remains fiercely loyal to Brina, his former commander.", + "display_name": "brina's_house", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fruki's House is a small residence located in Dawnstar, just north of Quicksilver Mine. The house is home to Fruki, a hardworking Nord miner employed at the mine.", + "display_name": "fruki's_house", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Irgnir's House is a modest home located at the eastern end of Dawnstar. It serves as the residence of Irgnir, a Nord miner who works under Beitild at the Iron-Breaker Mine.", + "display_name": "irgnir's_house", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron-Breaker Mine is a small iron mine located in the eastern part of Dawnstar. The mine is owned by Beitild, a prominent Nord figure in the town's mining industry, and serves as a critical part of the local economy. Several miners work under Beitild's supervision, including Gjak, Karl, and Bodil.", + "display_name": "iron-breaker_mine", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Leigelf's House is the home of Leigelf, a Nord miner and the owner of Quicksilver Mine in Dawnstar. Located in the center of town, next to the blacksmith, the house reflects Leigelf's standing as a key figure in Dawnstar's mining industry.", + "display_name": "leigelf's_house", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Quicksilver Mine is a small but significant quicksilver mine located in the western part of Dawnstar. Owned by Leigelf, the mine is an essential part of the town's economy, providing valuable quicksilver ore and employment for its residents.\n\nAmong the miners working in Quicksilver Mine are Orgny, Edith, and Lond.", + "display_name": "quicksilver_mine", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rustleif's House is a smithy located near the shoreline of Dawnstar, facing the bay. It serves as both the home and workshop of Rustleif, a renowned weaponsmith known for crafting arms and armor for the jarl's men. His skill and reputation make him an important figure in the town's economy and defense.\n\nRustleif is assisted by his Redguard wife, Seren, who is pregnant and plays an active role in the business. Both Rustleif and Seren offer merchant services, providing weapons, armor, and crafting supplies to adventurers and locals alike.", + "display_name": "rustleif's_house", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Silus Vesuius's House is a residence in Dawnstar that doubles as a museum dedicated to the Mythic Dawn, a secretive cult infamous for worshipping the Daedric Prince of Destruction, Mehrunes Dagon. The Mythic Dawn, led by Mankar Camoran, orchestrated the assassination of Emperor Uriel Septim VII and his heirs in 3E 433, a plot that triggered the Oblivion Crisis and the end of the Third Era.\n\nSilus's museum preserves artifacts and history from this dark chapter of Tamriel's past, offering visitors a chance to learn about the Mythic Dawn's deeds and their catastrophic legacy. It is a controversial location due to the subject matter.", + "display_name": "silus_vesuius's_house", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Mortar and Pestle is the alchemy shop in Dawnstar, situated between Brina's House and Beitild's House. The shop is run by Frida, an elderly but skilled alchemist who has spent years mastering the art of potion-making.", + "display_name": "the_mortar_and_pestle", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Sea Squall is a ship permanently docked in Dawnstar's Northstar Port. Captain Wayfinder, a Nord owns the ship serves. Among the inhabitants of The Sea Squall are Guthrum, an aging Nord ranger who has made the ship his home, and Ravam Verethi, a Dark Elf.", + "display_name": "the_sea_squall", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The White Hall is a prominent two-story structure located on a hillside overlooking Dawnstar. Positioned next to the Dawnstar Barracks, it serves as the seat of power for the Jarl of the Pale and their court. The hall is home to Jarl Skald, the ruler of the Pale, along with key members of his court, including Madena, the court wizard; Jod, the housecarl; Frorkmar Banner-Torn, the military advisor; and Bulfrek, the servant. The White Hall is central to the governance of the Pale, reflecting both its importance and the modest nature of its northern setting.", + "display_name": "the_white_hall", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Windpeak Inn is a cozy inn located in Dawnstar, conveniently situated as the first building you'll encounter when entering the town from the main road. The inn is run by Thoring, who manages the establishment, rents out rooms, and offers food and drinks to travelers and locals alike.\n\nKarita, Thoring's daughter, serves as the inn's bard, providing music and entertainment to patrons.", + "display_name": "windpeak_inn", + "emotion": "", + "importance": 0.75, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Pale is a hold in northern Skyrim, with its capital in Dawnstar. It is aligned with the Stormcloaks. \n\nThe Pale is a sparsely populated region, known for its harsh, snow-covered terrain and limited safe havens for travelers. The unforgiving landscape is largely unsuitable for farming, though the far southern edges, where the mountains give way to more hospitable terrain, offer better conditions. The hold's largest lake, Lake Yorgrim, lies to the south, feeding the River Yorgrim. One of three entrances to Blackreach can be found in Raldbthar, a Dwarven ruin located south of the lake.", + "display_name": "the_pale", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnstar is a settlement on the northern coast of Skyrim and serves as the capital of The Pale. Historically, it was a garrison town used as an exile post due to its cold, harsh climate and notorious gales. Its name is said to come from its reputation for \"greeting the sun as it begins its journey.\" Dawnstar has a turbulent history, often troubled by the Ice Tribes and Gehenoth, and it has been the site of battles that have significantly impacted the fate of the Empire. \n\nKey locations in Dawnstar include The White Hall, the seat of the Jarl of the Pale, Windpeak Inn, The Sea Squall, and The Mortar and Pestle, a local alchemy shop. Despite its small size, Dawnstar remains an essential hub for trade and travel along Skyrim's northern coast.", + "display_name": "dawnstar", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dawnstar Sanctuary is an abandoned Dark Brotherhood sanctuary located somewhere in Dawnstar.", + "display_name": "dawnstar_sanctuary", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "\"Nightgate Inn is a remote inn located west of Windhelm in The Pale. You do not know who runs the inn.You do not know anything else about this area.", + "display_name": "nightgate_inn", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Hall of the Vigilant is a secluded lodge located south-southwest of Dawnstar in The Pale. It serves as the headquarters for the Vigilants of Stendarr, a group dedicated to hunting Daedra and other malevolent forces in Skyrim. You do not know who is in charge of the hall/You do not know anything else about this area.", + "display_name": "hall_of_the_vigilant", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Loreius Farm is a small farm located in The Pale, north of Whitewatch Tower. You do not know who Loreius is.You do not know anything else about this area.", + "display_name": "loreius_farm", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Anga's Mill is a small wood mill located along the north bank of the River Yorgrim, west of the Windhelm Stables in The Pale. You do not know much about Anga, apart from the fact she runs the mill. You do not know anything else about this area.", + "display_name": "anga's_mill", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blizzard Rest is a giant camp located south of Dawnstar in The Pale. You do not know anything else about this area.", + "display_name": "blizzard_rest", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pale Stormcloak Camp is a Stormcloak military encampment located in The Pale on the southern shore of Lake Yorgrim.You do not know anything else about this area.", + "display_name": "pale_stormcloak_camp", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pale Imperial Camp is an Imperial military encampment located in The Pale, west of Dawnstar.\n\nYou do not know who is in charge of the camp/You do not know anything else about this area.", + "display_name": "pale_imperial_camp", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Red Road Pass is a giant camp located south-southwest of Dawnstar and north of the Hall of the Vigilant in The Pale. You do not know anything else about this area.", + "display_name": "red_road_pass", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stonehill Bluff is a giant camp located south-southwest of Dawnstar in The Pale. You do not know anything else about this area.", + "display_name": "stonehill_bluff", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Tumble Arch Pass is a giant camp located northeast of Whiterun and south-southwest of Nightgate Inn in The Pale.You do not know anything else about this area.", + "display_name": "tumble_arch_pass", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Dunstad is a large fort located south of Dawnstar in The Pale.You do not know anything else about this area.", + "display_name": "fort_dunstad", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nightcaller Temple is a small fort perched on a clifftop overlooking Dawnstar, located east of the town in The Pale.You do not know anything else about this area.", + "display_name": "nightcaller_temple", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Windward Ruins is a small outdoor Nordic ruin located southwest of Dawnstar in The Pale. You do not know anything else about this area.", + "display_name": "windward_ruins", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frostmere Crypt is a medium-sized Nordic ruin located south-southwest of Dawnstar in The Pale. You do not know anything else about this area.", + "display_name": "frostmere_crypt", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "High Gate Ruins is a medium-sized Nordic ruin located west of Dawnstar in The Pale. You do not know anything else about this area.", + "display_name": "high_gate_ruins", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Korvanjund is a medium-sized Nordic ruin located northeast of Whiterun in The Pale. .You do not know anything else about this area.", + "display_name": "korvanjund", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Silverdrift Lair is a small Nordic ruin located south-southeast of Dawnstar in The Pale. You do not know anything else about this area.", + "display_name": "silverdrift_lair", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Volunruud is a medium-sized Nordic ruin located southeast of Morthal in The Pale.You do not know anything else about this area.", + "display_name": "volunruud", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Yorgrim Overlook is a small outdoor Nordic ruin located on the southern slope of the mountain range directly south of Winterhold. You do not know anything else about this area.", + "display_name": "yorgrim_overlook", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Tower of Mzark is a small Dwarven tower located in Blackreach.You do not know anything else about this area.", + "display_name": "tower_of_mzark", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Raldbthar is a medium-sized Dwarven ruin located west-southwest of Windhelm in The Pale. You do not know anything else about this area.", + "display_name": "raldbthar", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Irkngthand is a large Dwarven ruin located west of Windhelm in The Pale.You do not know anything else about this area.", + "display_name": "irkngthand", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Shrine of Mehrunes Dagon is a shrine dedicated to the Daedric Prince Mehrunes Dagon, located somewhere near the mountains in south of Dawnstar The Pale.You do not know anything else about this area.", + "display_name": "shrine_of_mehrunes_dagon", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bronze Water Cave is a small cave located west of Windhelm and east-southeast of Nightgate Inn in The Pale. You do not know anything else about this area.", + "display_name": "bronze_water_cave", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Forsaken Cave is a medium-sized cave located west of Windhelm.You do not know anything else about this area.", + "display_name": "forsaken_cave", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Duskglow Crevice is a small cave located south of Dawnstar in The Pale. You do not know anything else about this area.", + "display_name": "duskglow_crevice", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dimhollow Crypt is a medium-sized cave located east of Stonehills in The Pale. You do not know anything else about this area.", + "display_name": "dimhollow_crypt", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Wreck of the Brinehammer is a shipwreck located along the shore of the Sea of Ghosts in The Pale.You do not know anything else about this area.", + "display_name": "wreck_of_the_brinehammer", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shearpoint is a mountaintop dragon lair located northeast of Whiterun in The Pale. You do not know anything else about this area.", + "display_name": "shearpoint", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shrouded Grove is a secluded grove with a small cave located west of Nightigate Inn in The Pale.You do not know anything else about this area.", + "display_name": "shrouded_grove", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Weynon Stones are an ancient landmark in The Pale. The site is located south of Dawnstar.You do not know anything else about this area.", + "display_name": "weynon_stones", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Beitild's House is the residence of Beitild, located in Dawnstar. You do not know who Betilid is.You do not know anything else about this area.", + "display_name": "beitild's_house", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Brina's House is a residence in Dawnstar, home to Brina Merilis. You do not know who she is.You do not know anything else about this area.", + "display_name": "brina's_house", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fruki's House is a small residence located in Dawnstar. You do not know who she is.You do not know anything else about this area.", + "display_name": "fruki's_house", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Irgnir's House is ahome located in Dawnstar. You do not know who Irgnir is.You do not know anything else about this area.", + "display_name": "irgnir's_house", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iron-Breaker Mine is a small iron mine located in the eastern part of Dawnstar. You do not know who runs the mine.You do not know anything else about this area.", + "display_name": "iron-breaker_mine", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Leigelf's House is the home of Leigelf in Dawnstar. You do not know who Leigelf is.You do not know anything else about this area.", + "display_name": "leigelf's_house", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Quicksilver Mine is a small but quicksilver mine located in Dawnstar. You do not know who runs the mine.You do not know anything else about this area.", + "display_name": "quicksilver_mine", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rustleif's House is a building located in Dawnstar. You do not know who Rustleif is.You do not know anything else about this area.", + "display_name": "rustleif's_house", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Silus Vesuius's House is a residence in Dawnstar that doubles as a museum dedicated to the Mythic Dawn, a secretive cult infamous for worshipping the Daedric Prince of Destruction, Mehrunes Dagon. The Mythic Dawn, led by Mankar Camoran, orchestrated the assassination of Emperor Uriel Septim VII and his heirs in 3E 433, a plot that triggered the Oblivion Crisis and the end of the Third Era.\n\nSilus's museum preserves artifacts and history from this dark chapter of Tamriel's past, offering visitors a chance to learn about the Mythic Dawn's deeds and their catastrophic legacy. It is a controversial location due to the subject matter. You do not know anything else about this area.", + "display_name": "silus_vesuius's_house", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Mortar and Pestle is the alchemy shop in Dawnstar. You do not know who runs the shop.You do not know anything else about this area.", + "display_name": "the_mortar_and_pestle", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Sea Squall is a ship permanently docked in Dawnstar's Northstar Port. You do not know who owns the ship.You do not know anything else about this area.", + "display_name": "the_sea_squall", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The White Hall is a prominent structure in Dawnstar. It serves as the seat of power for the Jarl of the Pale and their court. The hall is home to Jarl Skald, the ruler of the Pale. You do now know anyone else who works here.You do not know anything else about this area.", + "display_name": "the_white_hall", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Windpeak Inn is an inn located in Dawnstar. You do not know who runs the Inn.You do not know anything else about this area.", + "display_name": "windpeak_inn", + "emotion": "", + "importance": 0.4, + "location": "Pale", + "tags": [], + "type": "LOCATION" + } + ], + "entry_count": 94, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Locations - Pale", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/Oghma_-_Locations_-_Reach.sknpack b/oghma-sknpack/Oghma_-_Locations_-_Reach.sknpack new file mode 100644 index 0000000..6eb7b2d --- /dev/null +++ b/oghma-sknpack/Oghma_-_Locations_-_Reach.sknpack @@ -0,0 +1,1444 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Tamrielic lore from CHIM's Oghma Infinium — locations reach. Merges educated and common-knowledge entries graded by importance.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "The Reach is a mountainous hold in western Skyrim, with its capital, Markarth, nestled in the southwestern corner of the region. It is aligned with the Imperial Legion. The hold is dominated by the rugged Druadach Mountains, while its eastern edge, stretching from Broken Tower Redoubt to Fort Sungard, is characterized by hilly terrain. The Karth River originates in the southern mountains, carving the dramatic Karth River Canyon as it flows through the hold.\n\nMarkarth, a former Dwemer city, rises from the living rock of the Druadach Mountains, reflecting the ancient ingenuity of its creators. The Reach is also home to smaller settlements such as Karthwasten and Old Hroldan, as well as the Orc stronghold Dushnikh Yal in the southern steppes. The region is populated by the native Reachmen, who form the majority in many settlements, and the Forsworn, a militant faction that fiercely guards their independence, attacking outsiders on sight.\n\nFlora in the Reach includes juniper berry bushes, hanging moss, mora tapinella, and scattered mountain flowers, with greater concentrations in the northeast. Its fauna is equally rugged, with bears, sabre cats, and other predators roaming its hills and valleys.", + "display_name": "the_reach", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Reach is a mountainous hold in western Skyrim, with its capital, Markarth, nestled in the southwestern corner of the region. It is aligned with the Imperial Legion. The hold is dominated by the rugged Druadach Mountains, while its eastern edge, stretching from Broken Tower Redoubt to Fort Sungard, is characterized by hilly terrain. The Karth River originates in the southern mountains, carving the dramatic Karth River Canyon as it flows through the hold.\n\nMarkarth, a former Dwemer city, rises from the living rock of the Druadach Mountains, reflecting the ancient ingenuity of its creators. The Reach is also home to smaller settlements such as Karthwasten and Old Hroldan, as well as the Orc stronghold Dushnikh Yal in the southern steppes. The region is populated by the native Reachmen, who form the majority in many settlements, and the Forsworn, a militant faction that fiercely guards their independence, attacking outsiders on sight.\n\nFlora in the Reach includes juniper berry bushes, hanging moss, mora tapinella, and scattered mountain flowers, with greater concentrations in the northeast. Its fauna is equally rugged, with bears, sabre cats, and other predators roaming its hills and valleys.", + "display_name": "reach", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Markarth is a major city located in the southwest of Skyrim, near the border of High Rock, and serves as the capital of the Reach. Built within an ancient Dwemer city, its architecture is strikingly unique, with much of it carved into the surrounding rock. Jarl Igmund, the ruler, struggles with the Forsworn, a militant group that infests the surrounding countryside, attacking travelers and threatening the hold. The people of Markarth are wary of outsiders, with the city guards treating them with suspicion and hostility.\n\nThe Silver-Blood family holds significant influence in Markarth, owning half the city, including the Silver-Blood Inn and Cidhna Mine, a notorious prison considered the most secure in Skyrim. The city’s poor live in The Warrens, a cliffside area of extreme poverty, with many working in the mines and smelters. Near the city entrance, an open-air marketplace hosts several shops, while the guards are stationed in a Dwemer dormitory beneath the central Guard Tower.\n\nMarkarth is also home to Understone Keep, the ancient Dwemer castle and seat of government located at the western end of the city. Other notable locations include the Temple of Dibella, the Hag's Cure, Arnleif and Sons Trading Company, and Salvius Farm.", + "display_name": "markarth", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Understone Keep is an ancient Dwarven structure built into the mountainside on the second tier, western side of Markarth. It serves as the seat of power for the Jarl of Markarth, combining the functionality of a palace with the mystique of Dwemer craftsmanship. Upon entering, the keep appears as a cave, but it quickly opens into a sprawling palace, featuring the Jarl's throne room, The Mournful Throne, living quarters, a personal blacksmith, the war room, and the palace kitchen.\n\nThe keep houses notable areas accessible only through its confines, including Nchuand-Zel, the Dwemer Museum, Calcelmo’s Laboratory, and Calcelmo’s Tower. It also provides access to Markarth Wizards' Balcony and connects to the Hall of the Dead, which has its own separate entrance. The museum is guarded, and access requires permission from Calcelmo, the court wizard and an authority on Dwemer lore.\n\nThe current Jarl, Igmund, is supported by his Steward Raerek, Housecarl Faleen, and Legate Emmanuel Admand, reflecting his alignment with the Imperial Legion.", + "display_name": "understone_keep", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Karthwasten is a small mining town located in the Reach, east of the Shrine to Peryite and north of Blind Cliff Cave. The town is notable for being one of the few mining settlements in the Reach not owned by a Nord, with Ainethach, a Reachman, holding ownership of both surrounding silver mines: Sanuarach Mine and Fenn's Gulch Mine.\n\nThe town consists of three buildings: Karthwasten Hall, where Ainethach resides; Enmon's house, home to Enmon, his wife Mena, and daughter Fjotra; and the miner's barracks, housing Belchimac, Lash gra-Dushnikh, and Ragnar. Amenities include a tanning rack near Karthwasten Hall and a grindstone on the deck of the miner’s barracks.\n\nSanuarach Mine, the main silver mine, is located north of Karthwasten Hall, with a smelter and silver ore nearby. Fenn’s Gulch Mine lies at the town’s northwestern edge and also features a smelter, along with silver ingots and ore near its entrance.", + "display_name": "karthwasten", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Salvius Farm is a small, family-run farm located east of Markarth and north of Left Hand Mine in the Reach. The farm is tended by Vigdis Salvius and Rogatus Salvius, who live together in the Farmhouse.", + "display_name": "salvius_farm", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cidhna Mine is a medium-sized silver mine and forced-labor prison camp located in southern Markarth in the Reach. It is owned and operated by the influential Silver-Blood family and serves as the city’s prison, known as the most feared and secure facility in Skyrim. The mine consists of two zones: Cidhna Mine and Markarth Ruins.\n\nPrisoners in Cidhna Mine are forced to mine silver ore day and night, receiving food only weekly upon meeting their quotas. The mine's harsh conditions and impenetrable security make it a dreaded destination for those who break the law in Markarth. Its dual role as a prison and a functioning silver mine highlights the Silver-Blood family's control over both justice and industry in the Reach.", + "display_name": "cidhna_mine", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fenn's Gulch Mine is a small silver mine located in the northwestern part of Karthwasten in the Reach. There is nothing of interest at this location.", + "display_name": "fenn's_gulch_mine", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kolskeggr Mine is a small gold mine and settlement located east-northeast of Markarth and south of The Lover Stone in the Reach. Kolskeggr Mine is occupied by Forsworn, who forced the miners to abandon the site and seek refuge at Left Hand Mine.", + "display_name": "kolskeggr_mine", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Left Hand Mine is a small iron mine and settlement located southeast of Markarth and south of Salvius Farm in the Reach. The mine is know for its production of iron ore.\n\nThe settlement serves as a home for the miners, with their residences detailed separately. Left Hand Mine also becomes a refuge for the displaced workers from Kolskeggr Mine after it is overrun by Forsworn,.", + "display_name": "left_hand_mine", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sanuarach Mine is a small silver mine located in northern Karthwasten in the Reach. It is occupied by Silver-Blood mercenaries attempting to take control of the mine.\n\nThe mine, along with the settlement of Karthwasten and its other mine, Fenn's Gulch Mine, is owned by Ainethach, one of the few non-Nord landowners in the Reach", + "display_name": "sanuarach_mine", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragon Bridge Overlook is a small Forsworn camp located south of Dragon Bridge and north of Chillwind Depths in the Reach. Perched on a high vantage point, the camp provides a strategic view of the surrounding area.\n\nThe Forsworn occupying the camp are hostile to outsiders, making it a dangerous location for travelers passing through the region. Its proximity to Dragon Bridge makes it a notable threat to the nearby settlement.", + "display_name": "dragon_bridge_overlook", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Druadach Redoubt is a small Forsworn camp and cave located south of Mor Khazgur and northeast of Bthardamz in the Reach. The redoubt is accessed via a path marked by a tall tree with a bear trap beneath it and bone chimes hanging from the branches, serving as a warning to intruders.\n\nThe exterior of Druadach Redoubt features a Forsworn camp with basic amenities and hostile inhabitants.", + "display_name": "druadach_redoubt", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Karthspire is a large Forsworn camp and cave located east of Markarth and northwest of Old Hroldan Inn in the Reach. The Karthspire, and serves as a significant base for the Forsworn. Situated in a strikingly rugged landscape, Karthspire features both open camp areas and natural cave passages, blending Forsworn structures with the surrounding terrain. It is rumored that some hidden temple is somewhere in the mountainside of Karthspire.", + "display_name": "karthspire_camp", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Reach Imperial Camp is an Imperial military encampment located south of Bthardamz and west of Karthwasten in the Reach. Commanded by Legate Emmanuel Admand, the camp serves as a strategic base for the Imperial Legion's operations in the region during Skyrim's civil war.", + "display_name": "reach_imperial_camp", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Reach Stormcloak Camp is a military encampment located west of Liar's Retreat and northeast of Karthwasten in the Reach. It serves as a base for the Stormcloak forces during Skyrim's civil war and is commanded by Kottir Red-Shoal.", + "display_name": "reach_stormcloak_camp", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cliffside Retreat is a small shack located south of Dragon Bridge and northeast of Liar's Retreat in the Reach. The shack is inhabited by a lone bear hunter, who lives in seclusion amidst the rugged terrain.", + "display_name": "cliffside_retreat", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Broken Tower Redoubt is a medium-sized fort located east of Karthwasten and north of Rebel's Cairn in the Reach. The fort is occupied by Forsworn and consists of two zones, both named Broken Tower Redoubt: the ground level and the upper tower.\n\nThe fort's position along the route between Karthwasten and Rorikstead makes travel through the area particularly hazardous, with Markarth's guards warning travelers of the Forsworn presence. Its rugged, defensible structure and strategic location highlight the Forsworn's efforts to control the region and resist outside forces.", + "display_name": "broken_tower_redoubt", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Sungard is a large, strategically located fort east-southeast of Markarth and south-southeast of Rorikstead in the Reach. Perched atop a small mountain, the fort overlooks the crossroads connecting the Reach, Whiterun Hold, and Falkreath Hold. The northern plains offer the easiest approach to the fort. It is occupied by Forsworn, Fort Sungard poses a significant challenge to travelers and adventurers in the area. Its strategic position makes it a key location during Skyrim’s civil war.", + "display_name": "fort_sungard", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Harmugstahl is a small fort located north of Karthwasten and east of Druadach Redoubt in the Reach. It is rumored a warlock has taken residence in the location.", + "display_name": "harmugstahl", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bleakwind Bluff is a small, ruined Nordic tower located northwest of Rorikstead in the Reach. Perched on an outcrop of rock, it is inhabited by hagravens and Forsworn, making it a dangerous site for unwary travelers.\n\nThe tower is accessed via a winding path marked by a pile of rocks on the north side of the main route connecting Old Hroldan Inn with Rorikstead. The path loops around a large rock, doubles back on itself, and ascends several flights of stairs that circle the outcrop, eventually leading to the tower.", + "display_name": "bleakwind_bluff", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cradle Stone Tower is a small, ruined Nordic tower located west of Bard's Leap Summit and east of Valthume in the Reach. The tower is home to a hagraven, making it a perilous destination for adventurers exploring the region.\n\nTo reach the tower, scale the Forsworn-filled hills at Lost Valley Redoubt, cross the waterfall at Bard's Leap Summit, and follow the trail up the western hill.", + "display_name": "cradle_stone_tower", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dead Crone Rock is a small, ruined Nordic tower located south-southwest of Markarth in the Reach, perched above Hag Rock Redoubt. The tower is inhabited by Forsworn, making it a hostile and treacherous destination for travelers. There are rumors that a Hagraven has made a deal with a daedric God lurks in this area.", + "display_name": "dead_crone_rock", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sundered Towers is a small complex of two linked ruined Nordic towers located southeast of Karthwasten and northeast of Red Eagle Redoubt in the Reach. The towers are inhabited by Forsworn and hagravens, presenting a significant challenge to those who venture near.\n\nThe towers sit atop a series of stone staircases and winding paths interspersed with landings.", + "display_name": "sundered_towers", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Four Skull Lookout is a small outdoor Nordic ruin located south of Karthwasten and east of Blind Cliff Cave in the Reach. The ruin is inhabited by bandits and features a single room with open doorways to the northwest and southeast.\n\nThe easiest way to reach the lookout is by approaching from the lower camp at Red Eagle Redoubt before beginning the ascent.", + "display_name": "four_skull_lookout", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hag Rock Redoubt is a small Nordic ruin located south of Markarth in the Reach. This multi-tiered structure is built into the mountainside and features multiple entrances and exits across different levels, creating a maze-like layout.\n\nAs you approach the site, a Nordic tower greets you at the base, with a path leading south past the tower, flanked by tall stone arches high above. The Forsworn occupy the redoubt, making it a dangerous location for travelers.", + "display_name": "hag_rock_redoubt", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lost Valley Redoubt is a massive Nordic ruin located a short distance west of Bilegulch Mine, southeast of Markarth, and northwest of Falkreath in the Reach. The site is inhabited by Forsworn and hagravens, presenting a formidable challenge for adventurers.\n\nThe pathway from the river ascends through several open terraces, each guarded by Forsworn sentries. The sprawling layout and numerous foes make it a location that requires preparation and endurance.", + "display_name": "lost_valley_redoubt", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ragnvald is a medium-sized Nordic ruin located north of Markarth and south-southwest of Bthardamz in the Reach. The ruin is inhabited by draugr and houses the dragon priest Otar the Mad, who lays to rest here.", + "display_name": "ragnvald", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Valthume is a medium-sized Nordic ruin located southeast of Markarth and west of Cradle Stone Tower in the Reach. The ruin is inhabited by draugr, and dragon priest Hevnoraak is layed to rest here.", + "display_name": "valthume", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Arkngthamz is a small Dwarven ruin located southeast of Dushnikh Yal and west of Valthume in Falkreath Hold. The ruin can be accessed via a path heading east from the Orc stronghold of Dushnikh Yal.", + "display_name": "arkngthamz", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bthardamz is a large Dwarven ruin located west-northwest of Karthwasten and south-southeast of Deep Folk Crossing in the Reach. The ruin is inhabited by the Afflicted, followers of Peryite. To reach Bthardamz from the Shrine to Peryite, head west to find a path, then follow it north, west, and finally south. The entrance is marked by two wide stairways leading to a winding corridor that descends into the ruin", + "display_name": "bthardamz", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nchuand-Zel is a large Dwarven ruin located within Understone Keep in the city of Markarth, in the Reach. This ancient Dwarven castle, carved deep into the mountain, forms the cavernous interior of the keep and is currently being excavated under the supervision of Calcelmo, Markarth’s court wizard and a renowned Dwemer scholar.\n\nAccessible through Understone Keep, Nchuand-Ze.", + "display_name": "nchuand-zel", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Shrine to Peryite is a secluded shrine dedicated to the Daedric Prince Peryite, located northeast of Markarth and west of Karthwasten in the Reach. To reach the shrine from Markarth, travelers should take the path north of Salvius Farm and follow the right fork near Ragnvald, as there is no direct route from Karthwasten.\n\nThe shrine is a place of worship for Peryite’s, the Daedric Prince of Pestilence, followers,.", + "display_name": "shrine_to_peryite", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blind Cliff Cave is a medium-sized cave located southwest of Karthwasten along the banks of the Karth River in the Reach. The cave is inhabited by Forsworn, making it a dangerous location for adventurers.", + "display_name": "blind_cliff_cave", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bruca's Leap Redoubt is a small cave located southwest of Dragon Bridge in the Reach. The cave is inhabited by Forsworn, making it a dangerous destination for travelers and adventurers in the area.", + "display_name": "bruca's_leap_redoubt", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chillwind Depths is a medium-sized cave located south of Dragon Bridge in Hjaalmarch. Nestled beside a small waterfall and pond, the cave is occupied by Falmer, making it a dangerous place for travelers.", + "display_name": "chillwind_depths", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Darkfall Cave is a small cave located south of Mor Khazgur and north of Druadach Redoubt in the Reach. The entrance is situated at the end of a mountain meadow that rises to just above the snowline, offering a remote and scenic approach.", + "display_name": "darkfall_cave", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Gloomreach is a medium-sized cave located southeast of Old Hroldan Inn in the Reach. The cave is inhabited by Falmer.", + "display_name": "gloomreach", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Liar's Retreat is a small cave and underground cellar located northwest of Broken Tower Redoubt and northeast of Karthwasten in the Reach. The entrance is marked by a cairn, making it easier to spot amidst the rugged terrain. The cave is occupied by bandits.", + "display_name": "liar's_retreat", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Purewater Run is a small cave located south-southeast of Markarth and west of Dushnikh Yal in the Reach.", + "display_name": "purewater_run", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Reachcliff Cave is a small cave located east-southeast of Markarth and northeast of Dushnikh Yal in the Reach. The cave's entrance is accessed via a path branching south from the main road leading west to Markarth. It holds a shrine to Namira, the Daedric Prince of Hunger and the Mistress of Decay.", + "display_name": "reachcliff_cave", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Reachwater Rock is a small cave located east-southeast of Markarth and south of Karthspire in the Reach. The cave is inhabited by draugr. To reach the cave, take the road southeast toward Falkreath and look for a path on the right just before crossing the final bridge near the turnoff for Karthspire Camp. It is rumored that a powerful Breton Conjurer, though you do not know who, is buried here.", + "display_name": "reachwater_rock", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rebel's Cairn is a small cave located northwest of Rorikstead and southeast of Sundered Towers in the Reach. Rebel's Cairn is tied to the legend of Red Eagle, a hero of the Reach, and serves as the final resting place for the Forsworn's most revered weapon, Red Eagles Bane.", + "display_name": "rebel's_cairn", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Red Eagle Redoubt is a small cave and two exterior camps located east of Markarth and southwest of Sundered Towers in the Reach. The site is occupied by Forsworn. It is tied to the legend of Red Eagle, a hero of the Reach.", + "display_name": "red_eagle_redoubt", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Soljund's Sinkhole is a small moonstone mine and settlement located east of Markarth and north of Old Hroldan Inn in the Reach. The mine is inhabited by draugr, presenting a challenge for miners and adventurers alike.", + "display_name": "soljund's_sinkhole", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragontooth Crater is a dragon lair located north-northwest of Karthwasten and southwest of Harmugstahl in the Reach. The lair is perched atop a mountain, making it a prominent landmark in the rugged terrain.\n\nTo reach Dragontooth Crater from Karthwasten, navigate east around the mountain and approach the site from the north.", + "display_name": "dragontooth_crater", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Lover Stone is one of the thirteen Standing Stones scattered across Skyrim, located east of Markarth and north of Kolskeggr Mine in the Reach. To access the stone, approach from the west, as the eastern side is obstructed by a steep cliff.\n\nActivating the Lover Stone grants the ability to improve all skills by a marginal amount.", + "display_name": "the_lover_stone", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bard's Leap Summit is a wooden plank situated at the very top of Lost Valley Redoubt in the Reach, roughly halfway between Markarth and Falkreath. Reaching the summit requires battling through Forsworn who occupy the ruins and ascending to the highest point of the structure.\n\nAt the summit, a narrow walkway extends over the edge of a waterfall, offering a dramatic and scenic view. Legend has it that leaping from the plank and surviving the fall can lead to great reawrds.", + "display_name": "bard's_leap_summit", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Deep Folk Crossing is an ancient Dwarven bridge located in the northern part of the Reach, north-northwest of Bthardamz and west of Druadach Redoubt. The bridge spans a weir and features distinct Dwemer structures at either end.", + "display_name": "deep_folk_crossing", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Reachwind Eyrie is a small Dwarven tower located east-southeast of Markarth, perched atop a large cliff overlooking the Karth River. It is surrounded by some of Skyrim's greener lands, providing a stunning view of the valley below.\n\nDespite standing for thousands of years, the tower is remarkably well-preserved.", + "display_name": "reachwind_eyrie", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sky Haven Temple is a large, mountaintop fort located east of Markarth in the Reach, accessible through the Karthspire cave. Once a major temple and outpost for the Blades, it has long been abandoned and is now under Forsworn control. Despite its abandonment, Sky Haven Temple remains a key historical site due to its role as the Blades' primary base in Skyrim and its connection to Alduin's Wall, a pictorial repository of ancient Akaviri dragonlore.\n\nThe temple's history stretches back thousands of years, and although its last use by the Blades is unknown, the structure has remained remarkably well-preserved. Upon reclaiming the temple, Delphine, acting as the Blades' Grandmaster, aims to rebuild the organization and use it as a hidden base of operations. The temple houses Alduin's Wall, which details the Dragon Cult's reign and a prophecy concerning Alduin's return.", + "display_name": "sky_haven_temple", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Old Hroldan Inn is a remote and historic inn located in the Reach, east of Markarth and southwest of Rorikstead. The inn is notable for its connection to Tiber Septim, who once stayed there, adding to its mystique and significance. It is run by Eydis, a widow who manages the inn with the help of her young son, Skuli. Eydis mentions that her husband is fighting in the war, but there is ambiguity surrounding which side he fights for, adding an element of mystery to their story.\n\nLeontius Salvius, a regular at the inn, spends his days working on various menial tasks outside.", + "display_name": "old_hroldan_inn", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dushnikh Yal is a prosperous Orc stronghold located in the southwest of Skyrim, southeast of Markarth. The stronghold thrives due to its combination of resource production and trade. The hunters, Arob and her son Nagrub, supply Hogni Red-Arm with meat for sale in Markarth's marketplace, while Dushnikh Mine, an orichalcum mine with seven ore veins, contributes to the stronghold's wealth.\n\nLike many Orc strongholds, Dushnikh Yal is surrounded by a wooden palisade with lookout platforms positioned at regular intervals along the walls. A raised walkway runs along the inside of the wall, providing a clear view of the compound. The longhouse sits at the center of the stronghold, with various other structures and activities arranged around it. There are two gates for entry: one to the east and one to the west.", + "display_name": "dushnikh_yal", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Markarth Stables is located outside the city of Markarth, directly opposite the entrance. The stables are run by Banning, a Breton, and Cedran, a Breton hostler. Banning specializes in selling war dogs, while Cedran manages the stables and horses.", + "display_name": "markarth_stables", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Arnleif and Sons Trading Company is a general goods store located next to the market stalls on the north side of Markarth, near the entrance to the city. The store is managed by Lisbet, who inherited it from her husband Gunnar, the son of Arnleif, the original owner.", + "display_name": "arnleif_and_sons_trading_company", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dwemer Museum is located in Understone Keep, in Markath in the Reach Hold. It holds various artifacts belonging to the Dwemer.", + "display_name": "dwemer_museum", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Endon's House is the home of Endon, Adara, and Kerah, located in Markarth on the first terrace above the abandoned house, next door to the Treasury House. Endon and Kerah are both skilled Redguard silversmiths in Markarth. Endon works as a craftsman, while Kerah runs a pawnbroker stall in the Markarth marketplace, dealing in various goods.", + "display_name": "endon's_house", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ogmund's House is a small residence located in Markarth, next door to Endon's House and directly above Arnleif and Sons Trading Company. It is the home of Ogmund, a local bard and Speech trainer who is well-known in the city.", + "display_name": "ogmund's_house", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Silver-Blood Inn is located in the city of Markarth, opposite the entrance and next to the market stalls. The inn is owned by the powerful Silver-Blood clan, although the family members are rarely seen in the building. Instead, the inn is managed by Kleppr, who oversees the renting of rooms and the sale of food and drink.\n\nKleppr's wife, Frabbi, works at the inn as well, though she is often found arguing with her husband. Their two children, Hreinn and Hroki, also help with various tasks around the inn. Despite the occasional family drama, Silver-Blood Inn remains a popular stop for travelers in Markarth.", + "display_name": "silver-blood_inn", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Smelter Overseer's House is a small residence in Markarth, home to Mulush gro-Shugurz, the Smelter Overseer, and his wife Urzoga gra-Shugurz. The house is tucked away behind a rocky outcropping, making it easy to miss, especially while standing in the smelting area.", + "display_name": "smelter_overseer's_house", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Temple of Dibella is a small Aedric temple located in the heart of Markarth, dedicated to Dibella, the Aedric goddess of love, beauty, and artistry. The temple is situated above the Shrine of Talos and can be accessed by climbing numerous flights of stairs, offering a peaceful and serene atmosphere above the bustling city below.\n\nThe temple is home to the priestesses of Dibella, with Hamal serving as their leader. Other notable priestesses include Anwen, a Redguard, Orla, a Nord, and Senna, a Breton.", + "display_name": "temple_of_dibella", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Hag's Cure is an apothecary located in Markarth, owned and operated by Bothela, a Breton merchant. To find the shop, enter the city gate, turn left, then take the first bridge to the right. Turn left before ascending the stairs at the water wheel, cross the bridge, and climb the stairs to the right, then left.\n\nThe shop is situated on the second terrace above Cidhna Mine, on the south side of Markarth. Bothela runs the business alongside Muiri, a Breton apothecary assistant.", + "display_name": "the_hag's_cure", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Warrens is a shelter for the sick and homeless located in Markarth, hidden just a few feet from the Markarth Smelter. This area is home to the extreme lower-class citizens of the city, including miners, smelters, and those suffering from illness or injury.", + "display_name": "the_warrens", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Treasury House is a location at the northern end of the first terrace in Markarth, overlooking the city and the surrounding Reach. This vital financial institution serves as the lifeblood of the region's economy, offering support and services to landowners, particularly the influential Silver-Blood family. The Treasury House is where miners, farmers, and day-laborers receive their wages, making it essential to the daily functioning of the Reach.\n\nRhiada runs the front desk, overseeing the flow of gold and coin, while the treasury itself is secured behind an expert-locked gate. Nana Ildene and Donnel maintain order and cleanliness in the building, with Nana having worked there for over twenty years.", + "display_name": "treasury_house", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vlindrel Hall is a location at the southern edge of Markarth, nestled within the city's towering stone structures. It sits on the second terrace, offering stunning views of the surrounding Reach and the bustling city below. The house is available for purchase.", + "display_name": "vlindrel_hall", + "emotion": "", + "importance": 0.75, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Reach is a mountainous hold in western Skyrim, with its capital, Markarth, nestled in the southwestern corner of the region. It is aligned with the Imperial Legion. The hold is dominated by the rugged Druadach Mountains.\n\nMarkarth, a former Dwemer city, rises from the living rock of the Druadach Mountains, reflecting the ancient ingenuity of its creators. The Reach is also home to smaller settlements such as Karthwasten and Old Hroldan, as well as the The region is populated by the native Reachmen, who form the majority in many settlements, and the Forsworn, a militant faction that fiercely guards their independence, attacking outsiders on sight.", + "display_name": "the_reach", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Reach is a mountainous hold in western Skyrim, with its capital, Markarth, nestled in the southwestern corner of the region. It is aligned with the Imperial Legion. The hold is dominated by the rugged Druadach Mountains.\n\nMarkarth, a former Dwemer city, rises from the living rock of the Druadach Mountains, reflecting the ancient ingenuity of its creators. The Reach is also home to smaller settlements such as Karthwasten and Old Hroldan, as well as the The region is populated by the native Reachmen, who form the majority in many settlements, and the Forsworn, a militant faction that fiercely guards their independence, attacking outsiders on sight.", + "display_name": "reach", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Markarth is a major city located in the southwest of Skyrim, near the border of High Rock, and serves as the capital of the Reach. Built within an ancient Dwemer city, its architecture is strikingly unique, with much of it carved into the surrounding rock. Jarl Igmund, the ruler, struggles with the Forsworn, a militant group that infests the surrounding countryside, attacking travelers and threatening the hold. The people of Markarth are wary of outsiders, with the city guards treating them with suspicion and hostility.\n\nThe Silver-Blood family holds significant influence in Markarth, owning half the city, including the Silver-Blood Inn and Cidhna Mine, a notorious prison considered the most secure in Skyrim. The city’s poor live in The Warrens, a cliffside area of extreme poverty, with many working in the mines and smelters. Near the city entrance, an open-air marketplace hosts several shops, while the guards are stationed in a Dwemer dormitory beneath the central Guard Tower.\n\nMarkarth is also home to Understone Keep, the ancient Dwemer castle and seat of government located at the western end of the city.", + "display_name": "markarth", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Understone Keep is an ancient Dwarven structure built into the mountainside on the western side of Markarth. It serves as the seat of power for the Jarl of Markarth, combining the functionality of a palace with the mystique of Dwemer craftsmanship. \ns its own separate entrance. The museum is guarded, and access requires permission from Calcelmo, the court wizard and an authority on Dwemer lore.\n\nThe current Jarl is Igmund. You do not know anyone else or lives here.", + "display_name": "understone_keep", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Karthwasten is a small mining town located in the center of the Reach. You do not know anyone who works here.You do not know anything else about this area.", + "display_name": "karthwasten", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Salvius Farm is a small, family-run farm located east of Markarth and north of Left Hand Mine in the Reach. The farm is tended by Vigdis Salvius and Rogatus Salvius, who you do not know.You do not know anything else about this area.", + "display_name": "salvius_farm", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cidhna Mine is a medium-sized silver mine and forced-labor prison camp located in southern Markarth in the Reach. It is owned and operated by the influential Silver-Blood family and serves as the city’s prison, known as the most feared and secure facility in Skyrim. The mine consists of two zones: Cidhna Mine and Markarth Ruins.\n\nPrisoners in Cidhna Mine are forced to mine silver ore day and night, receiving food only weekly upon meeting their quotas.You do not know anything else about this area.", + "display_name": "cidhna_mine", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fenn's Gulch Mine is a small silver mine located in the northwestern part of Karthwasten in the Reach. You do not know anything else about this area.", + "display_name": "fenn's_gulch_mine", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kolskeggr Mine is a small gold mine and settlement located east-northeast of Markarth in the Reach. You do not know anything else about this area.", + "display_name": "kolskeggr_mine", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Left Hand Mine is a small iron mine and settlement located southeast of Markarth in the Reach. You do not know anyone who works here.\n\n\nYou do not know anything else about this area.", + "display_name": "left_hand_mine", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sanuarach Mine is a small silver mine located in northern Karthwasten in the Reach. You do not know anyone at the mine.\nYou do not know anything else about this area.", + "display_name": "sanuarach_mine", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragon Bridge Overlook is a small Forsworn camp located south of Dragon Bridge in the Reach. You do not know anything else about this area.", + "display_name": "dragon_bridge_overlook", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Druadach Redoubt is a small Forsworn camp and cave located south of Mor Khazgur in the Reach. You do not know anything else about this area.", + "display_name": "druadach_redoubt", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Karthspire is a large Forsworn camp and cave located east of Markarth in the Reach.You do not know anything else about this area.", + "display_name": "karthspire_camp", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Reach Imperial Camp is an Imperial military encampment located west of Karthwasten in the Reach. You do not know anything else about this area.", + "display_name": "reach_imperial_camp", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Reach Stormcloak Camp is a military encampment located northeast of Karthwasten in the Reach. You do not know anything else about this area.", + "display_name": "reach_stormcloak_camp", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cliffside Retreat is a small shack located south of Dragon Bridge in the Reach. You do not know anything else about this area.", + "display_name": "cliffside_retreat", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Broken Tower Redoubt is a medium-sized fort located east of Karthwasten in the Reach. You do not know anything else about this area.", + "display_name": "broken_tower_redoubt", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Sungard is a large, strategically located fort east-southeast of Markarth in the Reach.You do not know anything else about this area.", + "display_name": "fort_sungard", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Harmugstahl is a small fort located north of Karthwasten in the Reach.You do not know anything else about this area.", + "display_name": "harmugstahl", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bleakwind Bluff is a small, ruined Nordic tower located northwest of Rorikstead in the Reach. You do not know anything else about this area.", + "display_name": "bleakwind_bluff", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cradle Stone Tower is a small, ruined Nordic tower located west of Bard's Leap Summit in the Reach.You do not know anything else about this area.", + "display_name": "cradle_stone_tower", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dead Crone Rock is a small, ruined Nordic tower located south-southwest of Markarth in the Reach, perched above Hag Rock Redoubt. You do not know anything else about this area.", + "display_name": "dead_crone_rock", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sundered Towers is a small complex of two linked ruined Nordic towers located southeast of Karthwasten in the Reach. You do not know anything else about this area.", + "display_name": "sundered_towers", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Four Skull Lookout is a small outdoor Nordic ruin located south of Karthwasten in the Reach. You do not know anything else about this area.", + "display_name": "four_skull_lookout", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hag Rock Redoubt is a small Nordic ruin located south of Markarth in the Reach. You do not know anything else about this area.", + "display_name": "hag_rock_redoubt", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lost Valley Redoubt is a massive Nordic ruin located southeast of Markarth, and northwest of Falkreath in the Reach. You do not know anything else about this area.", + "display_name": "lost_valley_redoubt", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ragnvald is a medium-sized Nordic ruin located north of Markarth in the Reach. You do not know anything else about this area.", + "display_name": "ragnvald", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Valthume is a medium-sized Nordic ruin located southeast of Markarth in the Reach. You do not know anything else about this area.", + "display_name": "valthume", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Arkngthamz is a small Dwarven ruin located southeast of Dushnikh Yal in Falkreath Hold. You do not know anything else about this area.", + "display_name": "arkngthamz", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bthardamz is a large Dwarven ruin located west-northwest of Karthwasten in the Reach. You do not know anything else about this area.", + "display_name": "bthardamz", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nchuand-Zel is a large Dwarven ruin located within Understone Keep in the city of Markarth, in the Reach. You do not know anything else about this area.", + "display_name": "nchuand-zel", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Shrine to Peryite is a secluded shrine dedicated to the Daedric Prince Peryite, located northeast of Markarth and west of Karthwasten in the Reach. You do not know anything else about this area.", + "display_name": "shrine_to_peryite", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blind Cliff Cave is a medium-sized cave located southwest of Karthwasten along the banks of the Karth River in the Reach.You do not know anything else about this area.", + "display_name": "blind_cliff_cave", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bruca's Leap Redoubt is a small cave located southwest of Dragon Bridge in the Reach. You do not know anything else about this area.", + "display_name": "bruca's_leap_redoubt", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chillwind Depths is a medium-sized cave located south of Dragon Bridge in Hjaalmarch. You do not know anything else about this area.", + "display_name": "chillwind_depths", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Darkfall Cave is a small cave located south of Mor Khazgur in the Reach.You do not know anything else about this area.", + "display_name": "darkfall_cave", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Gloomreach is a medium-sized cave located southeast of Old Hroldan Inn in the Reach.You do not know anything else about this area.", + "display_name": "gloomreach", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Liar's Retreat is a small cave and underground cellar located northeast of Karthwasten in the Reach. You do not know anything else about this area.", + "display_name": "liar's_retreat", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Purewater Run is a small cave located south-southeast of Markarth in the Reach. You do not know anything else about this area.", + "display_name": "purewater_run", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Reachcliff Cave is a small cave located east-southeast of Markarth in the Reach. You do not know anything else about this area.", + "display_name": "reachcliff_cave", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Reachwater Rock is a small cave located east-southeast of Markarth in the Reach. You do not know anything else about this area.", + "display_name": "reachwater_rock", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rebel's Cairn is a small cave located northwest in the Reach. You do not know anything else about this area.", + "display_name": "rebel's_cairn", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Red Eagle Redoubt is a small cave located east of Markarth in the Reach. You do not know anything else about this area.", + "display_name": "red_eagle_redoubt", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Soljund's Sinkhole is a small moonstone mine and settlement located east of Markarth in the Reach. You do not know anything else about this area.", + "display_name": "soljund's_sinkhole", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragontooth Crater is a dragon lair located north-northwest of Karthwasten in the Reach.You do not know anything else about this area.", + "display_name": "dragontooth_crater", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Lover Stone is one of the thirteen Standing Stones scattered across Skyrim, located east of Markarth in the Reach. \n\nActivating the Lover Stone grants the ability to improve all skills by a marginal amount.You do not know anything else about this area.", + "display_name": "the_lover_stone", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bard's Leap Summit is a wooden plank situated at the very top of Lost Valley Redoubt in the Reach.You do not know anything else about this area.", + "display_name": "bard's_leap_summit", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Deep Folk Crossing is an ancient Dwarven bridge located in the northern part of the Reach.You do not know anything else about this area.", + "display_name": "deep_folk_crossing", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Reachwind Eyrie is a small Dwarven tower located east-southeast of Markarth, perched atop a large cliff overlooking the Karth River.\n\nYou do not know anything else about this area.", + "display_name": "reachwind_eyrie", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sky Haven Temple is a large, mountaintop fort located somewhere east of Markarth in the Reach. It is rumored to be an old base to the Imperial Blades, the imperials secret agents. However its exact location has been lost to time.You do not know anything else about this area.", + "display_name": "sky_haven_temple", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Old Hroldan Inn is a remote and historic inn located in the Reach, east of Markarth and southwest of Rorikstead. You do not know who works here.You do not know anything else about this area.", + "display_name": "old_hroldan_inn", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dushnikh Yal is a prosperous Orc stronghold located in the southwest of Skyrim, southeast of Markarth. You do not know anyone at the fort.You do not know anything else about this area.", + "display_name": "dushnikh_yal", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Markarth Stables is located outside the city of Markarth, directly opposite the entrance. You do not know anyone at the stables.You do not know anything else about this area.", + "display_name": "markarth_stables", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Arnleif and Sons Trading Company is a general goods store located next to the market stalls on the north side of Markarth. You do not know who runs the store.You do not know anything else about this area.", + "display_name": "arnleif_and_sons_trading_company", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Dwemer Museum is located in Understone Keep, in Markath in the Reach Hold. It holds various artifacts belonging to the Dwemer.You do not know anything else about this area.", + "display_name": "dwemer_museum", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Endon's House is the home of Endon, Adara, and Kerah, located in Markarth on the first terrace above the abandoned house, next door to the Treasury House. You only know Endon lives here, but not anyone else, and you do not know who Endon is.You do not know anything else about this area.", + "display_name": "endon's_house", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ogmund's House is a small residence located in Markarth. You do not know who Ogmund is.You do not know anything else about this area.", + "display_name": "ogmund's_house", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Silver-Blood Inn is located in the city of Markarth, opposite the entrance and next to the market stalls. The inn is owned by the powerful Silver-Blood clan, though you do not know exactlly who works here.You do not know anything else about this area.", + "display_name": "silver-blood_inn", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Smelter Overseer's House is a small residence in Markarth, you do not know who lives here.You do not know anything else about this area.", + "display_name": "smelter_overseer's_house", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Temple of Dibella is a small Aedric temple located in the heart of Markarth, dedicated to Dibella, the Aedric goddess of love, beauty, and artistry. The temple is situated above the Shrine of Talos . You do not know who runs the temple.You do not know anything else about this area.", + "display_name": "temple_of_dibella", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Hag's Cure is an apothecary located in Markarth. You do not know who runs it.You do not know anything else about this area.", + "display_name": "the_hag's_cure", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Warrens is a shelter for the sick and homeless located in Markarth. You do not know anything else about this area.", + "display_name": "the_warrens", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Treasury House is a location at the northern end of the first terrace in Markarth, overlooking the city and the surrounding Reach. You do not know who works here.You do not know anything else about this area.", + "display_name": "treasury_house", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vlindrel Hall is a location at the southern edge of Markarth, nestled within the city's towering stone structures. The house is available for purchase you have heard.", + "display_name": "vlindrel_hall", + "emotion": "", + "importance": 0.4, + "location": "Reach", + "tags": [], + "type": "LOCATION" + } + ], + "entry_count": 130, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Locations - Reach", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/Oghma_-_Locations_-_Rift.sknpack b/oghma-sknpack/Oghma_-_Locations_-_Rift.sknpack new file mode 100644 index 0000000..565873f --- /dev/null +++ b/oghma-sknpack/Oghma_-_Locations_-_Rift.sknpack @@ -0,0 +1,1818 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Tamrielic lore from CHIM's Oghma Infinium — locations rift. Merges educated and common-knowledge entries graded by importance.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "Aerin's House is a small two-story home with a basement located near the main entrance of Riften, situated between Bolli's House and Snow-Shod Manor. It serves as the residence of Aerin and Mjoll the Lioness, the latter being a well-known adventurer and champion of justice in the city.", + "display_name": "aerin's_house", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Aetherium Forge is an ancient Dwemer forge located southeast of Ivarstead and east of the Rift Imperial Camp in the Rift. It is rumoured that the mighty forge can be used to craft Aetherium items, powerful Dwemer Relics. \n\nAetherium is a rare, blue, luminescent crystal found exclusively in Dwemer city ruins, originally discovered by Dwemer miners in the vast underground expanse of Blackreach.", + "display_name": "aetherium_forge", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Alchemist's Shack is a small, secluded dwelling located south of Ivarstead and east of Haemar's Shame in the Rift. The humble shack is surrounded by nature, making it an ideal spot for gathering alchemical ingredients.", + "display_name": "alchemist's_shack", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Angarvunde is a medium-sized Nordic ruin located west of Riften and south of Treva's Watch in the Rift. The ruin is inhabited by draugr.", + "display_name": "angarvunde", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Arcwind Point is a small Nordic ruin located south of Ivarstead and west of the Rift Imperial Camp in the Rift. This open-air site comprises several separate ruins scattered across the area.", + "display_name": "arcwind_point", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Autumnshade Clearing is a tranquil circular glade in the Rift, located north of Goldenglow Estate and southwest of Shor's Stone. There are many plants and trees surronding the area. However that are rumors that the place is dangerous and should be avoided at all costs. As anyone who enters never leaves alive.", + "display_name": "autumnshade_clearing", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Autumnwatch Tower is a dragon lair located south of Ivarstead and west of Froki's Shack in the Rift. The site consists of two abandoned towers connected by a stone bridge.", + "display_name": "autumnwatch_tower", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Avanchnzel is a medium-sized Dwarven ruin located west of Riften, in the Rift. It lies southeast of Angarvunde and is part of the region's scattered Dwemer ruins.", + "display_name": "avanchnzel", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Beggar's Row is a small section of Riften's sewer system that has been repurposed as a refuge for the homeless. Located in lower Riften by the canal, it lies opposite Elgrim's Elixirs and near the northern stairs leading down from upper Riften.", + "display_name": "beggar's_row", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Black-Briar Lodge is a large, secluded estate located east of Riften in the Rift, south of Lost Prospect Mine. Owned by the influential Black-Briar family, the lodge is guarded by hostile Black-Briar Mercenaries.", + "display_name": "black_briar_lodge", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Black-Briar Manor is the opulent residence of the powerful Black-Briar family in Riften. It is home to Maven Black-Briar, her son Hemming, her daughter Ingun, and her housecarl, Maul. Ingun spends most of her day at Elgrim's Elixirs, returning to the manor only to sleep at night, leaving the house often unoccupied during the day.\n\nIt is a tempting target for thieves due to its valuable contents and periods of vacancy.", + "display_name": "black-briar_manor", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Black-Briar Meadery is a bar and brewery located in the western part of Riften in the Rift. Owned by the influential Maven Black-Briar, the meadery serves as a cornerstone of her business empire. While Maven oversees the operation, day-to-day tasks are handled by her employees. \n\nUngrien acts as the barkeeper and greets most visitors, while Indaryn, the brewmaster, oversees the production of the renowned Black-Briar Mead. Other employees, including Romlyn Dreth, Niluva Hlaalu, and Asgeir Snow-Shod, perform various duties around the establishment.", + "display_name": "black-briar_meadery", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bolli's House is a small, two-story residence with a cellar, located near the city gates in Riften. Owned by Bolli and his wife Nivenor, it is the first house on the left when entering the city from the north.", + "display_name": "bolli's_house", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Boulderfall Cave is a small, remote cave northwest of Riften and southeast of Clearspring Tarn, inhabited by necromancers. Marked by a flagpost fluttering above the entrance, the cave is accessible via a path branching from a game trail in the wilderness. It is rumoured that necromancers have taken over the cave.", + "display_name": "boulderfall_cave", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Broken Helm Hollow is a small cave in the southeast corner of the Rift, located southeast of Riften and northwest of Stendarr's Beacon. Situated near a large waterfall, the cave serves as a hideout for bandits.", + "display_name": "broken_helm_hollow", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Clearspring Tarn is a serene mountain pool located on a cliff in the Rift, overlooking Eastmarch. It lies due east of Snapleg Cave and west of Shor's Stone. Nestled in the rugged terrain, this tranquil spot offers a peaceful yet remote setting.", + "display_name": "clearspring_tarn", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Crystaldrift Cave is a small cave southwest of Riften and northeast of the Ruins of Rkund. There are rumours of haunting animal screams coming from this cave late at night.", + "display_name": "crystaldrift_cave", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Darklight Tower is a medium-sized, dilapidated fort located southwest of Riften and east-southeast of Largashbur in the Rift. The path to the tower, south of the road between Riften and Ivarstead. There are rumours that witches have taken over the tower.", + "display_name": "darklight_tower", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Darkwater Pass is a small cave located south-southwest of Darkwater Crossing and northeast of Nilheim, home to Falmer. The cave, situated near a large waterfall along the Darkwater River, has a foreboding entrance marked by a statue.\n\nTo find the cave, cross the bridge southwest of Darkwater Crossing, follow the road northwest toward Fort Amol, and look for a rock-marked path on your left before the next bridge. At the fork, take the left path (southeast) to reach the cave.", + "display_name": "darkwater_pass", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elgrim's Elixirs is a damp alchemist's shop situated on the lower level of Riften, next to the canal that runs through the city's center. Owned and operated by Elgrim and his wife, Hafjorg, the shop specializes in alchemical supplies and potions. It is conveniently located opposite the entrance to Beggar's Row and near the northern watergate leading to Lake Honrich.", + "display_name": "elgrim's_elixirs", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Faldar's Tooth is a medium-sized, crumbling fort located west of Riften and east of Heartwood Mill in the Rift. The fort is occupied by bandits who force wolves to fight in a central pit for entertainment and gambling.", + "display_name": "faldar's_tooth", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fallowstone Cave is a small cave located northeast of Riften and northwest of Lost Prospect Mine in the Rift. Rumours of giants living in the cave.", + "display_name": "fallowstone_cave", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Forelhost is a medium-sized Nordic ruin located southeast of Riften and west of Stendarr's Beacon in the Rift. It is home to a large amount of draugr. Rumours of a Dragon Priest live in the ruins.", + "display_name": "forelhost", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Dawnguard is a large, ancient fort located southeast of Riften near Stendarr's Beacon, serving as the headquarters for the Dawnguard, an order of vampire hunters dedicated to protecting Skyrim from the Volkihar clan. The fort is hidden in the eastern Rift and can only be accessed through Dayspring Canyon.\n\nBuilt in the Second Era by the Jarl of Riften to contain his son, who had contracted vampirism, the fort was guarded by the mercenary band that became the Dawnguard. Over time, the threat of vampires faded, and the fort fell into disuse. Isran now leads efforts to rebuild the Dawnguard and combat the rising vampire menace, restoring the fort to its former purpose as a bastion against darkness.", + "display_name": "fort_dawnguard", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Greenwall is a large, strategically located fort north-northwest of Riften and south-southeast of Shor's Stone in the Rift. It is well known that the fort has been taken over by bandits, blocking trade northwards. However both the Imperial Legion and Stormcloaks are planning to take the fort.", + "display_name": "fort_greenwall", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Froki's Shack is a small, rustic dwelling located southeast of Ivarstead and east of Autumnwatch Tower in the Rift. Home to the Nord hunter Froki Whetted-Blade and his grandson Haming, a survivor of Helgen.", + "display_name": "froki's_shack", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Geirmund's Hall is a small Nordic ruin located on an island in the middle of Lake Geir, east of Ivarstead and west-southwest of Nilheim in the Rift.", + "display_name": "geirmund's_hall", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Giant's Grove is a secluded grove accessed through Fallowstone Cave, serving as the home of a giant tribe that has defiled a shrine of Malacath.", + "display_name": "giant's_grove", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Goldenglow Estate is a secluded honey farm located west of Riften in the Rift, southeast of Faldar's Tooth. Situated on three small islands in Lake Honrich and connected by footbridges, the estate consists of a house, an apiary, docks, and the Goldenglow Estate Sewer. Guarded by hostile mercenaries and infested with skeevers, the property is owned by Aringoth.", + "display_name": "goldenglow_estate", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Haelga's Bunkhouse is a boarding house located in Riften, operated by Haelga. It serves as a residence for several of Riften's citizens, providing a place to stay for those seeking shelter in the city. The bunkhouse is the first building on the right when entering Riften through the main northern gate.", + "display_name": "haelga's_bunkhouse", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heartwood Mill is a small, struggling lumber mill located on the shores of Lake Honrich at the mouth of the Treva River, west of Goldenglow Estate in the Rift. The mill is operated by Grosta, who has been left to run it alone after the disappearance of her husband, Leifnarr. She is assisted by their young son, Gralnach, who helps as much as he can.", + "display_name": "heartwood_mill", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Honeyside is a cozy two-story home located in the northwest corner of Riften, offering access both from within the city and from the docks outside. It can be purchased from the steward, Anuriel.", + "display_name": "honeyside", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Honeystrand Cave is a small cave located south of Ivarstead and northeast of the Alchemist's Shack in the Rift. There are rumours of a bear that lives here.", + "display_name": "honeystrand_cave", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Honorhall Orphanage is located in the southern part of Riften and consists of a single interior zone. It serves as a home for four orphans under the strict and widely disliked care of its headmistress, Grelod the Kind, who is actually known to be an awful person. Constance Michel, Grelod's timid assistant, also resides in the orphanage and provides a more nurturing presence for the children.", + "display_name": "honorhall_orphanage", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ivarstead is a small milling town at the western edge of the Rift, nestled at the base of the Throat of the World near the path to High Hrothgar. Located on the shores of Lake Geir, the town is powered by a fork of the Darkwater River, which drives Temba Wide-Arm's sawmill. The settlement consists of five buildings, including Vilemyr Inn, run by Wilhelm, and the haunted Shroud Hearth Barrow looming to the east.\n\nOnce a stop for travelers and pilgrims, Ivarstead has fallen into decline due to the barrow's haunting, causing many residents to leave for Riften or consider moving away. Notable locations include Fellstar Farm, Klimmek's house, and Narfi's ruined home across the river. Despite its struggles, Ivarstead remains an essential waypoint for those making the pilgrimage up the \"7,000 Steps\" to High Hrothgar.", + "display_name": "ivarstead", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lake Geir is a picturesque lake located in the western part of the Rift, with the village of Ivarstead situated along its shores. At the center of the lake lies an island that is home to Geirmund's Hall, a Nordic ruin steeped in history and intrigue. Geographically, the lake is fed by the Treva River and drained by the Darkwater River, forming a key part of the region's waterway network.", + "display_name": "lake_geir", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lake Honrich is a sprawling lake in the eastern Rift, located immediately southwest of Riften. Known as Lake Honnith during the First Era, it is a prominent natural feature of the region. The lake is drained by the Treva River and is home to Goldenglow Estate, which occupies a cluster of islands at its center.\n\nPopular among fishermen from across Skyrim, Lake Honrich provides ample opportunities for fishing and is supported by a fishery located on Riften's eastern shores.", + "display_name": "lake_honrich", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Largashbur is an accursed Orc stronghold in the southeast of Skyrim, located west-southwest of Riften in the Rift. Besieged by giants, the stronghold contains two zones: Largashbur Longhouse and Largashbur Cellar. Unlike other Orc strongholds, Largashbur lacks a mine and has sent two of its workers to assist Narzulbur, which has a mine but is short on labor. \n\nThe stronghold features a makeshift altar to Malacath, adorned with Orcish armor and weapons. It is rumoured that the god Malacath is not pleased with this tribe and have cursed it.", + "display_name": "largashbur", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Last Vigil is a small, secluded camp located northeast of Riften and southeast of Ruunvald Excavation. It is rumoured that one day a great battle will take place here, between two warriors who have reached the end of their quest.", + "display_name": "last_vigil", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lost Prospect Mine is a small, seemingly depleted gold mine located east-northeast of Riften and southeast of Fallowstone Cave in the Rift. It is believed to be barren.", + "display_name": "lost_prospect_mine", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lost Tongue Overlook is a dragon lair located south of Riften and east-southeast of Crystaldrift Cave. The path to the lair begins just past Snow-Shod Farm and winds south, passing a dragon mound and climbing several flights of stairs marked by piles of rocks.", + "display_name": "lost_tongue_overlook", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Marise Aravel's House is a modest residence located on the lower level of Riften, near the canal that runs through the city's center. It is the first house on the left when approaching from Elgrim's Elixirs. Positioned below the Temple of Mara and east of the entrance to the Ratway.", + "display_name": "marise_aravel's_house", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Merryfair Farm is a modest, struggling farm located northwest of Riften, just west of Riften Stables on the north shore of Lake Honrich. Owned and operated by Dravin Llanith and his wife Synda, the couple make a meager living growing wheat, cabbages, and gourds, with a single cow providing milk. Dravin can often be seen milling wheat for their bread.\n\nThere are rumours that the farm has recently been burglarized with a valuable bow being stolen.", + "display_name": "merryfair_farm", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mistveil Keep is a grand castle located at the southern end of Riften, its stone walls standing in stark contrast to the city's wooden buildings and walkways. Serving as an extra layer of protection during times of conflict, the keep is the seat of power for the Rift. Mistveil Keep is home to Jarl Laila Law-Giver and her sons, Harrald and Saerlund. The steward, Anuriel, and the eccentric court wizard, Wylandriah, also reside here, assisting in the governance of the hold.", + "display_name": "mistveil_keep", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mossy Glen Cave is a small,bear den located within Dayspring Canyon, accessible only via the canyon itself. The natural cave is adorned with stone pillars and plants.", + "display_name": "mossy_glen_cave", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nightingale Hall is the secret home of the Nightingales, located directly south of Riften near the Shadow Stone. The entrance is accessed via a steep, narrow path illuminated by ceiling fissures and adorned with Nightingale sigil banners. Inside, the hall opens into a grand cavern with a waterfall and a rushing stream, crossed by a wooden bridge leading to the living quarters.", + "display_name": "nightingale_hall", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nilheim is a small, ruined Nordic tower located east-northeast of Ivarstead and northwest of Sarethi Farm in the Rift. It is known that the local Guard have taken control of this area, however they can barely be seen patroling outside the location.", + "display_name": "nilheim", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Northwind Mine is a small iron mine located northwest of Shor's Stone and southeast of Mistwatch in the Rift. Inhabited by skeletons, the mine consists of a single zone and offers adventurers an opportunity to collect iron ore while facing minimal resistance.\n\nTo reach the mine, follow the path north from Shor's Stone, passing Shor's Watchtower on the right. A set of steps on the left leads up to the mine entrance.", + "display_name": "northwind_mine", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Northwind Summit is a mountaintop dragon lair northwest of Shor's Stone and north-northwest of Riften, situated on the highest point in the Rift. The summit can be accessed either by traveling through Northwind Mine on the mountain's northern side or by climbing from Shor's Stone via a gentler slope south of the path. There are rumours that hunters have made camp at the summit, but they have not been seen since.", + "display_name": "northwind_summit", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pinepeak Cavern is a small cave north of Ivarstead, situated on the shore opposite the town across the Treva River. To find it, follow the road north from Ivarstead, cross the river as if heading to the \"7,000 Steps,\" and turn north at the start of the climb. There are rumours that some local hunters have headed to this cave, but have not returned.", + "display_name": "pinepeak_cavern", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Redbelly Mine is a small ebony mine located in the village of Shor's Stone in the Rift. The mine, which serves as the lifeblood of the settlement, initially becomes infested with frostbite spiders. It consists of a single zone and is a valuable resource for ebony ore.\n\nThe mine gets its name from the eerie red mist that flows through it, with a sulfurous smell reminiscent of the volcanic tundra.", + "display_name": "redbelly_mine", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Redwater Den is a dilapidated shack located northwest of Riften and west of Autumnshade Clearing in the Rift. While it initially appears to be a simple drug den supplying Redwater skooma, which you heard has a unique taste compared to regular Skooma.", + "display_name": "redwater_den", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Rift is a hold in southeast Skyrim, with its capital in Riften, aligned with the Stormcloaks. Nestled on a vast plateau bordered by the Jerall and Velothi Mountains, the Rift connects Skyrim to Morrowind and Cyrodiil and is renowned for its vibrant autumnal forests, aspen trees, and rich alchemical resources like mountain flowers, scaly pholiota, and canis root.", + "display_name": "rift", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Rift Imperial Camp is an Imperial military outpost in the Rift, situated south of Ivarstead and west of the Ruins of Bthalft. Typically commanded by Legate Fasendi. It serves as a strategic base for the Imperial Legion's operations in the region.", + "display_name": "rift_imperial_camp", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Rift Stormcloak Camp is a Stormcloak military encampment in the Rift, located northeast of Sarethi Farm and west of the Rift Watchtower. Commanded by Gonnar Oath-Giver.", + "display_name": "rift_stormcloak_camp", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rift Watchtower is a small tower located east of Ivarstead and southwest of Clearspring Tarn in the Rift. Occupied by hostile Orc bandits, the tower serves as a minor stronghold for their activities.", + "display_name": "rift_watchtower", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Riften, the capital of the Rift in southeast Skyrim, lies near the borders of Morrowind and Cyrodiil. Known for its ties to the Thieves Guild, which operates from the Ratway beneath the city, Riften is also home to Honorhall Orphanage and the influential Black-Briar family. Maven Black-Briar, the feared matriarch, owns the Black-Briar Meadery and is rumoured to holds sway over the Thieves Guild and the Dark Brotherhood. \n\nThe bustling Riften Grand Plaza features a vibrant market with merchants like Madesi, an Argonian jeweler; Grelka, an expert Light Armor trainer; and Brand-Shei, a Dunmer raised by Argonians. Other notable establishments include Elgrim's Elixirs, Balimund's forge, the Pawned Prawn, the Temple of Mara and The Bee and Barb inn. With its shadowy underworld and political intrigue, Riften is a city of opportunity and danger for those bold enough to explore it.", + "display_name": "riften", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Riften Fishery is a bustling facility located just outside the city of Riften, down by the docks. Owned by Bolli, the fishery serves as a vital part of Riften's economy, providing fresh fish and employment opportunities for the local population. Its strategic location on the docks makes it a key hub for fishing and trade within the Rift.", + "display_name": "riften_fishery", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Riften Jail is located beneath Mistveil Keep, serving as the city's detention facility. Accessible via an entrance to the right of the main doors to Mistveil Keep, the jail is a secure area where criminals and wrongdoers are held.", + "display_name": "riften_jail", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Riften Stables is located just outside the northern entrance to Riften. Owned and operated by Hofgrir Horse-Crusher, with assistance from Shadr, the stables provide horse rentals and sales for travelers and adventurers.", + "display_name": "riften_stables", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Romlyn Dreth's House is a modest dwelling located in the lower part of Riften, adjacent to the canal that flows through the city. The house is situated near the stairs leading down to the canal from the area in front of Honorhall Orphanage.", + "display_name": "romlyn_dreth's_house", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ruins of Bthalft are a small Dwarven ruin located south of Ivarstead in the Rift. It is known to be occupied by bandits, who seem to be searching for something here.", + "display_name": "ruins_of_bthalft", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ruins of Rkund are a small, eerie Dwarven ruin nestled in the mountains southwest of Riften and southeast of Darklight Tower in the Rift. The ruins, accessible by passing through the Darklight Tower and continuing southeast, are sparsely scattered with broken pillars and collapsed structures.", + "display_name": "ruins_of_rkund", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ruunvald Excavation is a medium-sized cave east of Shor's Stone and northeast of Fort Greenwall, nestled high in the eastern mountains. It is rumoured that it was established by Vigilants of Stendarr led by Moric Sidrey.", + "display_name": "ruunvald", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sarethi Farm is a unique farm located between Ivarstead and Shor's Stone in the Rift, known for its successful cultivation of nirnroot. The Sarethi family founded the farm after fleeing the eruption of the Red Mountain. Avrusa Sarethi, who once apprenticed under Sinderion in Skingrad, learned the secrets of nirnroot cultivation from him when he set up a research lab on the farm.", + "display_name": "sarethi_farm", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shor's Stone is a small mining town located along the main road in the pass between the Rift and Eastmarch, north-northwest of Riften and south-southeast of Windhelm. Named after the Nordic god Shor, the town is centered around Redbelly Mine, known for its ebony deposits. However, the mine has been plagued by frostbite spiders, creating significant trouble for the local residents.", + "display_name": "shor's_stone", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shor's Watchtower is a small, crumbling tower located north-northeast of Shor's Stone and south of Cragslane Cavern in the Rift. Though its strategic position once made it a valuable outpost, the tower now stands in a state of disrepair, serving as a notable landmark for travelers navigating the area.", + "display_name": "shor's_watchtower", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shroud Hearth Barrow is a medium-sized Nordic ruin located east of Ivarstead in the Rift. It is home to draugr and skeletons, and is steeped in local superstition as the residents of Ivarstead believe it to be haunted. There is the story of Wyndelius Gatharian, an adventurer who entered the ruin a year prior and never returned.", + "display_name": "shroud_hearth_barrow", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Snow-Shod Farm is a small farm located south of Riften and west of Nightingale Hall in the Rift. Owned by Vulwulf Snow-Shod, the farm is managed by Addvild and Leonara Arius. The property includes a farmhouse and a windmill, along with fields of crops and livestock.\n\nThe farm produces wheat, leeks, and potatoes, with Addvild offering payment for gathering these items. The livestock includes chickens and cows.", + "display_name": "snow-shod_farm", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Snow-Shod Manor is a large and prominent residence in the northeastern part of Riften, home to the influential Snow-Shod clan. Situated between Aerin's House and Riftweald Manor, the manor reflects the status and wealth of the family within Riften's social hierarchy.", + "display_name": "snow-shod_manor", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stendarr's Beacon is a small tower southeast of Riften and south of Black-Briar Lodge in the Rift. The path to the beacon branches off the main road southeast of Riften, opposite the path leading to Black-Briar Lodge. It passes by the route to Broken Helm Hollow and winds south, then east, before climbing north to the beacon.\n\nOutside the tower, the resident Vigilants of Stendarr have set up a makeshift camp.", + "display_name": "stendarr's_beacon", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Temple of Mara is a sacred temple in Riften dedicated to Mara, the Aedric goddess of love, compassion, and understanding. It serves as a spiritual center for worshippers of Mara and those seeking her blessings, including marriage rites.\n\nThe temple is home to three Priests of Mara: Briehl, Dinya Balu, and Maramal. Alessandra, a Priestess of Arkay who tends to Riften's Hall of the Dead, also resides here. As a beacon of Mara's teachings, the temple is a place of solace and guidance for Riften's residents and travelers alike.", + "display_name": "temple_of_mara", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Bee and Barb is a lively inn located in the heart of Riften, next to the bustling marketplace. Owned and operated by Keerava, with her husband Talen-Jei, an Argonian bartender, the inn is a popular gathering spot for both locals and travelers.\n\nMarcurio, a mercenary for hire, can often be found sitting in the southwest corner of the inn, relaxing on a wooden bench.", + "display_name": "the_bee_and_barb", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Pawned Prawn is a general goods store located in the heart of Riften, next door to Black-Briar Meadery and to the west of The Bee and Barb. Owned and operated by Bersi Honey-Hand, the store offers a variety of items for sale, ranging from goods and supplies to more unusual wares.", + "display_name": "the_pawned_prawn", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ragged Flagon is a tavern located within the Thieves Guild's headquarters in Riften, situated in the city's old sewer network. It can be accessed through the Ratway, though after joining the Thieves Guild, quicker access is available through a secret entrance behind the Hall of the Dead, leading directly into the Ragged Flagon - Cistern.\n\nThe tavern is run by Vekel the Man, though Dirge, the bouncer, takes over bartender duties if anything happens to Vekel. Tonilia, the Thieves Guild's first fence, is always present at the bar.", + "display_name": "the_ragged_flagon", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ratway is a network of sewer tunnels running beneath Riften, serving as the home base for the Thieves Guild. The Ratway serves as both a passageway and a hidden underbelly of Riften, where the guild operates out of sight from the city's authorities.", + "display_name": "the_ratway", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Rift is a hold in southeast Skyrim, with its capital in Riften, aligned with the Stormcloaks. Nestled on a vast plateau bordered by the Jerall and Velothi Mountains, the Rift connects Skyrim to Morrowind and Cyrodiil and is renowned for its vibrant autumnal forests, aspen trees, and rich alchemical resources like mountain flowers, scaly pholiota, and canis root.", + "display_name": "the_rift", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Scorched Hammer, located to the west of the main marketplace, sits between the canal below and the exit to the docks, is the blacksmith shop in Riften, run by Balimund, a skilled smith, and his adopted son Asbjorn Fire-Tamer, whom he is training in the craft. If anything happens to Balimund, Asbjorn will take over running the shop.", + "display_name": "the_scorched_hammer", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Shadow Stone is one of Skyrim's thirteen Standing Stones, located south of Riften, east of Snow-Shod Farm, and near Nightingale Hall in the Rift. Activating the stone grants the unique ability to become invisible instantly once per day, providing a quick escape or stealth advantage in critical situations.", + "display_name": "the_shadow_stone", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Tolvald's Cave is a large cavern complex located in the Velothi Mountains, northeast of Shor's Stone and south-southeast of Ansilvund in the Rift. Rumours of Falmer have been seen coming out the cave late at night.", + "display_name": "tolvald's_cave", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Treva's Watch is a medium-sized fort southeast of Ivarstead and north of Angarvunde, located along the north shore of the Treva River. Bandits defend the fort heavily, with archers firing from the walls. It is rumoured that fort belonged to someone called Stalleo, and now he wants it back.", + "display_name": "treva's_watch", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Valindor's House is a residence located on the lower levels of Riften, situated alongside the canal that runs through the city. It is next door to Marise Aravel's House and lies directly below the Temple of Mara. The house belongs to Valindor, who is a WoodElf who works at the local fishery.", + "display_name": "valindor's_house", + "emotion": "", + "importance": 0.75, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Aerin's House is a small two-story home with a basement located near the main entrance of Riften, situated between Bolli's House and Snow-Shod Manor. You do not know anything else about this area.", + "display_name": "aerin's_house", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Aetherium Forge is a rumor of an ancient Dwemer forge that is hidden somewhere in the Rift. But you do not know where.You do not know anything else about this area.", + "display_name": "aetherium_forge", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Alchemist's Shack is a small, secluded dwelling located south of IvarsteadYou do not know anything else about this area.", + "display_name": "alchemist's_shack", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Angarvunde is a medium-sized Nordic ruin located west of Riften.You do not know anything else about this area.", + "display_name": "angarvunde", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Arcwind Point is a small Nordic ruin located south of Ivarstead.You do not know anything else about this area.", + "display_name": "arcwind_point", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Autumnshade Clearing is a tranquil circular glade in the Rift.You do not know anything else about this area.", + "display_name": "autumnshade_clearing", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Autumnwatch Tower is a dragon lair located south of Ivarstead.You do not know anything else about this area.", + "display_name": "autumnwatch_tower", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Avanchnzel is a medium-sized Dwarven ruin located west of Riften, in the Rift.You do not know anything else about this area.", + "display_name": "avanchnzel", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Beggar's Row is a small section of Riften's sewer system that has been repurposed as a refuge for the homeless.You do not know anything else about this area.", + "display_name": "beggar's_row", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Black-Briar Lodge is a large, secluded estate located east of Riften in the Rift.You do not know anything else about this area.", + "display_name": "black_briar_lodge", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Black-Briar Manor is the opulent residence of the powerful Black-Briar family in Riften. It is home to Maven Black-Briar.You do not know anything else about this area.", + "display_name": "black-briar_manor", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Black-Briar Meadery is a bar and brewery located in the western part of Riften in the Rift. Owned by the influential Maven Black-Briar, the meadery serves as a cornerstone of her business empire.You do not know anything else about this area.", + "display_name": "black-briar_meadery", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bolli's House is a small, two-story residence with a cellar, located near the city gates in Riften. You do not know anything else about this area.", + "display_name": "bolli's_house", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Boulderfall Cave is a small, remote cave northwest of Riften.You do not know anything else about this area.", + "display_name": "boulderfall_cave", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Broken Helm Hollow is a small cave in the southeast corner of the Rift,.You do not know anything else about this area.", + "display_name": "broken_helm_hollow", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Clearspring Tarn is a serene mountain pool located on a cliff in the Rift.You do not know anything else about this area.", + "display_name": "clearspring_tarn", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Crystaldrift Cave is a small cave southwest of Riften.You do not know anything else about this area.", + "display_name": "crystaldrift_cave", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Darklight Tower is a medium-sized, dilapidated fort located southwest of Riften.You do not know anything else about this area.", + "display_name": "darklight_tower", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Darkwater Pass is a small cave located south-southwest of Darkwater Crossing.You do not know anything else about this area.", + "display_name": "darkwater_pass", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elgrim's Elixirs is a damp alchemist's shop situated in Riften.You do not know anything else about this area.", + "display_name": "elgrim's_elixirs", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Faldar's Tooth is a medium-sized, crumbling fort located west of Riften.You do not know anything else about this area.", + "display_name": "faldar's_tooth", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fallowstone Cave is a small cave located northeast of Riften.You do not know anything else about this area.", + "display_name": "fallowstone_cave", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Forelhost is a medium-sized Nordic ruin located southeast of Riften and west of Stendarr's Beacon in the Rift.You do not know anything else about this area.", + "display_name": "forelhost", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Dawnguard is a large, ancient fort located southeast of Riften near Stendarr's Beacon, serving as the headquarters for the Dawnguard, an order of vampire hunters dedicated to protecting Skyrim from the Volkihar clan.You do not know anything else about this area.", + "display_name": "fort_dawnguard", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Greenwall is a large, strategically located fort north-northwest of Riften.You do not know anything else about this area.", + "display_name": "fort_greenwall", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Froki's Shack is a small, rustic dwelling located southeast of IvarsteadYou do not know anything else about this area.", + "display_name": "froki's_shack", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Geirmund's Hall is a small Nordic ruin located on an island in the middle of Lake Geir. You do not know anything else about this area.", + "display_name": "geirmund's_hall", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Giant's Grove is a secluded grove with a hidden entrance.You do not know anything else about this area.", + "display_name": "giant's_grove", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Goldenglow Estate is a secluded honey farm located west of Riften in the Rift.You do not know anything else about this area.", + "display_name": "goldenglow_estate", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Haelga's Bunkhouse is a boarding house located in Riften, operated by Haelga.You do not know anything else about this area.", + "display_name": "haelga's_bunkhouse", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heartwood Mill is a small, struggling lumber mill located on the shores of Lake Honrich at the mouth of the Treva River.You do not know anything else about this area.", + "display_name": "heartwood_mill", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Honeyside is a cozy two-story home located in Riften.You do not know anything else about this area.", + "display_name": "honeyside", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Honeystrand Cave is a small cave located south of Ivarstead.You do not know anything else about this area.", + "display_name": "honeystrand_cave", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Honorhall Orphanage is located in the southern part of Riften and consists of a single interior zone.You do not know anything else about this area.", + "display_name": "honorhall_orphanage", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ivarstead is a small milling town at the western edge of the Rift, nestled at the base of the Throat of the World near the path to High Hrothgar. It is essential waypoint for those making the pilgrimage up the \"7,000 Steps\" to High Hrothgar.", + "display_name": "ivarstead", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lake Geir is a picturesque lake located in the western part of the Rift, with the village of Ivarstead situated along its shores. You do not know anything else about this area.", + "display_name": "lake_geir", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lake Honrich is a sprawling lake in the eastern Rift, located immediately southwest of Riften.You do not know anything else about this area.", + "display_name": "lake_honrich", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Largashbur is an accursed Orc stronghold in the southeast of Skyrim.You do not know anything else about this area.", + "display_name": "largashbur", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Last Vigil is a small, secluded camp located northeast of Riften. It is rumoured that one day a great battle will take place here, between two warriors who have reached the end of their quest.You do not know anything else about this area.", + "display_name": "last_vigil", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lost Prospect Mine is a small, seemingly depleted gold mine located east-northeast of Riften .You do not know anything else about this area.", + "display_name": "lost_prospect_mine", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lost Tongue Overlook is a dragon lair located south of Riften.You do not know anything else about this area.", + "display_name": "lost_tongue_overlook", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Marise Aravel's House is a modest residence located on the lower level of Riften, near the canal that runs through the city's center. You do not know anything else about this area.", + "display_name": "marise_aravel's_house", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Merryfair Farm is a modest, struggling farm located northwest of Riften.You do not know anything else about this area.", + "display_name": "merryfair_farm", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mistveil Keep is a grand castle located at the southern end of Riften.You do not know anything else about this area.", + "display_name": "mistveil_keep", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mossy Glen Cave is a small,bear den located within Dayspring Canyon.You do not know anything else about this area.", + "display_name": "mossy_glen_cave", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nightingale Hall is the secret home of the Nightingales, located somewhere in Riften but you do not know where. You do not know anything else about this area.", + "display_name": "nightingale_hall", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nilheim is a small, ruined Nordic tower located east-northeast of Ivarstead.You do not know anything else about this area.", + "display_name": "nilheim", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Northwind Mine is a small iron mine located northwest of Shor's Stone.You do not know anything else about this area.", + "display_name": "northwind_mine", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Northwind Summit is a mountaintop northwest of Shor's Stone and north-northwest of Riften.You do not know anything else about this area.", + "display_name": "northwind_summit", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pinepeak Cavern is a small cave north of Ivarstead.You do not know anything else about this area.", + "display_name": "pinepeak_cavern", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Redbelly Mine is a small ebony mine located in the village of Shor's Stone in the Rift.You do not know anything else about this area.", + "display_name": "redbelly_mine", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Redwater Den is a dilapidated shack located northwest of Riften.You do not know anything else about this area.", + "display_name": "redwater_den", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Rift is a hold in southeast Skyrim, with its capital in Riften, aligned with the Stormcloaks. Nestled on a vast plateau bordered by the Jerall and Velothi Mountains, the Rift connects Skyrim to Morrowind and Cyrodiil and is renowned for its vibrant autumnal forests, aspen trees, and rich alchemical resources like mountain flowers, scaly pholiota, and canis root.", + "display_name": "rift", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Rift Imperial Camp is an Imperial military outpost in the Rift, situated south of Ivarstead.You do not know anything else about this area.", + "display_name": "rift_imperial_camp", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Rift Stormcloak Camp is a Stormcloak military encampment in the Rift, located west of the Rift Watchtower.You do not know anything else about this area.", + "display_name": "rift_stormcloak_camp", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rift Watchtower is a small tower located east of Ivarstead.You do not know anything else about this area.", + "display_name": "rift_watchtower", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Riften, the capital of the Rift in southeast Skyrim, lies near the borders of Morrowind and Cyrodiil. Known for its ties to the Thieves Guild, which operates from the Ratway beneath the city, Riften is also home to Honorhall Orphanage and the influential Black-Briar family. Maven Black-Briar, the feared matriarch, owns the Black-Briar Meadery and is rumoured to holds sway over the Thieves Guild and the Dark Brotherhood. Other notable establishments include the Temple of Mara.", + "display_name": "riften", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Riften Fishery is a bustling facility located just outside the city of Riften.You do not know anything else about this area.", + "display_name": "riften_fishery", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Riften Jail is located beneath Mistveil Keep.You do not know anything else about this area.", + "display_name": "riften_jail", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Riften Stables is located just outside the northern entrance to Riften.You do not know anything else about this area.", + "display_name": "riften_stables", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Romlyn Dreth's House is a dwelling located in the lower part of Riften.You do not know anything else about this area.", + "display_name": "romlyn_dreth's_house", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ruins of Bthalft are a small Dwarven ruin located south of Ivarstead in the Rift.You do not know anything else about this area.", + "display_name": "ruins_of_bthalft", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ruins of Rkund are a small, eerie Dwarven ruin nestled in the mountains southwest of Riften.You do not know anything else about this area.", + "display_name": "ruins_of_rkund", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ruunvald Excavation is a medium-sized cave east of Shor's Stone and northeast of Fort Greenwall.You do not know anything else about this area.", + "display_name": "ruunvald", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sarethi Farm is a unique farm located between Ivarstead and Shor's Stone in the Rift.You do not know anything else about this area.", + "display_name": "sarethi_farm", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shor's Stone is a small mining town located along the main road in the pass between the Rift and EastmarchYou do not know anything else about this area.", + "display_name": "shor's_stone", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shor's Watchtower is a small, crumbling tower located north-northeast of Shor's Stone.You do not know anything else about this area.", + "display_name": "shor's_watchtower", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shroud Hearth Barrow is a medium-sized Nordic ruin located east of Ivarstead in the Rift.You do not know anything else about this area.", + "display_name": "shroud_hearth_barrow", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Snow-Shod Farm is a small farm located south of Riften.You do not know anything else about this area.", + "display_name": "snow-shod_farm", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Snow-Shod Manor is a large and prominent residence in the northeastern part of Riften.You do not know anything else about this area.", + "display_name": "snow-shod_manor", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stendarr's Beacon is a small tower southeast of Riften and south of Black-Briar Lodge in the Rift.You do not know anything else about this area.", + "display_name": "stendarr's_beacon", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Temple of Mara is a sacred temple in Riften dedicated to Mara, the Aedric goddess of love, compassion, and understanding.You do not know anything else about this area.", + "display_name": "temple_of_mara", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Bee and Barb is a lively inn located in the heart of Riften. You do not know who owns the inn.You do not know anything else about this area.", + "display_name": "the_bee_and_barb", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Pawned Prawn is a general goods store located in the heart of Riften.You do not know anything else about this area.", + "display_name": "the_pawned_prawn", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ragged Flagon is a tavern located within the Thieves Guild's headquarters in Riften.You do not know anything else about this area.", + "display_name": "the_ragged_flagon", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ratway is a network of sewer tunnels running beneath Riften.You do not know anything else about this area.", + "display_name": "the_ratway", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Rift is a hold in southeast Skyrim, with its capital in Riften, aligned with the Stormcloaks. Nestled on a vast plateau bordered by the Jerall and Velothi Mountains, the Rift connects Skyrim to Morrowind and Cyrodiil and is renowned for its vibrant autumnal forests, aspen trees, and rich alchemical resources like mountain flowers, scaly pholiota, and canis root.", + "display_name": "the_rift", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Scorched Hammer, is the blacksmith shop in Riften. You do not know who owns the shop.You do not know anything else about this area.", + "display_name": "the_scorched_hammer", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Shadow Stone is one of Skyrim's thirteen Standing Stones, located south of Riften.You do not know anything else about this area.", + "display_name": "the_shadow_stone", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Tolvald's Cave is a large cavern complex located in the Velothi Mountains, northeast of Shor's Stone.You do not know anything else about this area.", + "display_name": "tolvald's_cave", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Treva's Watch is a medium-sized fort southeast of Ivarstead.You do not know anything else about this area.", + "display_name": "treva's_watch", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Valindor's House is a residence located in Riften.You do not know anything else about this area.", + "display_name": "valindor's_house", + "emotion": "", + "importance": 0.4, + "location": "Rift", + "tags": [], + "type": "LOCATION" + } + ], + "entry_count": 164, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Locations - Rift", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/Oghma_-_Locations_-_Solstheim.sknpack b/oghma-sknpack/Oghma_-_Locations_-_Solstheim.sknpack new file mode 100644 index 0000000..0d22efe --- /dev/null +++ b/oghma-sknpack/Oghma_-_Locations_-_Solstheim.sknpack @@ -0,0 +1,1488 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Tamrielic lore from CHIM's Oghma Infinium — locations solstheim. Merges educated and common-knowledge entries graded by importance.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "Solstheim is a large island located in the Sea of Ghosts, to the north of Tamriel, with a history that stretches back to the ancient Snow Elves, the first inhabitants of the region. They built grand settlements on Solstheim that outlasted their mainland holdings, leaving a lasting mark on the island. Though the island has been home to various races over the centuries, it has traditionally been dominated by Nordic influence. In 4E 16, Solstheim officially became part of Morrowind.\n\nThe island’s history took a tragic turn during the Red Year of 4E 5, when the eruption of Red Mountain devastated the southern half of Solstheim. Fort Frostmoth was destroyed, leaving the Imperial garrison in disarray and killing General Carius. Raven Rock, a settlement on the island, quickly took over the remnants of the garrison and was fortified by elite members of the Redoran Guard. In the aftermath of the eruption, the ash from Red Mountain transformed the southern part of the island into vast ashlands. To protect Raven Rock from the encroaching ash, Brara Morvayn designed and oversaw the construction of a great stone wall known as the Bulwark, funded by the East Empire Company.\n\nIn 4E 16, as part of a political compromise, Skyrim ceded control of Solstheim to Morrowind. While this act appeared to be a compassionate gesture toward the Dunmer, it was driven by political motives. Skyrim sought to avoid a conflict with Morrowind, which had long claimed the island, and by relinquishing control, it preserved its image as a savior to the Dunmer. As a result, many Dunmer refugees, including members of the minor House Sathil, began flocking to the island. The East Empire Company was forced to hand over control of Raven Rock to House Redoran, and by 4E 48, Solstheim was no longer considered part of the Empire.", + "display_name": "solstheim", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Raven Rock is a city located on the southwest coast of Solstheim, serving as the first settlement encountered in the Dragonborn expansion. Once a thriving East Empire Company mining outpost, it has since become a House Redoran colony. The depletion of its ebony mine has left Raven Rock a shadow of its former prosperity, now a largely forgotten settlement struggling to endure amidst the ash-laden environment caused by the nearby Red Mountain.\n\nThe city features a single thoroughfare running from the entrance through the Bulwark in the east to the Earth Stone in the west, following the curve of a small adjacent bay. The Bulwark, a sturdy defensive wall, houses both the city’s jail and the Redoran guards' garrison, providing protection against the encroaching ash. A curved wooden boardwalk lines the bay, complete with a short pier and a longer pier to the east, where the Northern Maiden is docked, offering transport between Solstheim and Windhelm in Skyrim.\n\nRaven Rock's central marketplace, located near the city's well north of the bay, is home to its shops and services. The Temple of Raven Rock is situated near the Bulwark to the east, providing spiritual guidance to the community. Scattered throughout the city are various crafting stations, including smelters, tanning racks, a forge, an alchemy lab, and more, located near key sites such as Alor House, Glover Mallory's House, Ienth Farm, and Raven Rock Mine.", + "display_name": "raven_rock", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skaal Village is a small, secluded settlement located in the northeastern region of Solstheim, along the Felsaad Coast, just north of Lake Fjalding and east of the Isild River. It is home to the Skaal, a unique offshoot tribe of Nords who live in harmony with nature as part of their worship of the All-Maker. The Skaal lead a simple, self-sufficient life in the frozen north, relying on hunting, minor agriculture, and their knowledge of crafting stalhrim, a rare and ancient material.\n\nThe village consists of eight buildings arranged in a circle around a central well, reflecting the communal nature of Skaal society. The Skaal believe Solstheim was originally part of Skyrim, transformed into an island during a climactic battle between Dragon Cult loyalists and rebels. The Skaal trace their lineage back to the loyalist faction and have preserved their history through oral tradition. This narrative is supported by archaeological evidence, including multiple Dragon Cult ruins and carvings uncovered in the Fourth Era.", + "display_name": "skaal_village", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Tel Mithryn is a Telvanni tower settlement located east of Fort Frostmoth on the island of Solstheim. This unique settlement is home to Master Wizard Neloth of House Telvanni, a prominent and eccentric figure with a reputation for both brilliance and controversy. Tel Mithryn consists of four large mushroom structures grown from special fungal spores brought from Morrowind at the beginning of the Fourth Era. These structures include the main tower, the apothecary, the kitchen, and the steward's house.\n\nAccess to each building is provided by long, organic ramps that lead to round wooden doors, blending seamlessly with the settlement’s distinctive fungal architecture. Surrounding the structures, various flora, such as bleeding crown, fly amanita fungi, and scathecraw, thrive near the ramps, adding to the natural ambiance of the area. Behind the kitchen lies a heart stone deposit with a conveniently placed pickaxe, and additional deposits can be found on the cliffs near the southeastern coast.", + "display_name": "tel_mithryn", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Old Attius Farm is an abandoned Imperial farm located south-southeast of Raven Rock on Solstheim, and north of the Wreck of the Strident Squall. Once a thriving agricultural outpost, the farm has since fallen into disrepair, leaving only remnants of its former use.", + "display_name": "old_attius_farm", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Abandoned Lodge is a small, secluded shack located north-northeast of Raven Rock on Solstheim.", + "display_name": "abandoned_lodge", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hrodulf's House is an abandoned shack located southwest of Fort Frostmoth and southeast of Kolbjorn Barrow on Solstheim.", + "display_name": "hrodulf's_house", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ramshackle Trading Post is an old, weathered shack located south of Kagrumez and west-northwest of Ashfallow Citadel on Solstheim. Despite its dilapidated appearance, the trading post serves as an unconventional merchant spot, operated by Falas Selvayn, a Dark Elf trader with an unusual schedule.\n\nFalas can be found at the trading post only between the hours of midnight and 5 a.m., offering goods to adventurers who stumble upon this remote location during the night.", + "display_name": "ramshackle_trading_post", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Beast Stone is one of the All-Maker Stones found on Solstheim, located west of Thirsk Mead Hall and east-southeast of the Temple of Miraak. This sacred stone holds spiritual significance for the Skaal people.", + "display_name": "beast_stone", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Earth Stone is one of the All-Maker Stones located on Solstheim, situated southwest of Raven Rock. This sacred site is deeply tied to the Skaal's spiritual beliefs and their worship of the All-Maker.", + "display_name": "earth_stone", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Sun Stone is one of the All-Maker Stones found on Solstheim, located north-northwest of Tel Mithryn and west-southwest of Nchardak. As with the other All-Maker Stones, it holds spiritual significance for the Skaal people.", + "display_name": "sun_stone", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Water Stone is one of the All-Maker Stones located on Solstheim, positioned north of Raven Rock and west of Fahlbtharz. This sacred site holds profound importance to the Skaal people.", + "display_name": "water_stone", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Water Stone is one of the All-Maker Stones located on Solstheim, positioned north of Raven Rock and west of Fahlbtharz. This sacred site holds profound importance to the Skaal people, reflecting their spiritual connection to the natural elements and their worship of the All-Maker.", + "display_name": "wind_stone", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bujold's Retreat is a camp located east of Thirsk Mead Hall and south-southeast of Skaal Village on Solstheim. The camp is home to a group of Nords who have been exiled from Thirsk Mead Hall after it was taken over by a tribe of rieklings.\n\nLed by Bujold the Unworthy, the Nords at the retreat are determined to reclaim their ancestral hall from the invading rieklings.", + "display_name": "bujold's_retreat", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Haknir's Shoal is a small pirate camp located north-northwest of Skaal Village and east of Benkongerike on Solstheim. The camp is situated along the rugged northern coastline, making it a secluded and strategic hideout for its pirate inhabitants.", + "display_name": "haknir's_shoal", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ashfall's Tear is a small, secluded cave located north of Raven Rock and southeast of Bloodskal Barrow on Solstheim.", + "display_name": "ashfall's_tear", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Benkongerike is a medium-sized cave located southeast of Saering's Watch and northwest of the Headwaters of Harstrad on Solstheim. The cave is home to bristlebacks and rieklings, the diminutive yet fierce creatures that have claimed the area as their territory.", + "display_name": "benkongerike", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bristleback Cave is a medium-sized cave located due northwest of Broken Tusk Mine on Solstheim. The cave serves as a stronghold for rieklings and their bristleback companions, both of which fiercely defend their territory from intruders.", + "display_name": "bristleback_cave", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Castle Karstaag Caverns is a medium-sized cave located on the north coast of Solstheim, southeast of Castle Karstaag Ruins. The cave serves as a refuge for bristlebacks and rieklings, who have made the area their domain. Its remote and rugged setting adds to its mystique and danger.\n\nThe entrance to the caverns lies above a tall waterfall that cascades into an inlet by the sea. The path leading to the entrance descends from the west-southwest, following a stream that feeds the waterfall.", + "display_name": "castle_karstaag_caverns", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Castle Karstaag Ruins is an icy clearing located just outside Castle Karstaag Caverns on the northern coast of Solstheim. Once a grand frozen keep, it has been ravaged by time and the elements following the death of its former master, the legendary frost giant Karstaag. The ruins now serve as a stronghold for rieklings, who have claimed the desolate structure as their own.", + "display_name": "castle_karstaag_ruins", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Coldcinder Cave is a small cave located southeast of Raven Rock on Solstheim, and north-northwest of Kolbjorn Barrow. The cave is inhabited by ash spawn and netches, making it a hazardous site for those unprepared to face these formidable creatures.", + "display_name": "coldcinder_cave", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frossel is a small cave located on a peninsula east of Haknir's Shoal and north of Skaal Village on Solstheim. The cave is inhabited by bristlebacks and rieklings, who have made it their stronghold amidst the island's rugged and icy landscape.", + "display_name": "frossel", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frostmoon Crag is a small, secluded camp located under a rock overhang south of Mount Moesring and northeast of the Abandoned Lodge on Solstheim. The camp is inhabited by werewolves, who have created a sanctuary away from the rest of the island's inhabitants.", + "display_name": "frostmoon_crag", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glacial Cave is a small cave carved into the glacial cliff face along Solstheim's northeastern coast. It is located north-northeast of Saering's Watch and directly north of Benkongerike. The cave is inhabited by rieklings and horkers, making it a lively but hazardous location for adventurers.", + "display_name": "glacial_cave", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Headwaters of Harstrad are the source of the Harstrad River, located in the northeastern region of Solstheim. The headwaters can be found a short distance downhill to the southeast from the entrance to Benkongerike or by following the river upstream from the Wind Stone, situated to the west-southwest.", + "display_name": "headwaters_of_harstrad", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Saering's Watch is a dragon lair located on Solstheim, nestled in the shadow of Frykte Peak. Positioned northeast of White Ridge Barrow and northwest of Benkongerike, the lair is perched atop a rugged and snowy landscape.", + "display_name": "saering's_watch", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fahlbtharz is a large Dwarven ruin located east of the Water Stone and northwest of Frostmoon Crag on Solstheim. The ancient ruin, like many remnants of the Dwemer civilization, is an intricate labyrinth of machinery and traps, showcasing the advanced engineering of the long-lost dwarves.", + "display_name": "fahlbtharz", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kagrumez is a small Dwarven ruin located south of the Temple of Miraak and north of the Ramshackle Trading Post on Solstheim.", + "display_name": "kagrumez", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Nchardak is a large and historically significant Dwarven ruin located north-northeast of Tel Mithryn and east of Ashfallow Citadel on Solstheim. Once known as the \"City of a Hundred Towers,\" Nchardak was the largest and most advanced of the great Dwemer archives, renowned for its ingenuity and the scale of its operations.\n\nAccording to legend, when Nords besieged the city, the Dwemer used their technological prowess to submerge the entire complex beneath the sea, forcing the Nords to abandon their siege. At its peak, the great workshops of Nchardak were capable of producing a complete automaton each day, supplying much of the Dwemer army that fought in the Battle of Red Mountain.\n\nToday, much of Nchardak remains flooded, but its ancient mechanisms can still be activated using control cubes found within the ruin. These mechanisms, including the pumps that can drain water from key sections of the complex, reveal glimpses of the Dwemer’s unparalleled engineering.", + "display_name": "nchardak", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Altar of Thrond is a mysterious landmark located due west of the Temple of Miraak and east-northeast of Frostmoon Crag on Solstheim. The altar is adjacent to a cave inhabited by hagravens, making it a dangerous and foreboding site.", + "display_name": "altar_of_thrond", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Brodir Grove is a small circle of ancient stones located northeast of Raven Rock and west of the Ramshackle Trading Post on Solstheim. The grove, once a place of unknown significance, is now occupied by reavers who have claimed it as their territory.", + "display_name": "brodir_grove", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frykte Peak is one of the highest points on Solstheim, located just west of Saering's Watch and northeast of White Ridge Barrow. This towering landmark offers sweeping views of the surrounding landscape.", + "display_name": "frykte_peak", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Horker Island is a large, icy island located east of Skaal Village and northeast of Bujold's Retreat on Solstheim. True to its name, the island is primarily inhabited by horkers, the lumbering aquatic creatures that thrive along the frigid coastlines of the region.", + "display_name": "horker_island", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mount Moesring is one of the highest and most prominent peaks on Solstheim, located south of Moesring Pass. The mountain dominates the surrounding landscape, offering a striking view of Solstheim's rugged terrain and snow-covered wilderness.", + "display_name": "mount_moesring", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Stalhrim Source is a small outdoor Nordic ruin located east of Broken Tusk Mine and southwest of Mortrag Peak on Solstheim. This site is of particular importance due to its abundance of stalhrim, a rare and ancient material used by the Nords to craft powerful weapons and armor.", + "display_name": "stalhrim_source", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ashfallow Citadel is a small, abandoned Imperial fort located east of Highpoint Tower and northwest of the Sun Stone on Solstheim. The fort, once a symbol of Imperial authority, has fallen into disrepair and is now used as a base of operations by the Morag Tong, a secretive and deadly assassins' guild with ties to Morrowind.", + "display_name": "ashfallow_citadel", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Frostmoth is a small Imperial fort located south of Highpoint Tower and northeast of Hrodulf's House on Solstheim. Once a bastion of Imperial presence on the island, the fort has since been overrun by ash spawn, hostile creatures tied to Solstheim's volatile volcanic environment.", + "display_name": "fort_frostmoth", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Highpoint Tower is a small, decrepit fort located east of Raven Rock and north of Fort Frostmoth on Solstheim. The fort has fallen into disrepair and is now overrun by albino spiders, making it a dangerous and eerie place to explore.", + "display_name": "highpoint_tower", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Broken Tusk Mine is a small heart stone mine located north of Raven Rock and southeast of Bristleback Cave on Solstheim. The mine is inhabited by rieklings, who have taken over the site and claimed it as their own.", + "display_name": "broken_tusk_mine", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Damphall Mine is a small iron and silver mine located north of Raven Rock and south-southwest of Fahlbtharz on Solstheim. The mine has been taken over by reavers, a group of hostile marauders who have claimed the site for their own purposes.", + "display_name": "damphall_mine", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Raven Rock Mine is a small ebony mine located in the northern part of Raven Rock on Solstheim. Once the lifeblood of the settlement during its prosperous days, the mine was thought to be depleted but was later revealed to contain untapped deposits of ebony. However, the mine also harbors dark secrets.\n\nThe mine is initially overrun with dangers, including draugr, frostbite spiders, and skeevers, all of which make exploration perilous. There are rumors that a Dragon Priest was laid to rest here.", + "display_name": "raven_rock_mine", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bloodskal Barrow is a small Nordic ruin located north of Raven Rock and south of Damphall Mine on Solstheim. Currently, the barrow is occupied by reavers .", + "display_name": "bloodskal_barrow", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Gyldenhul Barrow is a Nordic ruin located east of Skaal Village, on the northwestern shore of Horker Island in Solstheim. The barrow is steeped in legend and intrigue, said to house the spirit and treasure of Haknir Death-Brand, a notorious pirate king whose name strikes fear even in death.", + "display_name": "gyldenhul_barrow", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kolbjorn Barrow is a small Nordic ruin located southeast of Raven Rock in Solstheim, nestled between the ash-laden terrain and the island's rugged landscape. It lies northwest of Hrodulf's House. It is filled with Draugr.", + "display_name": "kolbjorn_barrow", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vahlok's Tomb is a small but formidable Nordic ruin located south-southeast of Thirsk Mead Hall and north-northeast of Ashfallow Citadel, deep within the ash-ridden expanse of Solstheim. This ancient burial site serves as the final resting place of Vahlok the Jailor, a dragon priest of great power and ominous legacy.", + "display_name": "vahlok's_tomb", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "White Ridge Barrow is a medium-sized Nordic ruin situated in the northern reaches of Solstheim, nestled between the rugged peaks and snow-laden forests of the island. It lies west of Hrothmund's Barrow and east of the Stalhrim Source, making it a notable landmark for travelers navigating this remote region. Though its weathered exterior speaks of an ancient past, the barrow has become a refuge for bandits who now claim its halls as their stronghold.", + "display_name": "white_ridge_barrow", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Moesring Pass is a rugged mountain pass located in the frozen wilds of northwestern Solstheim. Positioned due northwest of the Temple of Miraak and east-northeast of Fahlbtharz, this icy thoroughfare cuts through the harsh terrain, offering a route steeped in peril and natural beauty. The pass, surrounded by snow-draped peaks and windswept valleys, is as treacherous as it is picturesque.Snowclad Ruins is a small outdoor Nordic ruin situated in the icy wilderness of Solstheim. Located northwest of the Temple of Miraak and southeast of Hrothmund's Barrow, this site is perched amidst snow-covered terrain, exuding an eerie and ancient atmosphere.", + "display_name": "moesring_pass", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Snowclad Ruins is a small outdoor Nordic ruin situated in the icy wilderness of Solstheim. Located northwest of the Temple of Miraak and southeast of Hrothmund's Barrow. The ruins are home to werebears, fearsome lycanthropic creatures with the ferocity of a bear and the cunning of a man.", + "display_name": "snowclad_ruins", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Wreck of the Strident Squall is a battered shipwreck resting south-southeast of Raven Rock, off the southern coast of Solstheim. Located southwest of Hrodulf's House, this forlorn vessel lies amidst jagged rocks and icy waters,.", + "display_name": "wreck_of_the_strident_squall", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Temple of Miraak is a foreboding Nordic temple located west of Thirsk Mead Hall and north of Kagrumez, perched high on the rocky landscape of Solstheim. The temple is a place of dark power, housing cultists devoted to the mysterious and malevolent Miraak, as well as the restless draugr who serve as its ancient guardians. The temple is a place of chilling atmosphere, where the echoes of forgotten rituals still linger in the air.\n\nThe main approach to the temple is from the west, where travelers must climb wide flights of stairs, past the bleached bones of fallen dragons, a grim reminder of Miraak’s ancient dominion over both men and beasts. As you ascend, you pass beneath a pair of large stone arches, their surfaces marred by time but still imposing. The arches are flanked by construction scaffolding, hinting at ongoing efforts to maintain the temple, yet the dark energy within remains undisturbed. The Temple of Miraak stands as a monumental testament to Solstheim’s forgotten past, a place of both allure and danger for those daring enough to venture within.", + "display_name": "temple_of_miraak", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alor House is the residence of Fethis Alor and his daughter Dreyla Alor, located in the heart of Raven Rock on Solstheim. Dreyla Alor, a young and resilient Dark Elf, follows in her father's footsteps, working the land and contributing to the community's survival.", + "display_name": "alor_house", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Bulwark is an imposing stone wall that stands as a vital defense against the relentless ash storms of Solstheim, safeguarding the town of Raven Rock from nature's fury. This formidable structure also serves as the heart of the city's military presence, with the garrison and jail integrated directly into the wall itself. The Bulwark is a symbol of Raven Rock's resilience, providing both protection and a sense of security to its inhabitants in the face of the island’s harsh elements.\n\nAt the helm of the Redoran Guard stationed within the Bulwark is Captain Modyn Veleth, a seasoned Dark Elf warrior. As the captain, Veleth oversees the safety of Raven Rock and its people, ensuring that the garrison is prepared for any threat, whether from the hostile forces of Solstheim or the unpredictable weather.", + "display_name": "the_bulwark", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Caerellius House is a modest home located in Raven Rock, inhabited by Crescius Caerellius and his wife, Aphia Velothi. The house is a quiet refuge amidst the bustling town, reflecting the contrasting lives of its residents. Crescius, an elderly Imperial miner, spends his days working in the mines of Raven Rock, dedicated to unearthing the rich resources of Solstheim despite his advancing age. His work is often tough, but his determination remains strong, driven by the need to provide for his family.\n\nAphia Velothi, his wife, is a Dark Elf priestess who practices her faith in the quiet corners of their home.", + "display_name": "caerellius_house", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Glover Mallory's House is a modest yet well-kept home located in Raven Rock, belonging to Glover Mallory, a skilled Breton blacksmith. The house serves as both his personal residence and a place where he hones his craft, forging weapons and armor for the people of Raven Rock. Glover is known for his expertise in blacksmithing, and his work is highly regarded by both locals and travelers alike, offering both practicality and a sense of pride to the town's defenses.", + "display_name": "glover_mallory's_house", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ienth Farm is the humble home and farmstead of Garyn Ienth and his wife Milore Ienth, located in Raven Rock. The farm is a vital part of the community, where Garyn, a hardworking Dark Elf farmer, tends to the land, growing crops and raising livestock amidst the harsh conditions of Solstheim. His efforts contribute to the sustenance of the people of Raven Rock, ensuring that the town has access to fresh produce despite the island's unforgiving climate.\n\nMilore Ienth, his wife, is a skilled Dark Elf apothecary who crafts potions and remedies for the people of Raven Rock.", + "display_name": "ienth_farm", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Retching Netch is the only inn in Raven Rock, located in the marketplace between Alor House to the northwest and Glover Mallory's House to the southwest. As the sole inn on Solstheim, it serves as a gathering place for locals and travelers alike, offering food, drinks, and respite from the island’s harsh environment. The cornerclub is a lively hub, known for its warmth and hospitality, but also its colorful history.\n\nOwned and operated by Geldis Sadri, a charismatic proprietor, the inn's name has a rather unusual origin. Several years ago, Geldis witnessed a memorable scene when a drunken patron, stumbling around the docks with a bottle of sujamma while naked and singing loudly, tossed the bottle at a floating netch. The bottle shattered upon impact, causing the netch to tilt and eventually vomit.", + "display_name": "the_retching_netch", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Severin Manor is a distinguished home in Raven Rock, originally inhabited by Mirri Severin, Tilisu Severin, and Vendil Severin, all of whom are Dark Elves. The manor stands as a symbol of the Severin family's prominence within the town, offering a large and well-appointed space amid the rugged surroundings of Solstheim.\n\nMirri Severin is a key figure in the family, known for her strong presence in Raven Rock. Her brother, Tilisu Severin, also resides in the manor, adding to the family's legacy within the community. Vendil Severin, another member of the family, is a prominent figure who, like his relatives, plays a significant role in Raven Rock's life.", + "display_name": "severin_manor", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Morvayn Ancestral Tomb is a solemn Dunmer tomb located in Raven Rock, positioned northwest of the flight of stairs that leads up to the Temple of Miraak, directly opposite the entrance to Morvayn Manor. This sacred site serves as the final resting place for members of the Morvayn family, a prominent line within House Redoran, and is where they are interred if they pass away on Solstheim.\n\nThe tomb holds the remains of past family members, including Remas and his wife Brara Morvayn, both former House Redoran Councilors from Vvardenfell. They were the parents of Lleril Morvayn, the current Councilor of Raven Rock and formal ruler of Solstheim. The tomb also honors Varel Morvayn, a smith who resided in Anvil.", + "display_name": "morvayn_ancestral_tomb", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Temple Ancestral Tomb is a sacred Dunmer tomb located within the heart of Raven Rock, uniquely accessible only from within the Raven Rock Temple, the Morvayn Ancestral Tomb, and the Ulen Ancestral Tomb. Unlike other tombs on Solstheim, it does not have a direct external entrance, and its connections to these three distinct areas are unlocked through a special key obtained during the \"Clean Sweep\" quest. This tomb serves as a place of reverence for the Dunmer people, housing the remains of their ancestors in a private, secluded space.\n\nThe tomb’s restricted access and its connections to the other ancestral tombs make it a place of significance, both spiritually and historically. Those who seek to enter the Temple Ancestral Tomb must navigate through the sacred grounds of Raven Rock, guided by the traditions and rituals that connect the past and present.", + "display_name": "temple_ancestral_tomb", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ulen Ancestral Tomb is a revered Dunmer tomb located in Raven Rock, southeast of the flight of stairs leading up to the Temple of Miraak, directly opposite the entrance to Caerellius House. This sacred site serves as the final resting place for members of the Ulen family, a respected line within the Dunmer community of Raven Rock.\n\nThe tomb, like other ancestral sites on Solstheim, is a place of reflection and reverence, where the spirits of the departed are honored and remembered by their descendants.", + "display_name": "ulen_ancestral_tomb", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Baldor Iron-Shaper's House is a sturdy, well-crafted home located on the south side of Skaal Village, nestled between Deor Woodcutter's House to the west and the Shaman's Hut to the east. As the name suggests, it is the residence of Baldor Iron-Shaper, a skilled Nord blacksmith known for his expertise in forging weapons and armor.\n\nBaldor Iron-Shaper is a respected member of Skaal Village, contributing to the community through his craft.", + "display_name": "baldor_iron-shaper's_house", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Deor Woodcutter's House is a humble home located on the south side of Skaal Village, positioned between Oslaf's House to the northwest and Baldor Iron-Shaper's House to the east. This modest residence is the home of Deor Woodcutter, a hard-working Nord who, as his name suggests, spends his days felling trees and providing firewood for the village. His efforts are essential to the survival of Skaal Village, as wood is needed for warmth, building, and crafting.\n\nDeor’s wife, Yrsa, shares the home with him, and together they maintain a simple yet fulfilling life in the harsh environment of Solstheim.", + "display_name": "deor_woodcutter's_house", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Edla's House is a warm, inviting home located on the north side of Skaal Village, nestled between Wulf Wild-Blood's House to the southwest and Morwen's House to the east. This residence is the home of Edla and her son Nikulas, who live a modest but fulfilling life in the village.", + "display_name": "edla's_house", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Morwen's House is a cozy, well-kept home located on the north side of Skaal Village, positioned between Edla's House to the west and the Greathall to the southeast. This modest dwelling is the home of Morwen, a dedicated Nord woman living in the village. She works as an apprentice to Baldor Iron-Shaper, the village blacksmith, honing her skills and learning the craft of metalwork during the day.", + "display_name": "morwen's_house", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Oslaf's House is a modest yet cozy home located on the southwest side of Skaal Village, nestled between Deor Woodcutter's House to the southeast and Wulf Wild-Blood's House to the north. This residence is the home of Oslaf, his wife Finna, and their daughter Aeta, a family deeply rooted in the community of Skaal Village.", + "display_name": "oslaf's_house", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Shaman's Hut is a humble yet significant dwelling located on the southeast side of Skaal Village, south of the Greathall. It serves as the home of Storn Crag-Strider, the village’s elderly and revered shaman, and his daughter Frea.\n\nStorn Crag-Strider is a deeply respected figure in Skaal Village, known for his wisdom, spiritual guidance, and connection to the ancient traditions of the Nords. As the village's shaman, he plays a crucial role in maintaining the spiritual health of the community, guiding them through rituals and offering counsel on matters both mystical and practical. His daughter, Frea, is a strong and dedicated woman, following in her father's footsteps as a protector and spiritual successor.", + "display_name": "shaman's_hut", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wulf Wild-Blood's House is a sturdy and practical home located on the northwest side of Skaal Village, positioned between Oslaf's House to the south and Edla's House to the northeast. This residence is the home of Wulf Wild-Blood, a seasoned Nord warrior known for his mastery of combat, particularly with two-handed weapons.\n\nAs a skilled warrior, Wulf serves as a master trainer for those wishing to improve their two-handed fighting techniques, offering his expertise to the villagers and adventurers alike.", + "display_name": "wulf_wild-blood's_house", + "emotion": "", + "importance": 0.75, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Solstheim is a large island located in the Sea of Ghosts, to the north of Tamriel, with a history that stretches back to the ancient Snow Elves, the first inhabitants of the region. They built grand settlements on Solstheim that outlasted their mainland holdings, leaving a lasting mark on the island. Though the island has been home to various races over the centuries, it has traditionally been dominated by Nordic influence. In 4E 16, Solstheim officially became part of Morrowind. The island’s history took a tragic turn during the Red Year of 4E 5, when the eruption of Red Mountain devastated the southern half of Solstheim. You do not know anything else about this area.", + "display_name": "solstheim", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Raven Rock is a city located on the southwest coast of Solstheim, serving as the first settlement encountered in the Dragonborn expansion. Once a thriving East Empire Company mining outpost, it has since become a House Redoran colony. You do not know anything else about this area.", + "display_name": "raven_rock", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skaal Village is a small, secluded settlement located in the northeastern region of Solstheim. It is home to the Skaal, Nordic people who worship animal gods.You do not know anything else about this area.", + "display_name": "skaal_village", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "tel_mithryn", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "old_attius_farm", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "abandoned_lodge", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "hrodulf's_house", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "ramshackle_trading_post", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "beast_stone", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "earth_stone", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "sun_stone", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "water_stone", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "wind_stone", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "bujold's_retreat", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "haknir's_shoal", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "ashfall's_tear", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "benkongerike", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "bristleback_cave", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "castle_karstaag_caverns", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "castle_karstaag_ruins", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "coldcinder_cave", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "frossel", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "frostmoon_crag", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "glacial_cave", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "headwaters_of_harstrad", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "saering's_watch", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "fahlbtharz", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "kagrumez", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "nchardak", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "altar_of_thrond", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "brodir_grove", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "frykte_peak", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "horker_island", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "mount_moesring", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "stalhrim_source", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "ashfallow_citadel", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "fort_frostmoth", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "highpoint_tower", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "broken_tusk_mine", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "damphall_mine", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "raven_rock_mine", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "bloodskal_barrow", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "gyldenhul_barrow", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "kolbjorn_barrow", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "vahlok's_tomb", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "white_ridge_barrow", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "moesring_pass", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "snowclad_ruins", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "wreck_of_the_strident_squall", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "temple_of_miraak", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "alor_house", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "the_bulwark", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "caerellius_house", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "glover_mallory's_house", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "ienth_farm", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "the_retching_netch", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "severin_manor", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "morvayn_ancestral_tomb", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "temple_ancestral_tomb", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "ulen_ancestral_tomb", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "baldor_iron-shaper's_house", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "deor_woodcutter's_house", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "edla's_house", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "morwen's_house", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "oslaf's_house", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "shaman's_hut", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "You do not know anything about this area.", + "display_name": "wulf_wild-blood's_house", + "emotion": "", + "importance": 0.4, + "location": "Solstheim", + "tags": [], + "type": "LOCATION" + } + ], + "entry_count": 134, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Locations - Solstheim", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/Oghma_-_Locations_-_Whiterun.sknpack b/oghma-sknpack/Oghma_-_Locations_-_Whiterun.sknpack new file mode 100644 index 0000000..a4df8f2 --- /dev/null +++ b/oghma-sknpack/Oghma_-_Locations_-_Whiterun.sknpack @@ -0,0 +1,1554 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Tamrielic lore from CHIM's Oghma Infinium — locations whiterun. Merges educated and common-knowledge entries graded by importance.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "Whiterun Hold is a central location in Skyrim, with its capital in the city of Whiterun. Jarl Balgruuf the Greater, loyal to his people above all, maintains neutrality\n\nThe hold's geography is dominated by open tundra, bordered by the fertile White River to the south and the River Hjaal to the north. Its plains are rich in wildlife, from giants and mammoths to foxes and goats, and its rivers teem with salmon. Flora includes lavender, tundra cotton, and vibrant mountain flowers, with red flowers flourishing near rivers and snowberries thriving in colder areas like the Throat of the World. Whiterun’s main roads, patrolled by guards, connect the hold to neighboring regions like Falkreath (South), Eastmarch (East), and Haafingar (NorthWest), though some remote paths remain rugged and less maintained.\n\nWhiterun city itself is tiered into three districts. The Plains District, at the base, houses the bustling marketplace, shops, and city gates. The Wind District serves as the residential and cultural hub, home to the Temple of Kynareth, the Companions' headquarters Jorrvaskr, and the Skyforge, renowned for its craftsmanship. The Cloud District, perched at the top, is dominated by Dragonsreach, the seat of government. Notable establishments include The Bannered Mare inn, Warmaiden’s smithy, Arcadia’s Cauldron for alchemy supplies, and Belethor’s General Goods. The city's central location, rich resources, and vibrant community make it a vital and dynamic heart of Skyrim.", + "display_name": "whiterun", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonsreach is a prominent location in the Cloud District of Whiterun, a central city in Skyrim. Situated atop three flights of stairs beginning at the Gildergreen tree, this iconic palace serves as the residence of the Jarl of Whiterun Hold, the seat of the hold’s political power, and the location of its jail. Overlooking the city and with the Throat of the World as its backdrop, Dragonsreach is divided into four main sections: the main hall, the Jarl’s Quarters, the Great Porch, and the dungeon.\n\nThe palace is steeped in history and legend, having been built around the remnants of a dragon trap purportedly used by Olaf One-Eye. Its interior is a hub of activity, centered around the Jarl’s throne, where courtiers and family members move about amidst ornate furnishings, grand feasts, and a roaring hearth. The court wizard’s laboratory and the Jarl’s personal quarters further enhance the palace's grandeur, with treasures and artifacts scattered throughout.\n\nDragonsreach’s dungeon serves as Whiterun's jail, featuring several cells, evidence storage, and an escape tunnel leading to the Guard Barracks. The Great Porch, once a dragon’s prison, now serves as a multipurpose area for guard training and hosting quests pivotal to Skyrim’s Civil War and main storyline. As a symbol of both Whiterun’s authority and its role in Skyrim’s tumultuous history, Dragonsreach stands as a monument to power, strategy, and lore.", + "display_name": "dragonsreach", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Whiterun Stables is a small but essential location just outside the gates of Whiterun, providing lodging for horses and a place for travelers to acquire mounts. Owned by Lillith Maiden-Loom and operated by Skulvar Sable-Hilt, the stables are also home to Skulvar and his son Jervar, who live within the residence attached to the facility.", + "display_name": "whiterun_stables", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Riverwood is a small milling town in southern Whiterun Hold, nestled at the foot of the Throat of the World and situated along the banks of the White River. Located just south of Whiterun and east of Bleak Falls Barrow.\n\nDespite its modest size, Riverwood offers essential facilities, including a sawmill, a general goods store known as the Riverwood Trader, and the Sleeping Giant Inn, a cozy tavern ideal for rest and socializing.", + "display_name": "riverwood", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rorikstead is a small farming town in western Whiterun Hold, located west of Swindler's Den and east-southeast of Bleakwind Bluff. The town is named after Rorik, a noble who resides in the local \"manor\" and plays a central role in its community. Despite its living namesake, Rorikstead’s name and origins appear much older, being referenced in the Merethic or First Era text Holdings of Jarl Gjalund as \"Rorik's Steading\" and in the Second Era text Atlas of Dragons. It is also immortalized in the bard's song Ragnar the Red, which describes it as \"ole Rorikstead,\" hinting at the existence of an ancient settlement that preceded the current town.\n\n\nFrostfruit Inn, owned by Mralki, is located here. Known for its abundant crop fields, Rorikstead boasts a reputation for bountiful harvests, with residents proudly claiming they have not suffered a bad season in years.", + "display_name": "rorikstead", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Honningbrew Meadery, owned by Sabjorn, is a bustling meadery located southeast of Whiterun and north-northeast of Riverwood, nestled within the fertile plains of Whiterun Hold. Renowned for its production of Honningbrew Mead, it stands as a proud competitor to the famous Black-Briar Meadery of Riften.\n\nThe meadery consists of two buildings: the main brewing hall, Honningbrew Meadery, and the adjacent Honningbrew Boilery. Its strategic location near Whiterun makes it a hub for trade and a popular supplier of mead throughout Skyrim. The rich aroma of fermenting honey and the sounds of activity within are a testament to its thriving operation and its ambition to carve a name for itself among the land’s most cherished brewers.", + "display_name": "honningbrew_meadery", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chillfurrow Farm is a modest agricultural holding located just east of Whiterun, south of Battle-Born Farm, nestled within the fertile lands of Whiterun Hold. Owned by the affluent but often absent Nazeem, the farm's daily operations are entrusted to Wilmuth, a hardworking caretaker who resides in the farmhouse.\n\nDespite Nazeem’s lack of presence, Chillfurrow Farm is well-maintained, with a Whiterun Guard stationed on-site to ensure its security. Another guard regularly patrols the yard, reflecting its importance as part of the region's agricultural network. The farm stands as a quiet yet vital contributor to the prosperity of Whiterun Hold, its fields and farmhouse embodying the steady rhythm of Skyrim’s agrarian life.", + "display_name": "chillfurrow_farm", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Battle-Born Farm is a productive homestead located just east of Whiterun and north of Chillfurrow Farm, nestled in the rolling fields of Whiterun Hold. Owned by the influential Battle-Born clan, the farm is tended by Alfhild and Gwendolyn, who diligently manage its fertile fields and livestock.\n\nThe farm boasts expansive fields planted with leeks, gourds, and wheat, along with a penned cow and free-roaming chickens.", + "display_name": "battle-born_farm", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pelagia Farm is a large and thriving homestead located south of Whiterun Stables and west of Honningbrew Meadery in the fertile plains of Whiterun Hold. Owned by Severio Pelagia, the farm is a bustling agricultural hub, managed by his workers Nimriel and Gloth, who live on-site while Severio resides in Whiterun.\n\nThe farm is characterized by its sprawling fields of vegetables, enclosed by stone walls and fences, where Severio often works alongside his laborers during the day. A grain mill stands to the east of the farmhouse, and the property includes various outbuildings and storage sheds. To the west, a penned cow grazes peacefully, while chickens nest near the farmhouse entrance.", + "display_name": "pelagia_farm", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bleakwind Basin is a giants camp located west of Whiterun and north of the Western Watchtower, set against the wide, open plains of Whiterun Hold. The camp is home to a small group of giants and their mammoths, who roam peacefully amidst the sparse vegetation and scattered boulders characteristic of the region.\n\nMarked by a large central fire pit and the towering figures of its inhabitants, Bleakwind Basin serves as a tranquil yet imposing presence in the Hold.", + "display_name": "bleakwind_basin", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Guldun Rock is a secluded giant camp located east of Whiterun and south of Valtheim Towers, nestled along the road that traces the White River toward Fort Amol. A marked path, distinguished by a stone cairn surrounded by tundra cotton and vibrant mountain flowers, leads to the camp, winding up to a plateau where the giants dwell.\n\nThe camp is home to a few giants who guard their territory amid scattered mammoth cheese bowls, bones, and skulls. Painted stones and frost mirriam bundles decorate the area, giving it an air of primal ritual. The campfire, set atop a ruined stone structure near the entrance to Guldun Rock Cave, offers a commanding view of the surrounding plains to the north.", + "display_name": "guldun_rock", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Halted Stream Camp is a fortified bandit camp and iron mine located north of Whiterun and east of Silent Moons Camp, nestled against a rocky hillside. Surrounded by a palisade wall, the camp is accessible through a southern gate or an eastern gap marked by bone chimes, which serve as a crude alarm system. The bandits who occupy the camp are poachers, as evidenced by the presence of a mammoth skeleton and a butchery shack filled with mammoth remains.\n\nThe camp is guarded by bandits stationed on raised platforms around the perimeter.", + "display_name": "halted_stream_camp", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Serpent's Bluff Redoubt is a Forsworn camp and ancient ruin located atop a steep incline southwest of Rorikstead and east of the Old Hroldan Inn. The redoubt serves as a fortified refuge for the Forsworn and their hagraven matriarch, with a camp sprawling across the lower levels and a ruin hidden farther uphill.", + "display_name": "serpents_bluff_redoubt", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sleeping Tree Camp is a remote giant camp located west of Whiterun and east of Broken Fang Cave, nestled amidst the open plains of Whiterun Hold. The camp is centered around the mysterious Sleeping Tree, which grows from a glowing pool. The tree emits a soft, otherworldly purple light, and its sap is said to possess strange properties, enhancing health but causing slowed movement and blurred vision.\n\nThe camp is home to giants and mammoths who fiercely protect their territory, warning intruders before attacking if their warnings go unheeded.", + "display_name": "sleeping_tree_camp", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Whiterun Imperial Camp is a temporary military outpost established in Whiterun Hold, east of Rorikstead and far west of Whiterun, amidst the rugged plains of the region. Commanded by Legate Quentin Cipius, the camp serves as a strategic base for the Imperial Legion during times of conflict.", + "display_name": "whiterun_imperial_camp", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Whiterun Stormcloak Camp is a rugged military encampment in Whiterun Hold, located south of the Ritual Stone and east of White River Watch. Commanded by Hjornskar Head-Smasher, the camp serves as a strategic outpost for the Stormcloak rebellion during their efforts to wrest control of Whiterun from Imperial forces.", + "display_name": "whiterun_stormcloak_camp", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Drelas' Cottage is an isolated dwelling nestled at the foot of a mountain in northern Whiterun Hold, south of Morthal and northwest of Dustman’s Cairn. Surrounded by rugged terrain and far from any settlements, the cottage exudes an air of quiet seclusion.\n\nThe cottage is home to Drelas, a reclusive and formidable elemental mage who fiercely guards his solitude, attacking any who dare to intrude.", + "display_name": "drelas_cottage", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lund's Hut is a modest shack situated northwest of Rorikstead and east of Bleakwind Bluff, nestled within the rugged plains of Whiterun Hold. It is rumored that the place has been overan by skeevers who have ruined the place.", + "display_name": "lunds_hut", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "High Hrothgar is a secluded settlement perched roughly halfway up the Throat of the World, southeast of Whiterun. As a major landmark, it serves as the home of the Greybeards, the reclusive masters of the Thu'um, or The Voice. Revered as a place of spiritual significance, High Hrothgar is steeped in ancient tradition and shrouded in an air of solemnity.\n\nReaching High Hrothgar requires traversing the legendary \"7,000 Steps\" from Ivarstead, a treacherous ascent fraught with challenges. Along the way, travelers may encounter hostile creatures such as frost trolls, snow bears, and ice wraiths.", + "display_name": "high_hrothgar", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Greymoor is a medium-sized stronghold located west of Whiterun and south of Redoran's Retreat, strategically positioned on the plains of Whiterun Hold. It is occupied by bandits.\n\nThe fort consists of two distinct zones: the main structure, Fort Greymoor, and its adjoining prison. Surrounded by crumbling walls and guarded by towers, the fort serves as both a defensive position and a staging ground for its occupants.", + "display_name": "fort_greymoor", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fellglow Keep is a medium-sized, crumbling fortress located east-northeast of Whiterun and northwest of Valtheim Towers, nestled amidst the rugged terrain of Whiterun Hold. It is rumoured that the keep has been overtaken by warlocks who conduct dark rituals within its walls.", + "display_name": "fellglow_keep", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Western Watchtower is a small fortification located west of Whiterun and north of Secunda's Kiss, positioned along the main road to monitor and guard against potential threats approaching the city from the west. Though partially in ruins, the tower serves as an important outpost for Whiterun's defenses, offering a vantage point over the surrounding plains.", + "display_name": "western_watchtower", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Valtheim Towers is a pair of ancient Nordic towers located east of Whiterun and west of Darkshade, perched along the White River in Whiterun Hold. Once a defensive structure, the towers are now in ruins and have been taken over by bandits who use the location to control passage along the river and extort tolls from travelers.\n\nThe two towers are linked by a precarious bridge spanning the river, and their commanding position provides a clear view of the surrounding area. Despite their dilapidated state, the bandits have fortified the towers and made them a base of operations, making this once-proud structure a dangerous place for unwary adventurers.", + "display_name": "valtheim_towers", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Whitewatch Tower is a modest fortification located north-northeast of Whiterun and south of Loreius Farm, overlooking the plains of Whiterun Hold. The tower serves as a strategic outpost.\n\nThe structure consists of an intact eastern watchtower connected by an archway to the ruins of a western tower.", + "display_name": "whitewatch_tower", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Silent Moons Camp is a small, ancient Nordic ruin nestled northwest of Whiterun and north of Bleakwind Basin in the windswept plains of Whiterun Hold. The ruins are now occupied by bandits who have made it their base of operations, taking advantage of its defensible position and mystic surroundings. \n\nIt is rumoured that a special forge can be found at this camp, which can enchant your weapon with magical lunar properties.", + "display_name": "silent_moons_camp", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dustman's Cairn is a medium-sized Nordic ruin located northwest of Whiterun and southeast of Drelas' Cottage, hidden amidst the rugged terrain of Whiterun Hold. This ancient barrow serves as a resting place for the dead. \n\nIt is rumoured that the Silver Hand, have taken up residence amidst its winding halls and tombs.", + "display_name": "dustmans_cairn", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hamvir's Rest is a somber and eerie Nordic graveyard located northwest of Whiterun and south of Labyrinthian, perched on the quiet slopes of Whiterun Hold. This small outdoor ruin serves as the resting place for ancient Nords, its cracked stones and scattered grave markers evoking a sense of solemnity and forgotten history.", + "display_name": "hamvirs_rest", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Moldering Ruins is a hidden and foreboding site west of Rorikstead and east of Soljund's Sinkhole, shrouded in mystery amidst the rugged landscapes of Whiterun Hold. \n\nIt is rumoured that vampires and the undead take residence here in a hidden cave.", + "display_name": "moldering_ruins", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skybound Watch Pass is a small, ancient Nordic ruin located northeast of Helgen and west of Orphan Rock, straddling the border of Falkreath Hold. The pass connects two distinct entrances: South Skybound Watch, marked by a Nordic tower south of Riverwood, and North Skybound Watch, represented as a Nordic ruin southeast of the town. These entrances form a hidden pathway through the mountain, offering a secluded and perilous route.\n\nThe ruins are inhabited by bandits making it a dangerous place for travelers", + "display_name": "north_skybound_watch", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hillgrund's Tomb is a small Nordic burial site nestled southwest of Windhelm and south-southeast of Valtheim Towers, hidden within the rugged wilderness of Skyrim. The tomb's shadowy corridors are inhabited by draugr, ancient guardians who rise to defend their sanctum from intruders.", + "display_name": "hillgrunds_tomb", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Broken Fang Cave is a shadowy and ominous cavern located southeast of Rorikstead and west-northwest of Sleeping Tree Camp, hidden amidst the rocky terrain of Whiterun Hold. \n\nIt is rumoured the cave serves as a dark refuge for vampires who lurk within, accompanied by skeletons that guard the entrance and interior.", + "display_name": "broken_fang_cave", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Swindler's Den is a small, secluded cave located east of Rorikstead and south of Rannveig's Fast, nestled within the arid foothills of Whiterun Hold. The cave serves as a hideout for bandits, who have established a makeshift base within its winding passages.", + "display_name": "swindlers_den", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shimmermist Cave is a foreboding cave system located northeast of Whiterun and east of Whitewatch Tower, hidden within the rocky outcroppings of Whiterun Hold. The entrance, marked by eerie Falmer totems and a patch of bleeding crown fungus, serves as a stark warning to travelers of the dangers lurking within. The cave is inhabbited by the Falmer.", + "display_name": "shimmermist_cave", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Graywinter Watch is a small, shadowy cave located east of Whiterun and south of Shimmermist Cave, nestled beneath the Ritual Stone's rocky foundation overlooking the White River. A dirt path along the western side of the Ritual Stone leads directly to the cave, making it easily accessible from the nearby road. \n\nIt is rumoured the cave is home to trolls.", + "display_name": "graywinter_watch", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "White River Watch is a small, rugged cave situated east-southeast of Whiterun and southwest of the Ritual Stone, perched above the White River on the rocky slopes of Whiterun Hold. The cave serves as the hideout for the White River bandits, a group of outlaws who use its strategic location to ambush travelers and guard their ill-gotten gains.", + "display_name": "white_river_watch", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Darkshade is a small, shadowy cave located east of Whiterun and north of Hillgrund's Tomb, situated along the bank of the White River at the base of a waterfall east of Valtheim Towers..", + "display_name": "darkshade", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Redoran's Retreat is a small, concealed cave located west-northwest of Whiterun and south of Dustman’s Cairn, nestled within the open plains of Whiterun Hold. Hidden at the end of a winding path behind a rocky outcrop, the entrance is easily overlooked, blending seamlessly into the rugged landscape.\n\nThe cave serves as a hideout for a group of bandits, who have taken up residence.", + "display_name": "redorans_retreat", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ritual Stone is one of Skyrim's thirteen enigmatic Standing Stones, located east of Whiterun by the roadside, perched on a rocky outcrop overlooking the entrance to Graywinter Watch. This ancient monument is marked by its circle of candles and commands a commanding view of the surrounding landscape.\n\nThe stone grants a powerful and unique blessing to those who activate it, enabling them to reanimate nearby corpses to fight as allies for a limited time. The raised bodies remain intact after the power's effects wear off, and there is no limit to how many corpses can be reanimated.\n\nThe path leading to the stone winds upward through squared-off arches, reflecting the artistry and mysticism of the Nords who revered these ancient relics. The Ritual Stone's eerie aura and potent magic serve as a testament to the mysterious forces that shape Skyrim's untamed lands.", + "display_name": "ritual_stone", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Guardian Stones are a revered trio of Standing Stones located east of Lake Ilinalta, along the road between Helgen and Riverwood in Falkreath Hold. Set against the tranquil backdrop of the river and forest, these stones are among the most well-known and accessible in Skyrim, offering powerful blessings to those who seek to hone their skills.\n\nThe stones represent the three primary paths of mastery: magic, stealth, and combat. The Mage Stone grants those under its sign the ability to learn all magical skills faster, fostering the arcane arts. The Thief Stone accelerates the mastery of stealth-related skills, appealing to those who prefer cunning and subtlety. Lastly, the Warrior Stone enhances the training of all combat skills, empowering those who choose strength and valor.", + "display_name": "guardian_stones", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Greenspring Hollow is a shallow outdoor cave nestled west-northwest of Whiterun and southwest of Hamvir's Rest, situated amidst the rolling plains of Whiterun Hold.", + "display_name": "greenspring_hollow", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Throat of the World, known as Monahven (\"Mother Wind\") in the language of dragons, is the highest mountain in all of Tamriel, dominating the landscape of Skyrim. Towering above the northern province, it was once rivaled only by Red Mountain before the latter's catastrophic eruption in the Fourth Era. The mountain is home to the revered settlement of High Hrothgar, perched near its summit, where the Greybeards dwell in silence, dedicating their lives to the mastery of the Thu’um. The ascent to High Hrothgar is marked by the legendary \"7,000 steps,\" a path rich with Nordic lore, including tales of King Wulfharth rebuilding the 418th step.\n\nThe Throat of the World holds profound significance for the Nords, often symbolizing their homeland as a whole. Also referred to as Snow Throat or Throat Mountain, it is one of the mystical Towers, ancient anchors of power in Tamriel. Prophecy links it to the destiny of the Dragonborn, foretelling a time when the \"Snow Tower\" will lie \"sundered, kingless, bleeding,\" reflecting Skyrim’s turbulent history and uncertain future. This sacred peak stands as a testament to the power and mystery that define the land of the Nords.", + "display_name": "throat_of_the_world", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Gjukar's Monument is a solemn stone marker southeast of Rorikstead, standing as a memorial to an ancient and forgotten battle. The weathered monument, surrounded by the vast plains of Whiterun Hold, bears silent witness to the lives lost in the skirmish it commemorates. At its base lie a sword, a shield, and a few flowers, placed in reverence for the fallen.", + "display_name": "gjukar_monument", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Amren's House is a modest residence located in the Wind District of Whiterun, nestled beside Uthgerd's House and directly across from the House of Clan Battle-Born. This cozy home serves as the dwelling of Amren, a Redguard warrior, his wife Saffir, and their spirited daughter Braith.", + "display_name": "amren's_house", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Arcadia's Cauldron is a bustling alchemy shop located in Whiterun's market district, serving as a hub for those seeking potions, ingredients, and expertise in the art of alchemy. The shop is owned and operated by Arcadia, a skilled apothecary and trainer in alchemy, who also resides within the premises. Open daily from 8 a.m. to 8 p.m.", + "display_name": "arcadia's_cauldron", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Bannered Mare is a welcoming inn located in the bustling market area of Whiterun's Plains District. A favored gathering spot for locals and travelers alike, the inn offers warmth, hearty meals, and lively company, making it a central hub of activity in the city.\n\nHulda, the innkeeper, oversees the establishment with her characteristic charm, and Saadia serves as her diligent assistant, ready to offer food and drinks to seated patrons.", + "display_name": "the_bannered_mare", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Belethor's General Goods is a bustling shop located in Whiterun's market area within the Plains District. Nestled next door to Arcadia's Cauldron and across from The Bannered Mare, it serves as a convenient stop for travelers and residents seeking a variety of wares.\n\nOwned by the charming and opportunistic Belethor, the store offers an eclectic selection of goods, from weapons and armor to household items and curiosities. His assistant, Sigurd, helps with the shop's upkeep and can often be found outside chopping wood near the northwest side. Open daily from 8 a.m. to 8 p.m.", + "display_name": "belethor's_general_goods", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Breezehome is a cozy and practical residence available for purchase in Whiterun, conveniently located just inside the city gates, next to Warmaiden's. Proventus Avenicci will sell you the house.", + "display_name": "breezehome", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Carlotta Valentia's House is a modest residence located in the Wind District of Whiterun. Nestled next door to the House of Clan Battle-Born and directly across from Amren's House, it serves as the home of Carlotta Valentia and her young daughter, Mila.", + "display_name": "carlotta_valentia's_house", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonsreach Dungeon lies beneath the grand palace of Dragonsreach in Whiterun, serving as the city’s jail and housing its prisoners. The dungeon consists of cells guarded by vigilant Whiterun guards. It is a stark and functional space, designed to securely detain criminals.", + "display_name": "dragonsreach_dungeon", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Drunken Huntsman is a lively tavern and hunting supply store located in Whiterun, directly across the street from Breezehome. A favorite among hunters and adventurers, the establishment combines the warmth of a traditional tavern with the practicality of a well-stocked supply shop.\n\nOwned and managed by Elrindir, the Drunken Huntsman offers a range of goods, including weapons, armor, food, and various miscellaneous items, catering to both seasoned travelers and local patrons. Open daily from 8 a.m. to 8 p.m.", + "display_name": "the_drunken_huntsman", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Gildergreen is a sacred tree located in the city of Whiterun, revered by worshippers of Kynareth and central to the city's Temple of Kynareth. Planted during the early days of Whiterun's settlement, the Gildergreen is said to have grown from a cutting or seedling of the ancient Eldergleam, one of the oldest living trees in Tamriel. The tree's holiness is reflected in its name, which echoes that of its revered ancestor, and in the many pilgrims who have journeyed to Whiterun to hear the goddess’s wind whisper through its branches.\n\nIn 4E 201, the Gildergreen was struck by lightning, leaving it severely burned and lifeless. This tragedy deeply saddened its worshippers, causing pilgrimages to cease.", + "display_name": "gildergreen", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heimskr's House is a modest dwelling located in Whiterun, near the sacred Gildergreen tree, nestled between Jorrvaskr and the Temple of Kynareth. The home belongs to Heimskr, a fervent priest of Talos known for his impassioned sermons extolling the virtues of the Ninth Divine.", + "display_name": "heimskr's_house", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "House Gray-Mane is the ancestral home of Clan Gray-Mane, one of Whiterun's most prominent and traditional families. Situated in the Wind District, the house stands directly opposite the sacred Gildergreen tree, at the top of the stairs leading up from the bustling marketplace.\n\nThe home reflects the clan's storied history and deep-rooted Nordic pride, serving as a gathering place for its members amidst the political tensions of Whiterun. As staunch supporters of the Stormcloak rebellion and advocates for Nordic independence, the Gray-Manes are known for their unwavering values and rivalry with the Imperial-aligned Clan Battle-Born.", + "display_name": "house_gray-mane", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The House of Clan Battle-Born is the residence of the influential Battle-Born family, situated in the Wind District of Whiterun. Nestled beside the Hall of the Dead, the home is a prominent landmark in the city, standing directly across from the house of their rivals, Clan Gray-Mane.\n\nThe Battle-Borns are staunch supporters of the Empire and the Imperial Legion, embodying loyalty to tradition and order. Their home reflects their status and role in Whiterun’s political and social landscape. As one of the city’s leading families, the House of Clan Battle-Born serves as both a symbol of their allegiance to the Empire and a focal point in the ongoing feud with the fiercely independent Gray-Manes.", + "display_name": "house_of_clan_battle-born", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Jorrvaskr is the legendary mead hall and headquarters of the Companions, situated atop the steps leading from Whiterun's central plaza. It is the oldest structure in Whiterun, predating the city itself, and was established around the revered Skyforge. Over centuries, Whiterun grew around this sacred site, cementing Jorrvaskr's role as a cornerstone of Nordic heritage.\n\nThe building, crafted from the overturned hull of a longship, reflects its deep ties to Atmoran tradition. Jorrvaskr was originally the ship of Ysgramor’s fleet, carried across the land by its crew and repurposed as a shelter when Jeek of the River founded the Great City. This connection to Ysgramor and the Five Hundred Companions imbues the hall with immense historical and cultural significance.", + "display_name": "jorrvaskr", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Olava the Feeble's House is a quaint, modest home located in the southern part of Whiterun, tucked away directly behind Breezehome. This small residence serves as the dwelling of Olava the Feeble, an elderly seer known for her wisdom and mystical insights.", + "display_name": "olava_the_feeble's_house", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Severio Pelagia's House is a modest residence located in the Plains District of Whiterun, nestled between the Drunken Huntsman and the bustling market stalls. The home serves as the city dwelling of Severio Pelagia, the proprietor of Pelagia Farm, a prominent agricultural holding just outside Whiterun's walls.", + "display_name": "severio_pelagia's_house", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skyforge is an ancient and mystical forge located atop a rocky outcrop in Whiterun, near the Companions' hall, Jorrvaskr. Renowned for its unparalleled craftsmanship, it is tended by Eorlund Gray-Mane, widely regarded as the finest blacksmith in Skyrim. The forge’s searing heat is used to craft powerful weapons and armor, as well as to light the funeral pyres of fallen Companions, intertwining its purpose with the traditions and legacy of the order.\n\nLegend holds that the Skyforge predates human settlement in the area. The ancient elves believed it to be a relic of the gods, an artifact so sacred that they avoided it entirely. When Ysgramor and his Five Hundred Companions arrived, they claimed the forge as their own, building Jorrvaskr nearby to honor its power. This act marked the beginning of human settlement in the region, eventually giving rise to the city of Whiterun.", + "display_name": "skyforge", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Temple of Kynareth is a humble yet sacred sanctuary located in Whiterun, dedicated to the worship of Kynareth, the goddess of nature, wind, and the heavens. Within its serene walls, Danica Pure-Spring and Acolyte Jenssen tirelessly tend to the wounded, providing healing and solace to those affected by the ongoing war between the Imperials and Stormcloaks.", + "display_name": "temple_of_kynareth", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Uthgerd's House is a modest residence situated in the Wind District of Whiterun, directly across from Carlotta Valentia's House. The home reflects the straightforward lifestyle of its owner, Uthgerd the Unbroken, a formidable and independent Nord renowned for her strength and skill in combat.", + "display_name": "uthgerd's_house", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Warmaiden's is a bustling smithy and weapons shop located just inside Whiterun's main gate. Owned and operated by Ulfberth War-Bear and his wife, Adrianne Avenicci, the store provides a wide selection of weapons, armor, and smithing supplies to adventurers and city residents alike.\n\nThe shop features a single trading area where a variety of finely crafted wares are displayed, reflecting the skill and dedication of its proprietors. Adrianne, a talented blacksmith, often works at the forge outside, crafting and refining goods, while Ulfberth manages sales inside.", + "display_name": "warmaiden's", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ysolda's House is a modest residence in Whiterun, tucked behind Arcadia's Cauldron and Belethor's General Goods. This simple home belongs to Ysolda, an ambitious local aspiring to become a prominent merchant in the city. She lives here alone, reflecting her independent and determined nature.", + "display_name": "ysolda's_house", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bleak Falls Barrow is an ancient and foreboding ruin, steeped in local legend and mystery. located on the hills north of Riverwood. It is seen as a place of danger, thought to be inhabited by restless spirits and the undead, such as the draugr that are said to roam its dark halls. There are said to be old Nordic treasures hidden within, though few dare to venture inside due to its reputation for being cursed.It is seen as as a relic of a long-lost past, but only the bravest or most desperate would consider exploring its depths.\n\nIt’s also known as the site of a valuable artifact, the Dragonstone, which was once sought by a group of adventurers but is said to be hidden deep within the barrow. There are rumors of the ancient knowledge or power buried within Bleak Falls Barrow, but it’s generally regarded as a dangerous and mysterious place best avoided.", + "display_name": "bleakfalls_barrow", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bleak Falls Tower is a tall, imposing structure located atop the hill above Riverwood. The tower might be described as a crumbling, ancient ruin, possibly linked to the same mysterious history that surrounds Bleak Falls Barrow. Some speculate that the tower was once part of a larger complex, possibly related to old Nordic rituals or military defenses, though few would know its exact purpose.\nSome might believe the tower is haunted or tied to dark forces that are linked to the barrow's ancient curse. Some believe that this is a story circulated by bandits who have made it their hideout, in order to keep people away.", + "display_name": "bleakfalls_tower", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cowflop Farm is located just outside Whiterun, a short walk from the city, situated between Whiterun and Rorikstead. The farm is run by a somewhat quirky and down-to-earth Nord named Sigrid, who, with her husband, makes a modest living off the land. As with many Skyrim farmers, their lives are filled with simple, daily chores and the occasional struggle with local wildlife, like wolves or sabre cats, which can disrupt the farm’s routine.", + "display_name": "cowflop_farm", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dragon burial mound located northeast of swindler's den", + "display_name": "dragon_mound_lone_mountain", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frostfruit Inn is a modest, welcoming establishment in Rorikstead, a quiet farming village located in the western part of Whiterun Hold. The inn is located at the edge of the village, near the main road that connects to Whiterun and Hjaalmarch. This makes it a common stop for merchants, adventurers, and anyone passing through the area. It's a small but vital part of Rorikstead's hospitality, offering food, drink, and a warm bed. It is run by Mralki and his sone Erik.", + "display_name": "frostfruit_inn", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Guldun Rock Cave is a cave located at Guldun Rock in Whiterun Hold. There are two giants leading up to the cave, but there are none inside. It appears that the giants use the cave as a storage area.", + "display_name": "guldun_rock_cave", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lemkil's Farm is a farm located in the town of Rorikstead. It is farmed by Lemkil with help from Erik. Lemkil has two daughters, Sissel and Britte, who, much to his chagrin, do not help with the farm. When he is not working on his farm, Lemkil can be found in the tavern complaining about his daughters.", + "display_name": "lemkils_farm", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "On the rough path leading toward Sleeping Tree Camp is a group of standing stones and three Nordic Puzzle Pillars. Next to the puzzle is a closed grate on top of a caved-in ruin. No one knows what lies within", + "display_name": "puzzling_pillar_ruins", + "emotion": "", + "importance": 0.75, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Whiterun Hold, located in the heart of Skyrim, is known for its open tundra, fertile rivers, and central city, Whiterun. Governed by Jarl Balgruuf the Greater, who is dedicated to his people, the hold connects to regions like Falkreath, Eastmarch, and Haafingar through well-patrolled main roads. Its plains are home to giants, mammoths, and abundant wildlife, while the rivers provide rich fishing grounds and fertile farmland. Whiterun city is divided into three districts: the Plains District, with its busy marketplace and shops; the Wind District, housing the Temple of Kynareth and the famed Skyforge; and the Cloud District, dominated by Dragonsreach, the Jarl’s palace. Whiterun’s vibrant economy, central location, and strong traditions make it one of Skyrim's most vital regions.", + "display_name": "whiterun", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonsreach, perched in the Cloud District of Whiterun, is the grand palace of the Jarl and the heart of Whiterun Hold’s political power. Dragonsreach is not just a residence but a historic landmark, said to be built around a dragon trap used by Olaf One-Eye.", + "display_name": "dragonsreach", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Whiterun Stables is a small but essential location just outside the gates of Whiterun, providing lodging for horses and a place for travelers to acquire mounts. You do not know who owns or work the stables. You do not know anything else about this area.", + "display_name": "whiterun_stables", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Riverwood is a small milling town in southern Whiterun Hold, nestled at the foot of the Throat of the World and situated along the banks of the White River. Located just south of Whiterun and east of Bleak Falls Barrow.You do not know anything else about this area.", + "display_name": "riverwood", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rorikstead is a small farming town in western Whiterun Hold, located west of Swindler's Den and east-southeast of Bleakwind Bluff. Frostfruit Inn is situtated here, but you do not know who owns it.You do not know anything else about this area.", + "display_name": "rorikstead", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Honningbrew Meadery is a bustling meadery located southeast of Whiterun and north-northeast of Riverwood, nestled within the fertile plains of Whiterun Hold. Renowned for its production of Honningbrew Mead, it stands as a proud competitor to the famous Black-Briar Meadery of Riften. You do not know who owns the meadery.You do not know anything else about this area.", + "display_name": "honningbrew_meadery", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chillfurrow Farm is a modest agricultural holding located just east of Whiterun.You do not know anything else about this area.", + "display_name": "chillfurrow_farm", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Battle-Born Farm is a productive homestead located just east of Whiterun.You do not know anything else about this area.", + "display_name": "battle-born_farm", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pelagia Farm is a large and thriving homestead located south of Whiterun Stables.You do not know anything else about this area.", + "display_name": "pelagia_farm", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bleakwind Basin is a giants camp located west of Whiterun. The camp is home to a small group of giants and their mammoths.You do not know anything else about this area.", + "display_name": "bleakwind_basin", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Guldun Rock is a secluded giant camp located east of Whiterun.You do not know anything else about this area.", + "display_name": "guldun_rock", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Halted Stream Camp is a fortified bandit camp and iron mine located north of Whiterun.You do not know anything else about this area.", + "display_name": "halted_stream_camp", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Serpent's Bluff Redoubt is a Forsworn camp and ancient ruin located atop a steep incline southwest of Rorikstead.You do not know anything else about this area.", + "display_name": "serpents_bluff_redoubt", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sleeping Tree Camp is a remote giant camp located west of Whiterun.You do not know anything else about this area.", + "display_name": "sleeping_tree_camp", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Whiterun Imperial Camp is a temporary military outpost established in Whiterun Hold, east of Rorikstead.You do not know anything else about this area.", + "display_name": "whiterun_imperial_camp", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Whiterun Stormcloak Camp is a rugged military encampment in the eastern part of Whiterun Hold.You do not know anything else about this area.", + "display_name": "whiterun_stormcloak_camp", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Drelas' Cottage is an isolated dwelling nestled at the foot of a mountain in northern Whiterun Hold.You do not know anything else about this area.", + "display_name": "drelas_cottage", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lund's Hut is a modest shack situated northwest of Rorikstead.You do not know anything else about this area.", + "display_name": "lunds_hut", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "High Hrothgar is a secluded settlement perched roughly halfway up the Throat of the World, southeast of Whiterun. As a major landmark, it serves as the home of the Greybeards, the reclusive masters of the Thu'um, or The Voice. You do not know anything else about this area.", + "display_name": "high_hrothgar", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Greymoor is a medium-sized stronghold located west of Whiterun.You do not know anything else about this area.", + "display_name": "fort_greymoor", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fellglow Keep is a medium-sized, crumbling fortress located east-northeast of Whiterun.You do not know anything else about this area.", + "display_name": "fellglow_keep", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Western Watchtower is a small fortification located west of Whiterun.You do not know anything else about this area.", + "display_name": "western_watchtower", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Valtheim Towers is a pair of ancient Nordic towers located east of Whiterun.You do not know anything else about this area.", + "display_name": "valtheim_towers", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Whitewatch Tower is a modest fortification located north-northeast of Whiterun.You do not know anything else about this area.", + "display_name": "whitewatch_tower", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Silent Moons Camp is a small, ancient Nordic ruin nestled northwest of Whiterun.You do not know anything else about this area.", + "display_name": "silent_moons_camp", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dustman's Cairn is a medium-sized Nordic ruin located northwest of Whiterun.You do not know anything else about this area.", + "display_name": "dustmans_cairn", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hamvir's Rest is a somber and eerie Nordic graveyard located northwest of Whiterun.You do not know anything else about this area.", + "display_name": "hamvirs_rest", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Moldering Ruins is a hidden and foreboding site west of Rorikstead.You do not know anything else about this area.", + "display_name": "moldering_ruins", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skybound Watch Pass is a small, ancient Nordic ruin located northeast of Helgen.You do not know anything else about this area.", + "display_name": "north_skybound_watch", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hillgrund's Tomb is a small Nordic burial site nestled southwest of Windhelm.You do not know anything else about this area.", + "display_name": "hillgrunds_tomb", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Broken Fang Cave is a shadowy and ominous cavern located southeast of Rorikstead.You do not know anything else about this area.", + "display_name": "broken_fang_cave", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Swindler's Den is a small, secluded cave located east of Rorikstead.You do not know anything else about this area.", + "display_name": "swindlers_den", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Shimmermist Cave is a foreboding cave system located northeast of Whiterun.You do not know anything else about this area.", + "display_name": "shimmermist_cave", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Graywinter Watch is a small, shadowy cave located east of Whiterun.You do not know anything else about this area.", + "display_name": "graywinter_watch", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "White River Watch is a small, rugged cave situated east-southeast of Whiterun.You do not know anything else about this area.", + "display_name": "white_river_watch", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Darkshade is a small, shadowy cave located east of Whiterun.You do not know anything else about this area.", + "display_name": "darkshade", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Redoran's Retreat is a small, concealed cave located west-northwest of Whiterun.You do not know anything else about this area.", + "display_name": "redorans_retreat", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Ritual Stone is one of Skyrim's thirteen enigmatic Standing Stones, located east of Whiterun.You do not know anything else about this area.", + "display_name": "ritual_stone", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Guardian Stones are a revered trio of Standing Stones located east of Lake Ilinalta, along the road between Helgen and Riverwood in Falkreath Hold.You do not know anything else about this area.", + "display_name": "guardian_stones", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Greenspring Hollow is a shallow outdoor cave nestled west-northwest of Whiterun.You do not know anything else about this area.", + "display_name": "greenspring_hollow", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Throat of the World, known as Monahven (\"Mother Wind\") in the language of dragons, is the highest mountain in all of Tamriel, dominating the landscape of Skyrim. Towering above the northern province, it was once rivaled only by Red Mountain before the latter's catastrophic eruption in the Fourth Era. The mountain is home to the revered settlement of High Hrothgar, perched near its summit, where the Greybeards dwell in silence, dedicating their lives to the mastery of the Thu’um. The ascent to High Hrothgar is marked by the legendary \"7,000 steps,\" a path rich with Nordic lore, including tales of King Wulfharth rebuilding the 418th step.", + "display_name": "throat_of_the_world", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Gjukar's Monument is a solemn stone marker southeast of Rorikstead.You do not know anything else about this area.", + "display_name": "gjukar_monument", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Amren's House is a modest residence located in the Wind District of Whiterun.You do not know anything else about this area.", + "display_name": "amren's_house", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Arcadia's Cauldron is a bustling alchemy shop located in Whiterun's market district.You do not know anything else about this area.", + "display_name": "arcadia's_cauldron", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Bannered Mare is a welcoming inn located in the bustling market area of Whiterun's Plains District. You do not know who owns it.You do not know anything else about this area.", + "display_name": "the_bannered_mare", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Belethor's General Goods is a bustling shop located in Whiterun's market area within the Plains District.You do not know anything else about this area.", + "display_name": "belethor's_general_goods", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Breezehome is a cozy and practical residence available for purchase in Whiterun.You do not know anything else about this area.", + "display_name": "breezehome", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Carlotta Valentia's House is a modest residence located in the Wind District of Whiterun.You do not know anything else about this area.", + "display_name": "carlotta_valentia's_house", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonsreach Dungeon lies beneath the grand palace of Dragonsreach in Whiterun.You do not know anything else about this area.", + "display_name": "dragonsreach_dungeon", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Drunken Huntsman is a lively tavern and hunting supply store located in Whiterun. You do not know who owns it.You do not know anything else about this area.", + "display_name": "the_drunken_huntsman", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Gildergreen is a sacred tree located in the city of Whiterun, revered by worshippers of Kynareth and central to the city's Temple of Kynareth. You do not know anything else about this area.", + "display_name": "gildergreen", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heimskr's House is a modest dwelling located in the Winds District in Whiterun.You do not know anything else about this area.", + "display_name": "heimskr's_house", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "House Gray-Mane is the ancestral home of Clan Gray-Mane, one of Whiterun's most prominent and traditional families. Situated in the Wind District.You do not know anything else about this area.", + "display_name": "house_gray-mane", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The House of Clan Battle-Born is the residence of the influential Battle-Born family, situated in the Wind District of Whiterun. You do not know anything else about this area.", + "display_name": "house_of_clan_battle-born", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Jorrvaskr is the legendary mead hall and headquarters of the Companions, situated atop the steps leading from Whiterun's central plaza. You do not know anything else about this area.", + "display_name": "jorrvaskr", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Olava the Feeble's House is a quaint, modest home located in the southern part of Whiterun.You do not know anything else about this area.", + "display_name": "olava_the_feeble's_house", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Severio Pelagia's House is a modest residence located in the Plains District of Whiterun.You do not know anything else about this area.", + "display_name": "severio_pelagia's_house", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skyforge is an ancient and mystical forge located atop a rocky outcrop in Whiterun, near the Companions' hall, Jorrvaskr. Renowned for its unparalleled craftsmanship, it is tended by Eorlund Gray-Mane, widely regarded as the finest blacksmith in Skyrim. The forge’s searing heat is used to craft powerful weapons and armor, as well as to light the funeral pyres of fallen Companions, intertwining its purpose with the traditions and legacy of the order.", + "display_name": "skyforge", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Temple of Kynareth is a humble yet sacred sanctuary located in Whiterun, dedicated to the worship of Kynareth, the goddess of nature, wind, and the heavens. You do not know the head priest of this temple.You do not know anything else about this area.", + "display_name": "temple_of_kynareth", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Uthgerd's House is a modest residence situated in the Wind District of Whiterun.You do not know anything else about this area.", + "display_name": "uthgerd's_house", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Warmaiden's is a bustling smithy and weapons shop located just inside Whiterun's main gate. You do not know who owns it.You do not know anything else about this area.", + "display_name": "warmaiden's", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ysolda's House is a modest residence in Whiterun.You do not know anything else about this area.", + "display_name": "ysolda's_house", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bleak Falls Barrow is an ancient and foreboding ruin, steeped in local legend and mystery. located on the hills north of Riverwood. You do not know anything else about this area.", + "display_name": "bleakfalls_barrow", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bleak Falls Tower is a tall, imposing structure located atop the hill above Riverwood. The tower might be described as a crumbling, ancient ruin, possibly linked to the same mysterious history that surrounds Bleak Falls Barrow. You do not know anything else about this area.", + "display_name": "bleakfalls_tower", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cowflop Farm is located just outside Whiterun. You do not know anything else about this area.", + "display_name": "cowflop_farm", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dragon burial mound is somewhere in Whiterun. You do not know anything else about this area.", + "display_name": "dragon_mound_lone_mountain", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frostfruit Inn is a modest, welcoming establishment in Rorikstead You do not know anything else about this area.", + "display_name": "frostfruit_inn", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Guldun Rock Cave is near Guldun Rock in Whiterun. You do not know anything else about this area.", + "display_name": "guldun_rock_cave", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lemkil's Farm is a farm located in the town of Rorikstead. You do not know anything else about this area.", + "display_name": "lemkils_farm", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "On the rough path leading toward Sleeping Tree Camp is a group of standing stones and three Nordic Puzzle Pillars. No one knows what lies within You do not know anything else about this area.", + "display_name": "puzzling_pillar_ruins", + "emotion": "", + "importance": 0.4, + "location": "Whiterun", + "tags": [], + "type": "LOCATION" + } + ], + "entry_count": 140, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Locations - Whiterun", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/Oghma_-_Locations_-_Winterhold.sknpack b/oghma-sknpack/Oghma_-_Locations_-_Winterhold.sknpack new file mode 100644 index 0000000..bdcb292 --- /dev/null +++ b/oghma-sknpack/Oghma_-_Locations_-_Winterhold.sknpack @@ -0,0 +1,872 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Tamrielic lore from CHIM's Oghma Infinium — locations winterhold. Merges educated and common-knowledge entries graded by importance.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "Winterhold is a hold in northeast Skyrim, with its capital in the city of Winterhold, located on the Sea of Ghosts’ coast. The city is aligned with the Stormcloaks under Jarl Korir. Winterhold is the northernmost hold in Skyrim, with harsh weather and bleak landscapes, bordered by Eastmarch to the southeast, the Pale to the south and west, and the Sea of Ghosts to the north. The region is primarily composed of barren tundra, snowy mountains, and rocky coastlines.\n\nOnce a prosperous and vibrant city, Winterhold was devastated in the Great Collapse of 4E 122, in which most of the city was swallowed by the Sea of Ghosts. Today, only a few buildings remain standing near the College of Winterhold, which miraculously survived. The College, a fortress-like institution for mages, is perched on a rocky outcropping, sparking rumors among locals that its magical experiments caused the city's destruction. Despite this, the College maintains that the event was a result of the earthquake in Vivec and the eruption of Red Mountain in Morrowind. The remaining residents can be found at The Frozen Hearth, where they often drown their sorrows. The sparse wildlife of Winterhold includes wolves, snow bears, and the occasional ice wraith, with little plant life beyond snowberry bushes and mountain flowers. The hold is traversed by a single main road leading to the city, with another path leading to the ancient ruins of Saarthal.", + "display_name": "winterhold", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The College of Winterhold is a renowned school for magic located in the city of Winterhold, perched on a rocky outcrop, and reachable only by crossing a narrow stone bridge after the Great Collapse. Though it functions similarly to the Mages Guild, the College is an independent institution, separate from the Guild, and has a storied history dating back to the First Era. It is believed to have been founded by the legendary mage Shalidor, though this claim, like many others associated with him, is shrouded in mystery. The College boasts documents from as far back as the late Second Era and houses some of Tamriel's most valuable arcane knowledge.\n\nA selective institution, the College admits only those who prove their aptitude in the magical arts. Once enrolled, students enjoy greater freedom in their studies, including the practice of controversial magic such as Necromancy. The College's central building, the Hall of the Elements, serves as the site for all types of magical practice and contains the famous Arcanaeum library. The Arch-Mage’s quarters are located within, while students and faculty are housed in separate accommodations. Beneath the College lies the Midden, a mysterious underground area that holds many of the College's secrets. The Eye of Shalidor, a symbol of the institution, is displayed prominently across the campus, honoring the College's ancient roots.\n\nNotable residents of the College include the Arch-Mage Savos Aren, Master-Wizard Mirabelle Ervine, and various experts and trainers in different magical disciplines, including Faralda (Destruction), Tolfdir (Alteration), and Phinis Gestor (Conjuration). The College also hosts a range of followers, such as Brelyna Maryon and J'zargo, alongside other figures like Enthir, a general goods vendor, and the enigmatic Ancano, a Thalmor advisor.", + "display_name": "college_of_winterhold", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Hall of Countenance serves as the primary living and sleeping quarters for many of the higher-ranked mages at the College of Winterhold. Located within this hall are the personal cubicles and beds of notable mages, including Drevis Neloren, the master trainer of Illusion, and Faralda, the master trainer of Destruction. Along with the Hall of Attainment, it is one of the two main sleeping areas for students and faculty at the College.\n\nThe hall contains several notable features: a trapdoor leading to the Midden, the underground area housing some of the College's deepest secrets, as well as an arcane enchanter and an alchemy lab on the upper floor. Drevis Neloren’s bedroom on the lower floor also holds an alchemy lab, allowing for easy access to alchemical experimentation. The upper floor is home to Colette Marence, a Restoration expert, and Sergius Turrianus, an expert in Enchanting, both of whom also provide their respective magical training to students.", + "display_name": "hall_of_countenance", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Hall of Attainment is the primary sleeping quarters for students at the College of Winterhold, housing many of the College's aspiring mages. Alongside the Hall of Countenance, it is one of the two main dormitory halls at the College. The hall provides living spaces for students who are further along in their magical training.\n\nOn the ground floor, students such as Brelyna Maryon, J'zargo, and Onmund can be found, alongside Tolfdir, the master trainer of Alteration. The upper floor is home to several notable figures, including Arniel Gane, a mysterious mage with his own secrets, Enthir, a general goods vendor and fence, and Mirabelle Ervine, the College’s Master-Wizard. Nirya, another resident, is also found on the upper floor.", + "display_name": "hall_of_attainment", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Hall of the Elements is a grand training and meeting space within the College of Winterhold, designed for the study and practice of magical arts. This large, circular room is used not only for spell casting training but also for classes, lectures, and official meetings among the College's faculty and students. A pair of massive wooden doors serve as the main entrance, leading into an antechamber. From there, one can access the Arch-Mage's Quarters to the northwest or the Arcanaeum, the College’s renowned library, to the southeast.\n\nThe hall itself boasts a high ceiling supported by a ring of imposing pillars, with a series of wooden benches surrounding the perimeter for seating. Small light spheres are placed between every two benches, illuminating the room with a soft glow. At the center of the hall is a powerful focus point, where magical energy rises upward toward the ceiling, acting as a visual representation of the College’s profound connection to the arcane. The College symbol is intricately worked into the design of the gates, further emphasizing the importance of this space within the institution.", + "display_name": "hall_of_the_elements", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Midden is a medium-sized dungeon located beneath the College of Winterhold, housing both the Atronach Forge and the mysterious Augur of Dunlain, a former mage of the College. The dungeon is a place of arcane secrets, filled with ancient magic and hidden knowledge.\n\nThere are three entrances to the Midden: a trapdoor located in the northern corner of the College courtyard, another at the base of the stairwell in the Hall of Countenance, and a hidden cave in the northern face of the rocky outcropping where the College is situated. The Augur of Dunlain, a spectral figure, resides in the depths of the Midden.", + "display_name": "the_midden", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Whistling Mine is a small iron mine and settlement located southeast of Winterhold, along the southern road that connects Winterhold to Windhelm, at the base of the mountains. The mine is nestled near the northern edge of Stillborn Cave. The settlement is home to a handful of Nord warriors who are trying to make a living through mining, though they face the harsh conditions of the region.\n\nAmong the residents are Angvid, Badnir, Gunding, and Horgar—each Nords attempting to carve out a livelihood in the tough and unforgiving environment of Whistling Mine. The mine itself serves as a modest source of iron, though the locals' struggles to thrive in the area highlight the challenges posed by the surrounding terrain and climate.", + "display_name": "whistling_mine", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Winterhold Imperial Camp is an Imperial outpost located in Winterhold Hold, positioned southeast of Dawnstar and northwest of Frostflow Lighthouse. The camp serves as a strategic base for the Imperials in the region, providing support and defense in this distant part of Skyrim.\n\nAt the heart of the camp is Legate Sevan Telendas, a high-ranking Imperial officer who oversees the operations and maintains order within the camp.", + "display_name": "winterhold_imperial_camp", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Winterhold Stormcloak Camp is a Stormcloak encampment located in Winterhold Hold, situated northeast of Windhelm and south of Snow Veil Sanctum. The camp serves as a base of operations for the Stormcloaks in this northern region of Skyrim, where they continue their fight for independence against the Imperial forces.\n\nThe camp is led by Commander Kai Wet-Pommel, a determined and battle-hardened Stormcloak officer.", + "display_name": "winterhold_stormcloak_camp", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Driftshade Refuge is a medium-sized fort located southeast of Dawnstar and southwest of Frostflow Lighthouse in the Winterhold region. The fort, now largely dilapidated and nearly lost beneath heavy snowdrifts, serves as the base of operations for the Silver Hand, a notorious group of werewolf hunters. Its remote location in the mountains, along with its near-erasure from local memory, makes it an ideal hideout for the group’s clandestine activities.\n\nOnce a much larger and more imposing structure, Driftshade Refuge still bears the remnants of its former grandeur, with broken walls scattered a short distance from the only remaining intact building.", + "display_name": "driftshade_refuge", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Fellhammer is a medium-sized fort and iron mine located south of Dawnstar, in the Winterhold region. It sits off the paved road that leads southwest to Fort Dunstad, near the point where the road turns east after passing Red Road Pass. A dirt path branches off from the road at this turn, leading eastward to the fort.\n\nOnce a strategic military outpost, the fort is now occupied by a group of bandits who have taken over the iron mine and its surrounding area. These bandits use the fort as a hideout.", + "display_name": "fort_fellhammer", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Kastav is a medium-sized fort located south of Winterhold, situated in a mountain pass that spans almost the entire width of the pass, leaving just enough room for the Whiterun-Winterhold road to pass through. The fort’s impressive exterior takes full advantage of the natural features of the mountain, featuring numerous lookout platforms and an extensive ramp system for easy access to its high walls.\n\nOnce occupied by warlocks, the fort is now overrun by skeletons who patrol its walls and grounds. These undead guardians make the fort a dangerous place for any who dare approach.", + "display_name": "fort_kastav", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Snowpoint Beacon is a small tower located southwest of Winterhold, in the Winterhold region, and east of Fort Fellhammer. The tower is perched on a rocky outcrop, and its main path approaches from the north, where stone steps lead up to a doorway. The tower has been taken over by bandits, who use it as a base of operations, making it a dangerous location for travelers.\n\nThe tower itself, though small, is strategically placed, offering a commanding view of the surrounding area.", + "display_name": "snowpoint_beacon", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ironbind Barrow is a small Nordic ruin located southwest of Winterhold, north of Nightgate Inn. This ancient tomb is home to draugr, the undead guardians of Nordic burial sites, and serves as the resting place for the powerful Warlord Gathrik. The ruin is largely forgotten, hidden in the wilderness and surrounded by the harsh environment of Skyrim’s northern reaches.\n\nThe tomb itself contains the remains of Warlord Gathrik, a once-great warrior, whose spirit still lingers to protect the barrow from intruders.", + "display_name": "ironbind_barrow", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Saarthal is a medium-sized Nordic ruin located southwest of Winterhold. As the first Nord settlement in Skyrim, Saarthal holds significant historical and archaeological value, particularly to the College of Winterhold, who is actively excavating the site in search of ancient artifacts. The ruins are believed to have a deeper significance, potentially tied to a powerful past.\n\nThe original settlement of Saarthal was destroyed during the Merethic Era in an event known as the Night of Tears, where elves launched a brutal attack on the city. The incident, as detailed in the book Night of Tears, suggests that the elven assault was driven by a desire to control a powerful item hidden beneath the city.", + "display_name": "saarthal", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Snow Veil Sanctum is a medium-sized Nordic ruin located north-northeast of Windhelm, in the Winterhold region, and south of Bleakcoast Cave. The ruin is home to draugr, the ancient undead guardians that protect Nordic tombs, making it a dangerous and foreboding site for any who dare enter.", + "display_name": "snow_veil_sanctum", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ysgramor's Tomb is a small Nordic ruin located northwest of Winterhold, in the Winterhold region, and east of Pilgrim's Trench. The tomb is the final resting place of Ysgramor, a legendary figure known as Ysgramor the Invader, or \"the harbinger of us all.\" Ysgramor was an Atmoran who fled civil war in Atmora and arrived in Tamriel long before recorded history. He is often regarded as the first human ruler and king of Skyrim, playing a foundational role in the region's history.\n\nThe tomb is a place of great significance, tied to the origins of Skyrim and the early history of the Nords. As a revered figure, Ysgramor's legacy lives on, and his tomb is a site of both reverence and mystery.", + "display_name": "ysgramor's_tomb", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Journeyman's Nook is a small outdoor Nordic ruin located southeast of Winterhold, in the Winterhold region, and northwest of Snow Veil Sanctum. Despite its modest size, the ruin is home to a bandit who has taken shelter within its crumbling walls, using it as a hideout.\n\nThe site is relatively isolated, set against the harsh northern landscape, making it a perfect place for the bandit to remain hidden from the law.", + "display_name": "journeyman's_nook", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skytemple Ruins is a small outdoor Nordic ruin located north of the College of Winterhold, in the Winterhold region, and east of Ysgramor's Tomb. The ruins are perched atop a large glacial mound on an island off the northern coast of Skyrim, offering a dramatic and isolated setting.\n\nThe sparse remains of the temple are home to draugr and skeletons, the undead guardians of the site, making it a dangerous location for those who venture into its depths.", + "display_name": "skytemple_ruins", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alftand is a large Dwarven ruin located southwest of Winterhold, in the Winterhold region, and east of Driftshade Refuge. This ancient and sprawling ruin is one of many remnants of the Dwarven civilization, now abandoned and overrun by various dangerous creatures.\n\nThe ruin is filled with the remnants of Dwarven architecture and technology, showcasing the advanced craftsmanship of the long-lost Dwemer.", + "display_name": "alftand", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Shrine of Azura is a massive sacred site dedicated to Azura, the Daedric Prince of Dawn and Dusk. It is located south of Winterhold, perched atop the summit of a tall mountain. The path leading to the shrine is found not far south of Whistling Mine, where it rises sharply to the west. To reach the shrine, travelers must head southeast along the path from Winterhold, heading in the direction of Windhelm. On clear days one can enjoy sweeping views from the summit, with expansive vistas stretching in all directions.\n\nThe shrine itself is situated atop a stone fort-like structure, believed to have been built by the Dunmer, who revere Azura. A massive statue of Azura dominates the site, with an altar positioned in front of it. Aranea Ienith, a devout worshiper of Azura, spends her time at the altar, offering prayers when she is not following you. To the right of the altar, a small camp lies below on a lower level.", + "display_name": "shrine_of_azura", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bleakcoast Cave is a small cave located southeast of Winterhold, directly east of the Shrine of Azura, in the Winterhold region. The cave is home to a number of frost trolls, making it a dangerous location for adventurers who may venture inside.", + "display_name": "bleakcoast_cave", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Yngvild is a medium-sized cave located east-northeast of Dawnstar, in the Winterhold region, and south-southeast of Hela's Folly. The cave is home to draugr, the undead guardians that protect ancient Nordic tombs, making it a perilous site for adventurers.", + "display_name": "yngvild", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hob's Fall Cave is a small cave located along the coast between Winterhold and Dawnstar, in the Winterhold region. The cave is relatively isolated, nestled within the rugged coastal landscape. It is rumored that warlocks have taken over the cave.", + "display_name": "hob's_fall_cave", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Septimus Signus's Outpost is a small cave located north of the College of Winterhold, in the Winterhold region, and northeast of Ysgramor's Tomb. This remote and secluded outpost serves as the residence of Septimus Signus, a reclusive and eccentric scholar of the Dwemer and their ancient knowledge.\n\nThe outpost consists of a single zone, known as Septimus Signus's Outpost, where the scholar conducts his studies on the enigmatic Dwemer and their lost artifacts.", + "display_name": "septimus_signus's_outpost", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stillborn Cave is a small cave located north-northwest of Windhelm, across the mountains from the city in the Winterhold region. The cave is inhabited by falmer, the twisted, blind, subterranean elves, making it a dangerous location for anyone who ventures inside. \n\nThe entrance to the cave leads into an ice tunnel that stretches southward, with the path soon turning west. As the tunnel continues, an ice melt runoff creates a rapid stream flowing from east to west, cutting through the cave.", + "display_name": "stillborn_cave", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sightless Pit is a medium-sized cave located south-southwest of Winterhold, in the Winterhold region, and south-southeast of Saarthal. The cave is inhabited by Falmer, the blind and hostile subterranean elves, who make their homes in dark and forsaken places like this one.", + "display_name": "sightless_pit", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hela's Folly is a shipwreck located northeast of Dawnstar, in the Winterhold region, and northwest of The Tower Stone. The wreck lies along the rugged coast, adding to the eerie and desolate landscape of the area. The ship's remains are a stark reminder of the dangerous waters off Skyrim's northern coast. There are rumors of an Argonian who have taken refugee there.", + "display_name": "hela's_folly", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Wreck of The Pride of Tel Vos is a shipwreck located on a small island east of Winterhold, due east of the city. The wreck is home to a small group of bandits who have set up camp around the ruined vessel, using it as their hideout.", + "display_name": "wreck_of_the_pride_of_tel_vos", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Wreck of the Winter War is a shipwreck located east-southeast of Snow Veil Sanctum and far northeast of Windhelm, in the Winterhold region. The wreck lies along the rugged and icy coastline, a remnant of a tragic event lost to time. The area is remote, with few travelers daring to approach the wreck due to its harsh environment and the treacherous terrain surrounding it. Situated between Yngol Barrow to the southwest and Snow Veil Sanctum to the northwest, the wreck serves as a mysterious and eerie landmark in the region.", + "display_name": "wreck_of_the_winter_war", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pilgrim's Trench is a deep underwater ravine located northwest of Winterhold, along the coast. The trench is known for containing four submerged shipwrecks, remnants of vessels that met their untimely end in the treacherous waters of the Sea of Ghosts. It is recommended to bring an underwater breathing potion if you wish to explore the wrecks.", + "display_name": "pilgrim's_trench", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mount Anthor is a dragon lair located on a mountaintop south-southwest of Winterhold, in the Winterhold region. The lair is perched high on the mountain, offering a commanding view of the surrounding landscape. It lies north of Yorgrim Overlook, making it accessible through the rugged terrain of the region.", + "display_name": "mount_anthor", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Serpent Stone is one of the thirteen Standing Stones scattered across Skyrim, located directly east of the College of Winterhold and northeast of the Wreck of The Pride of Tel Vos, on a small island.\n\nWhen activated, the Serpent Stone grants the player the ability to use a ranged attack that paralyzes a target for a few seconds while dealing damage. The effect is powerful and useful, particularly for disabling enemies from a distance.", + "display_name": "the_serpent_stone", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Tower Stone is one of the thirteen Standing Stones scattered across Skyrim, located about halfway between Dawnstar and Winterhold, on a high snow-covered cliff north-northeast of Hob's Fall Cave.\n\nWhen activated, the Tower Stone grants the person the ability to automatically open an Expert-level or lower lock once per day.", + "display_name": "the_tower_stone", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frostflow Lighthouse is a lighthouse located west of Winterhold, on the northern coast of Skyrim. It sits on a headland, offering a commanding view of the coastline between Dawnstar and Winterhold. The lighthouse is home to a Redguard family who recently purchased it, you do not know their names. However they have not been seen from in weeks.", + "display_name": "frostflow_lighthouse", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wayward Pass is a mountain pass located in the southwest of Winterhold, nestled between the ancient Dwarven ruin of Alftand and Nightgate Inn. The pass is known for being the resting place of an ancient traveler, whose tomb is marked by a shrine to Arkay, the God of Life and Death.", + "display_name": "wayward_pass", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Birna's Oddments is a general goods store located in the heart of Winterhold, nestled between the Jarl's Longhouse and Kraldar's House. This two-story building is run by Birna, a Nord pawnbroker known for her wide range of goods, from mundane items to rare treasures.\n\nBirna lives in the store with her brother, Ranmir, a troubled Nord citizen of Winterhold. While Birna focuses on her business, Ranmir spends much of his time drinking away his sorrows in The Frozen Hearth, the local tavern.", + "display_name": "birna's_oddments", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kraldar's House is located in Winterhold, situated as the last building on the left before the bridge leading to the College of Winterhold. The house serves as the residence of Kraldar, a local figure, and his manservant, Thonjolf.", + "display_name": "kraldar's_house", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Frozen Hearth is a cozy inn located in the heart of Winterhold, one of the few inhabited buildings left in the city. Situated directly across the street from the Jarl's Longhouse, it serves as a central gathering point for the remaining residents of Winterhold, offering a warm respite from the harsh northern climate.\n\nThe inn is run by Dagur, a Nord innkeeper, alongside his wife Haran, who operates a food stall in the town. Together, they manage The Frozen Hearth, providing food, drink, and shelter to the people of Winterhold. Their daughter, Eirid, also resides in the inn, with her parents working together to maintain the establishment and serve the few souls left in the dwindling city.", + "display_name": "the_frozen_hearth", + "emotion": "", + "importance": 0.75, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Winterhold is a hold in northeast Skyrim, with its capital in the city of Winterhold, located on the Sea of Ghosts’ coast. The city is aligned with the Stormcloaks under Jarl Korir. Winterhold is the northernmost hold in Skyrim, with harsh weather and bleak landscapes, bordered by Eastmarch to the southeast, the Pale to the south and west, and the Sea of Ghosts to the north. The region is primarily composed of barren tundra, snowy mountains, and rocky coastlines.\n\nOnce a prosperous and vibrant city, Winterhold was devastated in the Great Collapse of 4E 122, in which most of the city was swallowed by the Sea of Ghosts. Today, only a few buildings remain standing near the College of Winterhold, which miraculously survived. The College, a fortress-like institution for mages, is perched on a rocky outcropping, sparking rumors among locals that its magical experiments caused the city's destruction. The hold is traversed by a single main road leading to the city, with another path leading to the ancient ruins of Saarthal.You do not know anything else about this area.", + "display_name": "winterhold", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The College of Winterhold is a renowned school for magic located in the city of Winterhold, perched on a rocky outcrop, and reachable only by crossing a narrow stone bridge after the Great Collapse. Though it functions similarly to the Mages Guild, the College is an independent institution, separate from the Guild, and has a storied history dating back to the First Era. \n\nA selective institution, the College admits only those who prove their aptitude in the magical arts. \n\nYou do not know anything else about this area.", + "display_name": "college_of_winterhold", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Hall of Countenance is one of the areas in the College. You do not know anything else. about the area.You do not know anything else about this area.", + "display_name": "hall_of_countenance", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Hall of Attainment is one of the areas in the College. You do not know anything else about the area.You do not know anything else about this area.", + "display_name": "hall_of_attainment", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Hall of the Elements is one of the areas in the College. You do not know anything else about the area.You do not know anything else about this area.", + "display_name": "hall_of_the_elements", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Midden is rumored to be a hidden cave under the College of Winterhold. You do not know anything else about the area.You do not know anything else about this area.", + "display_name": "the_midden", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Whistling Mine is a small iron mine and settlement located southeast of Winterhold. You do not know who works here.You do not know anything else about this area.", + "display_name": "whistling_mine", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Winterhold Imperial Camp is an Imperial outpost located in Winterhold Hold, positioned southeast of Dawnstar. You do not know who is stationed here.You do not know anything else about this area.", + "display_name": "winterhold_imperial_camp", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Winterhold Stormcloak Camp is a Stormcloak encampment located in Winterhold Hold, situated northeast of Windhelm. You do not know who is stationed here.You do not know anything else about this area.", + "display_name": "winterhold_stormcloak_camp", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Driftshade Refuge is a medium-sized fort located southeast of Dawnstar in the Winterhold region. The fort, now largely dilapidated and nearly lost beneath heavy snowdrifts.You do not know anything else about this area.", + "display_name": "driftshade_refuge", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Fellhammer is a medium-sized fort and iron mine located south of Dawnstar, in the Winterhold region.You do not know anything else about this area.", + "display_name": "fort_fellhammer", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fort Kastav is a medium-sized fort located south of Winterhold.You do not know anything else about this area.", + "display_name": "fort_kastav", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Snowpoint Beacon is a small tower located southwest of Winterhold, in the Winterhold region.You do not know anything else about this area.", + "display_name": "snowpoint_beacon", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ironbind Barrow is a small Nordic ruin located southwest of Winterhold, north of Nightgate Inn. You do not know anything else about this area.", + "display_name": "ironbind_barrow", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Saarthal is a medium-sized Nordic ruin located southwest of Winterhold, As the first Nord settlement in Skyrim, Saarthal holds significant historical and archaeological value, particularly to the College of Winterhold, who is actively excavating the site in search of ancient artifacts. You do not know anything else about this area.", + "display_name": "saarthal", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Snow Veil Sanctum is a medium-sized Nordic ruin located north-northeast of Windhelm, in the Winterhold region.You do not know anything else about this area.", + "display_name": "snow_veil_sanctum", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ysgramor's Tomb is a small Nordic ruin located northwest of Winterhold, in the Winterhold region. The tomb is the final resting place of Ysgramor, a legendary figure known as Ysgramor the Invader, or \"the harbinger of us all.\" Ysgramor was an Atmoran who fled civil war in Atmora and arrived in Tamriel long before recorded history. He is often regarded as the first human ruler and king of Skyrim, playing a foundational role in the region's history.\nYou do not know anything else about this area.", + "display_name": "ysgramor's_tomb", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Journeyman's Nook is a small outdoor Nordic ruin located southeast of Winterhold, in the Winterhold region.You do not know anything else about this area.", + "display_name": "journeyman's_nook", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Skytemple Ruins is a small outdoor Nordic ruin located north of the College of Winterhold.You do not know anything else about this area.", + "display_name": "skytemple_ruins", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Alftand is a large Dwarven ruin located southwest of Winterhold, in the Winterhold region.You do not know anything else about this area.", + "display_name": "alftand", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Shrine of Azura is a massive sacred site dedicated to Azura, the Daedric Prince of Dawn and Dusk. It is located south of Winterhold, perched atop the summit of a tall mountain.\n\nA massive statue of Azura dominates the site that can be seen from almost anywhere in Skyrim.You do not know anything else about this area.", + "display_name": "shrine_of_azura", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bleakcoast Cave is a small cave located southeast of Winterhold, directly east of the Shrine of Azura, in the Winterhold region. You do not know anything else about this area.", + "display_name": "bleakcoast_cave", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Yngvild is a medium-sized cave located east-northeast of Dawnstar, in the Winterhold region.\nYou do not know anything else about this area.", + "display_name": "yngvild", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hob's Fall Cave is a small cave located along the coast between Winterhold and Dawnstar, in the Winterhold region.You do not know anything else about this area.", + "display_name": "hob's_fall_cave", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Septimus Signus's Outpost is a small cave located somewhere north of the College of Winterhold, in the Winterhold region. It is rumored that Septimus is some crazy Imperial scholar who is looking for some weird artifact in the cave. You do not know anything else about this area.", + "display_name": "septimus_signus's_outpost", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stillborn Cave is a small cave located north-northwest of Windhelm, across the mountains from the city in the Winterhold region. You do not know anything else about this area.", + "display_name": "stillborn_cave", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sightless Pit is a medium-sized cave located south-southwest of Winterhold, in the Winterhold region.You do not know anything else about this area.", + "display_name": "sightless_pit", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hela's Folly is a shipwreck located northeast of Dawnstar, in the Winterhold region.You do not know anything else about this area.", + "display_name": "hela's_folly", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Wreck of The Pride of Tel Vos is a shipwreck located on a small island east of Winterhold, due east of the city. You do not know anything else about this area.", + "display_name": "wreck_of_the_pride_of_tel_vos", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Wreck of the Winter War is a shipwreck located far northeast of Windhelm, in the Winterhold region. You do not know anything else about this area.", + "display_name": "wreck_of_the_winter_war", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pilgrim's Trench is a deep underwater ravine located northwest of Winterhold, along the coast. You do not know anything else about this area.", + "display_name": "pilgrim's_trench", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mount Anthor is a dragon lair located on a mountaintop south-southwest of Winterhold, in the Winterhold region. You do not know anything else about this area.", + "display_name": "mount_anthor", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "\"The Serpent Stone is one of the thirteen Standing Stones scattered across Skyrim, located directly east of the College of Winterhold.\n\nWhen activated, the Serpent Stone grants the player the ability to use a ranged attack that paralyzes a target for a few seconds while dealing damage. The effect is powerful and useful, particularly for disabling enemies from a distance. You do not know anything else about this area.", + "display_name": "the_serpent_stone", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Tower Stone is one of the thirteen Standing Stones scattered across Skyrim, located about halfway between Dawnstar and Winterhold.\n\nWhen activated, the Tower Stone grants the person the ability to automatically open an Expert-level or lower lock once per day. You do not know anything else about this area.", + "display_name": "the_tower_stone", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frostflow Lighthouse is a lighthouse located west of Winterhold, on the northern coast of Skyrim. The lighthouse is home to a Redguard family who recently purchased it, you do not know their names. However they have not been seen from in weeks.You do not know anything else about this area.", + "display_name": "frostflow_lighthouse", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wayward Pass is a mountain pass located in the southwest of Winterhold.You do not know anything else about this area.", + "display_name": "wayward_pass", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Birna's Oddments is a general goods store located in the heart of Winterhold. You only know Birna runs the store.You do not know anything else about this area.", + "display_name": "birna's_oddments", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kraldar's House is located in Winterhold. You dot know who Kraldar is.You do not know anything else about this area.", + "display_name": "kraldar's_house", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The Frozen Hearth is a cozy inn located in the heart of Winterhold, one of the few inhabited buildings left in the city. You do not know who runs the Inn.You do not know anything else about this area.", + "display_name": "the_frozen_hearth", + "emotion": "", + "importance": 0.4, + "location": "Winterhold", + "tags": [], + "type": "LOCATION" + } + ], + "entry_count": 78, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Locations - Winterhold", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/Oghma_-_Spells.sknpack b/oghma-sknpack/Oghma_-_Spells.sknpack new file mode 100644 index 0000000..8da32ca --- /dev/null +++ b/oghma-sknpack/Oghma_-_Spells.sknpack @@ -0,0 +1,5976 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Tamrielic lore from CHIM's Oghma Infinium — spells. Merges educated and common-knowledge entries graded by importance.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction enchantments that drain health from the target and transfer it to the wielder. This effect can be applied through custom enchanting and is also found on enchanted weapons, combining offense and self-healing.", + "display_name": "absorb_health", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction enchantments that siphon magicka from the target, replenishing the wielder;s reserves. This effect can be applied through custom enchanting and is also found on enchanted items, making it particularly effective against enemy spellcasters.", + "display_name": "absorb_magicka", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction enchantments that drain stamina from the target, restoring it to the wielder. This effect can be applied through custom enchanting and is also found on enchanted gear, ensuring sustained performance in prolonged physical combat.", + "display_name": "absorb_stamina", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Animal Allegiance is a Shout that calls upon the beasts of the wild to fight in your defense, with the three words of power being Raan (Animal), which summons the animals; Mir (Allegiance), which binds them to your cause; and Tah (Pack), which rallies them into a united group to fight alongside you.", + "display_name": "animal_allegiance", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are defensive Alteration spells that create barriers around the caster, temporarily increasing their armor rating to reduce incoming physical damage. This effect is only available as a spell, offering a reliable option for mages seeking enhanced protection in combat.", + "display_name": "armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Arniel's Convection is a Destruction spell that creates a stream of fire around the caster, dealing fire damage to nearby enemies over time. It requires an Apprentice skill level to cast.", + "display_name": "arniel's_convection", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ash Rune is an Alteration from Solstheim spell that places a rune on a surface, which explodes when triggered, immobilizing targets in a pile of ash for a short duration. It requires an Adept skill level to cast.", + "display_name": "ash_rune", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Alteration spells that encase the target in hardened volcanic ash, immobilizing them completely while rendering them impervious to damage for the duration of the spell. This effect is exclusively available as a spell and highlights the advanced control of skilled Alteration mages.", + "display_name": "ash_shell", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ataxia is a disease that causes generalized pain, muscle stiffness, paleness, and affects muscle coordination with complex tasks. It can be contracted from slaughterfish, bears, zombies, skeevers, and alit. If left untreated, it weakens the bones and can eventually lead to death, making actions like picking locks and pockets harder.", + "display_name": "ataxia", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Aura Whisper is a Shout that is not a traditional shout but a whisper, revealing the life forces of all nearby creatures. The three words of power in this Shout are Laas (Life), which allows you to sense the life forces of those around you; Yah (Seek), which helps you locate them; and Nir (Hunt), which aids in tracking them down.", + "display_name": "aura_whisper", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bane of the Undead is a Restoration spell that significantly damages undead creatures in the area, while healing the caster if the target is undead. It requires an Expert skill level to cast.", + "display_name": "bane_of_the_undead", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are defensive Conjuration spells that forcibly return summoned Daedra to Oblivion, severing their connection to Nirn. This effect is available as a spell and can also be found on enchanted weapons, making it a critical countermeasure against conjured threats.", + "display_name": "banish", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Banish Daedra is a Conjuration spell that sends a summoned Daedra back to Oblivion, effectively dispelling it. It requires an Adept skill level to cast.", + "display_name": "banish_daedra", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Battle Fury is a Shout that enchants the weapons of your nearby allies, allowing them to attack faster. The three words of power in this Shout are Mid (Loyal), which strengthens the bond of your allies, Vur (Valor), which imbues them with courage and power, and Shaan (Inspire), which increases their speed and effectiveness in combat.", + "display_name": "battle_furry", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Become Ethereal is a Shout that transforms your form to one that cannot harm or be harmed, as it reaches out to the Void. The three words of power in this Shout are Feim (Fade), which allows you to slip from the physical world; Zii (Spirit), which grants you a ghostly form; and Gron (Bind), which anchors you in a state where you are untouchable by physical harm.", + "display_name": "become_ethereal", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bend Will is a Shout that allows you to bend the very stones to your will, and as it grows stronger, animals, people, and even dragons are compelled to obey your commands. The three words of power in this Shout are Gol (Earth), which gives you control over the land itself; Hah (Mind), which influences the minds of others; and Dov (Dragon), which allows you to command even dragons to do your bidding.", + "display_name": "bend_will", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Black-Heart Blight is an acute disease that affects strength and endurance, potentially draining the victim's carry weight. It can be contracted from corprus beasts, other blight monsters, or zombies, allowing the disease to persist even after the end of the Blight in 3E 427. The disease causes lasting effects, weakening the afflicted over time.", + "display_name": "black_heart_blight", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blizzard is a Destruction spell that summons a powerful snowstorm, dealing continuous frost damage to all enemies within its area of effect. It requires a Master skill level to cast.", + "display_name": "blizzard", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bone Break Fever is a disease contracted from rats and bears, causing a loss of strength and stamina. It initially drains your stamina and progresses to more severe stages, draining up to even more stamina at its most crippling. If left untreated, the disease worsens, significantly reducing stamina and hindering the victim's physical capabilities.", + "display_name": "bone_break_fever", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bound Battleaxe is a Conjuration spell that summons a magical battleaxe made of Daedric energy, serving as a temporary two-handed weapon. It requires an Apprentice skill level to cast.", + "display_name": "bound_battleaxe", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bound Bow is a Conjuration spell that summons a magical bow made of Daedric energy along with a quiver of ethereal arrows, serving as a temporary ranged weapon. It requires an Adept skill level to cast.", + "display_name": "bound_bow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bound Dagger is a Conjuration spell that summons a magical dagger made of Daedric energy, which functions as a temporary weapon. It requires a Novice skill level to cast.", + "display_name": "bound_dagger", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bound Sword is a Conjuration spell that summons a magical sword made of Daedric energy, serving as a temporary weapon. It requires an Apprentice skill level to cast.", + "display_name": "bound_sword", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Conjuration spells that summon spectral weapons, such as swords or bows, crafted from Daedric energy. This effect is only available as a spell, offering battlemages weightless, unbreakable weapons that cannot be disarmed.", + "display_name": "bound_weapon", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Brain Rot is a disease contracted from zombies and hagravens, causing a gradual loss of strength and magicka. As the disease progresses, it severely weakens the victim’s magical abilities and overall physical condition. If left untreated, the disease can lead to debilitating effects, leaving the afflicted unable to effectively use their magicka and becoming significantly weaker.", + "display_name": "brain_rot", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction enchantments linked to the Forsworn and their Briarheart warriors. This effect binds life force and magical energy to a harvested briar heart and is available only on enchanted gear, amplifying the wielder;s power.", + "display_name": "briarheart_geis", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Brown Rot is a mild disease that affects a victim's strength and behavior, causing symptoms such as necrosis and sleeplessness. It can be contracted from draugr and other undead creatures. As the disease progresses, it reduces the effectiveness of light and heavy armor, making it less able to prevent damage, and disrupts sleep, leaving the victim increasingly restless.", + "display_name": "brown_rot", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Call Dragon is a Shout that summons a dragon to aid you in your time of need, specifically calling upon Odahviing. The three words of power in this Shout are Od (Snow), which represents the call to the dragon; Ah (Hunter), which signifies the summoning of a creature of the wild; and Viing (Wing), which invokes the dragon's wings to bring it forth.", + "display_name": "call_dragon", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Call of Valor is a Shout that summons the valiant heroes of Sovngarde to aid you, transcending space and time. The three words of power in this Shout are Hun (Hero), which calls upon the brave souls of heroes; Kaal (Champion), which invokes the might of champions; and Zoor (Legend), which summons legendary figures to fight beside you.", + "display_name": "call_of_valour", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Call to Arms is an Illusion spell that boosts the combat abilities of nearby allies, increasing their stamina, health, and attack power for a short period. It requires an Adept skill level to cast.", + "display_name": "call_to_arms", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Calm is an Illusion spell that pacifies a target, reducing their hostility and preventing them from attacking. It requires an Apprentice skill level to cast.", + "display_name": "calm", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Candlelight is an Alteration spell that creates a hovering orb of light above the caster, illuminating the immediate area. It requires a Novice skill level to cast.", + "display_name": "candlelight", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chain Lightning is a Destruction spell that releases a bolt of lightning, which arcs to multiple nearby enemies, dealing shock damage to each target. It requires an Adept skill level to cast.", + "display_name": "chain_lightning", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction enchantments that deal randomized elemental damage—fire, frost, or shock—on each strike. This effect can be applied through custom enchanting and is also found on enchanted items, offering versatility in combat.", + "display_name": "chaos_damage", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Circle of Protection is a Restoration spell that creates a protective barrier on the ground, which repels undead and daedra from entering the area while healing allies within it. It requires an Expert skill level to cast.", + "display_name": "circle_of_protection", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Clairvoyance: These magical effects are utility-focused Illusion spells that guide the caster along the correct path to their objective by illuminating a magical trail. This effect is only available as a spell and is commonly used by adventurers to navigate complex terrains or dungeons.", + "display_name": "clairvoyance", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Clear Skies is a Shout that causes Skyrim itself to yield before the Thu'um, clearing away fog and inclement weather. The three words of power in this Shout are Lok (Sky), which calls upon the power of the heavens; Vah (Spring), which ushers in clear, refreshing weather; and Koor (Summer), which brings warm, clear skies to the land.", + "display_name": "clear_skies", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Close Wounds is a Restoration spell that rapidly heals the caster, restoring a significant amount of health. It requires an Expert skill level to cast.", + "display_name": "close_wounds", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Conjuration spells that compel a conjured or summoned entity to obey the caster;s will, overriding its natural behavior. This effect is available as a spell and can also be found on enchanted gear, making it indispensable for skilled conjurers managing Daedric allies.", + "display_name": "command", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Command Daedra is a Conjuration spell that forces a summoned or hostile Daedra to fight for the caster for a limited time. It requires an Expert skill level to cast.", + "display_name": "command_daedra", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are defensive Conjuration spells that summon creatures from Oblivion, such as atronachs or Daedra, to fight alongside or protect the caster. This effect is available as a spell and can also be found on enchanted items, making it a cornerstone of Conjuration magic.", + "display_name": "conjure", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Ash Guardian is a Conjuration spell from solstheim that summons a powerful Ash Guardian to fight for the caster, requiring a heart stone to remain under control. It requires an Expert skill level to cast.", + "display_name": "conjure_ash_guardian", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Ash Spawn is a Conjuration spell that summons an Ash Spawn to fight alongside the caster for a limited time. It requires an Adept skill level to cast.", + "display_name": "conjure_ash_spawn", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Dragon Priest is a Conjuration spell that summons a spectral Dragon Priest to fight alongside the caster for a limited time. It requires a Master skill level to cast.", + "display_name": "conjure_dragon_priest", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Dremora Lord is a Conjuration spell that summons a powerful Dremora Lord to fight for the caster for a limited time. It requires an Expert skill level to cast.", + "display_name": "conjure_dremora_lord", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Familiar is a Conjuration spell that summons a spectral wolf to fight alongside the caster for a limited time. It requires a Novice skill level to cast.", + "display_name": "conjure_familiar", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Flame Atronach is a Conjuration spell that summons a Flame Atronach to fight for the caster for a limited time. It requires an Apprentice skill level to cast.", + "display_name": "conjure_flame_atronach", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Frost Atronach is a Conjuration spell that summons a Frost Atronach to fight for the caster for a limited time. It requires an Adept skill level to cast.", + "display_name": "conjure_frost_atronach", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Mistman is a Conjuration spell that summons a spectral Mistman from the soulcairn to fight alongside the caster for a limited time. It requires an Adept skill level to cast.", + "display_name": "conjure_mistman", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Seeker is a Conjuration spell that summons a Seeker from Apocrypha to fight for the caster for a limited time. It requires an Expert skill level to cast.", + "display_name": "conjure_seeker", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Storm Atronach is a Conjuration spell that summons a powerful Storm Atronach to fight for the caster for a limited time. It requires an Expert skill level to cast.", + "display_name": "conjure_storm_atronach", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Courage is an Illusion spell that boosts the target's confidence, increasing their combat abilities and making them more likely to attack enemies. It requires an Apprentice skill level to cast.", + "display_name": "courage", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are restorative Restoration spells that cleanse the target of all diseases, restoring their health and purity. This effect is available in pre-crafted potions and can also be brewed into custom potions, making it a vital tool for adventurers traveling through disease-prone regions. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Cure Disease effect: Charred Skeever Hide, Hawk Feathers, Mudcrab Chitin, Vampire Dust", + "display_name": "cure_disease", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cyclone is a Shout that creates a whirling cyclone, sowing chaos and disrupting your enemies. The three words of power in this Shout are Ven (Wind), which conjures the powerful winds; Gaar (Unleash), which releases the force of the storm; and Nos (Strike), which directs the cyclone to strike down your foes with devastating force.", + "display_name": "cyclone", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that immediately reduce the target;s health. This effect is available in pre-crafted potions, can be brewed into custom potions, and is a staple for adventurers relying on poisons for their attacks. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Damage Health effect: Crimson Nirnroot, Deathbell, Falmer Ear, Nirnroot, Red Mountain Flower, Skeever Tail", + "display_name": "damage_health", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that hinder the target;s natural recovery of health, prolonging injuries over time. This effect is available in pre-crafted potions, brewed into custom potions, and found on enchanted gear, making it a potent tool in prolonged battles.", + "display_name": "damage_health_regeneration", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that reduce the target;s available magicka, crippling their ability to cast spells. This effect is available in pre-crafted potions, can be brewed into custom potions, applied through custom enchanting, and found on enchanted gear. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Damage Magicka effect: Butterfly Wing, Hagraven Feathers, Hanging Moss, Human Heart, Orange Dartwing, Scaly Pholiota", + "display_name": "damage_magicka", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that slow the target;s recovery of magicka, leaving them vulnerable in prolonged magical combat. This effect is available in pre-crafted potions and can also be brewed into custom potions, making it a favored choice against spellcasters. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Damage Magicka Regeneration effect: Butterfly Wing, Glow Dust, Hanging Moss, Nightshade, Orange Dartwing", + "display_name": "damage_magicka_regeneration", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that drain the target;s stamina, weakening their ability to perform physical attacks or sprint. This effect is available in pre-crafted potions, can be brewed into custom potions, applied through custom enchanting, and found on enchanted gear. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Damage Stamina effect: Bee, Charred Skeever Hide, Deathbell, Large Antlers, Silverside Perch, Skeever Tail", + "display_name": "damage_stamina", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that slow or halt the target;s stamina recovery, leaving them fatigued over time. This effect is available in pre-crafted potions, can be brewed into custom potions, and is also found on enchanted gear, making it a strategic choice in prolonged battles. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Damage Stamina Regeneration effect: Frost Mirriam, Giant Lichen, Large Antlers, Skeever Tail", + "display_name": "damage_stamina_regeneration", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dead Thrall is a Conjuration spell that permanently reanimates a powerful dead body to fight for the caster until it is destroyed. It requires a Master skill level to cast.", + "display_name": "dead_thrall", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Detect Dead is an Alteration spell that highlights nearby undead, Daedra, and automatons with a glowing aura, making them visible through walls. It requires an Expert skill level to cast.", + "display_name": "detect_dead", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Alteration spells that reveal living creatures in the vicinity by highlighting them with an aura visible through walls. This effect is available only as a spell, serving as an essential tool for scouts and mages navigating dangerous or hidden areas.", + "display_name": "detect_life", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Alteration spells that reveal the presence of undead entities by marking them with a distinct glow. Unlike Detect Life, this spell specifically targets reanimated or naturally undead beings and is exclusively available as a spell, aiding adventurers and priests in uncovering hidden threats.", + "display_name": "detect_undead", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Disarm is a Shout that defies steel, ripping the weapon from an opponent's grasp. The three words of power in this Shout are Zun (Weapon), which targets the weapon of your foe; Haal (Hand), which pries it from their grip; and Viik (Defeat), which ensures their weapon is taken away in defeat.", + "display_name": "disarm", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dismay is a Shout that causes fear, making the weak flee in terror before the power of the Thu'um. The three words of power in this Shout are Faas (Fear), which instills dread in the hearts of enemies; Ru (Run), which compels them to flee in panic; and Maar (Terror), which deepens their fear, causing them to flee in absolute terror.", + "display_name": "dismay", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragon Aspect is a Shout that allows you to take on the mighty aspect of a dragon once a day, delivering powerful blows, gaining an armored hide, and enhancing your shouts. The three words of power in this Shout are Mul (Strength), which grants you immense power; Qah (Armor), which gives you a protective dragon-like hide; and Diiv (Wyrm), which imbues you with the spirit of a dragon, strengthening your attacks and abilities.", + "display_name": "dragon_aspect", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonrend is a Shout that targets a dragon's very soul, forcing it to land. The three words of power in this Shout are Joor (Mortal), which connects the dragon to the frailty of mortal existence; Zah (Finite), which limits the dragon’s power and forces it to the ground; and Frul (Temporary), which makes the dragon's flight temporarily impossible, grounding it for a period.", + "display_name": "dragon_rend", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonhide is an Alteration spell that drastically reduces physical damage taken by the caster for a short duration. It requires a Master skill level to cast.", + "display_name": "dragonhide", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Drain Vitality is a Shout that siphons both magical and mortal energies from your opponent, weakening them. The three words of power in this Shout are Gaan (Stamina), which drains the target's stamina; Lah (Magicka), which saps their magical energy; and Haas (Health), which steals their life force, leaving them weaker and more vulnerable.", + "display_name": "drain_vitality", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dread Zombie is a Conjuration spell that reanimates a very powerful dead body to fight for the caster for a limited time. It requires an Expert skill level to cast.", + "display_name": "dread_zombie", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Droops is a serious disease that weakens a victim's strength and ability to use weapons, leading to weak and flaccid muscle tissues. It can be contracted from all forms and stages of kwama, as well as from sheep and ash hoppers. As the disease progresses, it significantly reduces the effectiveness of the afflicted's combat abilities, particularly with one-handed and two-handed weapons.", + "display_name": "droops", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Summon Durnehviir is a Shout that calls upon Durnehviir, summoning him from the Soul Cairn to aid you in your time of need. The three words of power in this Shout are Dur (Curse), which invokes the dark power of the Soul Cairn; Neh (Never), which calls Durnehviir from his eternal rest; and Viir (Dying), which brings him forth from the afterlife to fight alongside you.", + "display_name": "dur_neh_viir", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebonyflesh is an Alteration spell that greatly increases the caster's armor rating for a short duration, providing substantial protection. It requires an Expert skill level to cast.", + "display_name": "ebonyflesh", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elemental Fury is a Shout that imbues your arms with the speed of wind, allowing for faster weapon strikes. The three words of power in this Shout are Su (Air), which grants you the swiftness of wind; Grah (Battle), which enhances your combat prowess; and Dun (Grace), which allows for more fluid and rapid attacks.", + "display_name": "elemental_fury", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Equilibrium is an Alteration spell that converts the caster's health into magicka at a steady rate, allowing for sustained casting at the cost of vitality. It requires a Novice skill level to cast.", + "display_name": "equilibrium", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Expel Daedra is a Conjuration spell that banishes a summoned Daedra back to Oblivion and works on more powerful Daedra than the standard banishment spells. It requires an Expert skill level to cast.", + "display_name": "expel_daedra", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dismay is a Shout that causes fear, making the weak flee in terror before the power of the Thu'um. The three words of power in this Shout are Faas (Fear), which instills dread in the hearts of enemies; Ru (Run), which compels them to flee in panic; and Maar (Terror), which deepens their fear, causing them to flee in absolute terror.", + "display_name": "faas_ru_maar", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Illusion enchantments that enhance the caster;s speed, allowing for quicker movement and evasion. This effect is available only on enchanted items, making it a rare boon for those prioritizing agility.", + "display_name": "fast", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fast Healing is a Restoration spell that rapidly restores a significant amount of health to the target, whether it be the caster or an ally. It requires an Apprentice skill level to cast.", + "display_name": "fast_healing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Illusion spells that cause the target to flee in terror, exploiting their deepest insecurities. This effect is widely available as a spell, can be found in pre-crafted potions, brewed into custom potions, or applied as an enchantment to weapons or armor. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fear effect: Blue Dartwing, Namira's Rot, Powdered Mammoth Tusk, Sabre Cat Eye", + "display_name": "fear", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Become Ethereal is a Shout that transforms your form to one that cannot harm or be harmed, as it reaches out to the Void. The three words of power in this Shout are Feim (Fade), which allows you to slip from the physical world; Zii (Spirit), which grants you a ghostly form; and Gron (Bind), which anchors you in a state where you are untouchable by physical harm.", + "display_name": "feim_zii_gron", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Conjuration & Destruction enchantments that combine fire damage with the ability to trap a defeated foe;s soul in a soul gem. This effect is available on enchanted weapons and through custom enchanting, bridging the gap between Destruction and Conjuration magic.", + "display_name": "fiery_soul_trap", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fire Breath is a Shout that allows you to inhale air and exhale a powerful flame, creating an inferno. The three words of power in this Shout are Yol (Fire), which conjures the flames; Toor (Inferno), which intensifies the blaze into a fiery eruption; and Shul (Sun), which amplifies the heat and power of the flames to scorch your enemies.", + "display_name": "fire_breath", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that deal burning damage over time, reflecting the raw power of flames. This effect is available as a spell, can be applied through custom enchanting, and is also found on enchanted gear, making it a staple for combat mages.", + "display_name": "fire_damage", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fire Rune is a Destruction spell that places a magical explosive rune on the ground, which detonates when triggered, dealing fire damage to nearby enemies. It requires an Apprentice skill level to cast.", + "display_name": "fire_rune", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fire Storm is a Destruction spell that creates a massive explosion of fire, causing intense fire damage over a wide area. It requires a Master skill level to cast.", + "display_name": "fire_storm", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fireball is a Destruction spell that hurls an explosive ball of fire at a target, dealing damage in an area of effect upon impact. It requires an Apprentice skill level to cast.", + "display_name": "fireball", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Firebolt is a Destruction spell that hurls a single bolt of fire at a target, dealing immediate fire damage upon impact. It requires an Apprentice skill level to cast.", + "display_name": "firebolt", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Flame Cloak is a Destruction spell that surrounds the caster with a fiery aura, dealing fire damage to nearby enemies. It requires an Adept skill level to cast.", + "display_name": "flame_cloak", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Flame Thrall is a Conjuration spell that permanently summons a Flame Atronach to fight for the caster until it is defeated. It requires a Master skill level to cast.", + "display_name": "flame_thrall", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Flames is a Destruction spell that projects a continuous stream of fire, dealing fire damage to health and stamina. It requires a Novice skill level to cast.", + "display_name": "flames", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Flaming Familiar is a Conjuration spell that summons an explosive spectral wolf that charges at enemies and detonates on impact. It requires an Apprentice skill level to cast.", + "display_name": "flaming_familiar", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frost Breath is a Shout that turns your breath into winter, unleashing a blizzard upon your enemies. The three words of power in this Shout are Fo (Frost), which creates the cold winds; Krah (Cold), which deepens the freeze; and Diin (Freeze), which solidifies the freezing effect, encasing foes in ice.", + "display_name": "fo_krah_diin", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are restorative Restoration enchantments that enhance the caster;s ability to regenerate health during combat. This effect is only available on enchanted items, providing warriors with sustained recovery in prolonged battles.", + "display_name": "fortified_combat_healing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration enchantments that enhance the potency of crafted potions and poisons, maximizing their effects. This effect is available through custom enchanting and is also found on enchanted gear, making it a favored choice for skilled alchemists.", + "display_name": "fortify_alchemy", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that enhance the caster;s skill in Alteration magic, increasing the duration and effectiveness of spells. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Alteration effect: Grass Pod, River Betty, Spriggan Sap", + "display_name": "fortify_alteration", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that improve the precision and damage of bow attacks. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear, making it indispensable for marksmen and hunters. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Archery effect: Canis Root, Elves Ear, Juniper Berries, Spider Egg", + "display_name": "fortify_archery", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that enhance the caster;s ability to negotiate better prices, reflecting subtle charm and influence. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Barter effect: Dragon's Tongue, Tundra Cotton", + "display_name": "fortify_barter", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that increase the effectiveness of shield usage, reducing damage from physical attacks and enhancing defensive capabilities. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Block effect: Bleeding Crown, Honeycomb, Pearl, Slaughterfish Scales", + "display_name": "fortify_block", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that increase the caster;s carrying capacity, allowing them to transport more items without becoming encumbered. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear, making it invaluable for adventurers and traders. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Carry Weight effect: Creep Cluster, Giant's Toe, Hawk Beak, River Betty, Scaly Pholiota, Wisp Wrappings", + "display_name": "fortify_carry_weight", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that amplify the caster;s skill in Conjuration magic, extending the power and duration of spells. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Conjuration effect: Blue Butterfly Wing, Blue Mountain Flower, Frost Salts", + "display_name": "fortify_conjuration", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that boost the effectiveness of Destruction spells, increasing the damage dealt by fire, frost, and shock magic. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Destruction effect: Glowing Mushroom, Nightshade, Glowing Dust, Salt Pile", + "display_name": "fortify_destruction", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that improve the caster;s ability to create powerful enchantments, ensuring more potent effects on weapons, armor, and jewelry. This effect is available in pre-crafted potions and can also be brewed into custom potions, making it a critical tool for enchanters. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Enchanting effect: Blue Butterfly Wing, Hagraven Claw, Snowberries, Spriggan Sap", + "display_name": "fortify_enchanting", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that increase the caster;s maximum health, improving their resilience and ability to endure greater damage. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Health effect: Bear Claws, Blue Mountain Flower, Giant's Toe, Glowing Mushroom, Hanging Moss, Wheat", + "display_name": "fortify_health", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that enhance the effectiveness of heavy armor, increasing durability and reducing incoming damage. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear, making it a favorite among knights and warriors. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Heavy Armor effect: Sabre Cat Tooth, Slaughterfish Scales, Thistle Branch, White Cap", + "display_name": "fortify_heavy_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that strengthen the caster;s skill in Illusion magic, increasing the duration and potency of spells that manipulate the minds of others. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Illusion effect: Dwarven Oil, Fire Salts, Taproot", + "display_name": "fortify_illusion", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that improve the protection provided by light armor, increasing mobility while reducing incoming damage. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear, making it ideal for agile adventurers. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Light Armor effect: Bear Claws, Hawk Feathers, Honeycomb, Mudcrab Chitin", + "display_name": "fortify_light_armor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that enhance the caster;s ability to pick locks, reducing the difficulty of opening even the most complex mechanisms. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear, making it essential for treasure hunters and thieves. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Lockpicking effect: Falmer Ear, Namira's Rot, Pine Thrush Egg, Spider Egg", + "display_name": "fortify_lockpicking", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that increase the caster;s maximum magicka, enabling them to cast more powerful spells or sustain prolonged magical activity. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Magicka effect: Briar Heart, Ectoplasm, Frost Salts, Red Mountain Flower, Tundra Cotton, Void Salts", + "display_name": "fortify_magicka", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that increase the damage dealt with one-handed weapons, such as swords, daggers, and maces. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear, making it indispensable for duelists and rogues. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify One-handed effect: Bear Claws, Canis Root, Hanging Moss, Rock Warbler Egg", + "display_name": "fortify_onehanded", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration enchantments that enhance the caster;s ability to influence others in dialogue, increasing the likelihood of success in persuasion, intimidation, or bargaining. This effect is only available on enchanted gear, making it a rare boon for charismatic adventurers.", + "display_name": "fortify_persuasion", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that improve the caster;s skill in stealing from others, reducing the chance of detection while pickpocketing. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Pickpocket effect: Blue Dartwing, Nordic Barnacle, Orange Dartwing, Slaughterfish Egg, Spadefish", + "display_name": "fortify_pickpocket", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that enhance the caster;s proficiency in Restoration magic, improving the power and duration of healing, ward, and recovery spells. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Restoration effect: Abecean Longfin, Cyrodilic Spadetail, Pygmy Sunfish, Salt Pile, Small Antlers, Yellow Mountain Flower", + "display_name": "fortify_restoration", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration enchantments that reduce the cooldown time of shouts, allowing the caster to use their Thu;um more frequently. This effect is only available on enchanted gear, making it a rare and valuable boon for the Dragonborn.", + "display_name": "fortify_shouts", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that enhance the caster;s proficiency in crafting and improving weapons and armor, resulting in superior-quality gear. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear, making it invaluable for blacksmiths. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Smithing effect: Blisterwort, Glowing Mushroom, Pearlfish, Sabre Cat Tooth, Spriggan Sap", + "display_name": "fortify_smithing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that improve the caster;s ability to move undetected, reducing the likelihood of being seen or heard. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear, making it a staple for stealth-focused adventurers. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Sneak effect: Abecean Longfin, Ashen Grass Pod, Beehive Husk, Frost Mirriam, Hawk Feathers, Human Flesh, Powdered Mammoth Tusk, Purple Mountain Flower", + "display_name": "fortify_sneak", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration enchantments that amplify the power of all spells, enhancing their effectiveness regardless of school. This effect is only available on enchanted gear, making it highly coveted by master mages.", + "display_name": "fortify_spells", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that increase the caster;s maximum stamina, enhancing their ability to sprint, block, and perform power attacks. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Stamina effect: Boar Tusk, Chaurus Eggs, Garlic, Large Antlers, Lavender, Slaughterfish Egg, Torchbug Thorax", + "display_name": "fortify_stamina", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration abilities that boost the damage dealt with two-handed weapons, such as greatswords, battleaxes, and warhammers. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear, making it essential for warriors. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Fortify Two-handed effect: Dragon's Tongue, Fly Amanita, Troll Fat", + "display_name": "fortify_twohanded", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Restoration enchantments that increase the damage dealt with unarmed attacks. This effect is available through custom enchanting and can also be found on enchanted gear, making it highly sought after by brawlers and monks who rely on their fists in combat.", + "display_name": "fortify_unarmed_damage", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Freeze is an Alteration spell that encases a target in ice, immobilizing them for a brief duration. It requires a Novice skill level to cast.", + "display_name": "freeze", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Illusion spells that induce uncontrollable aggression in the target, causing them to attack anything nearby. This effect is available as a spell, can be found in pre-crafted potions, brewed into custom potions, and is also found on enchanted items, making it a chaotic choice for combat mages. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Frenzy effect: Blisterwort, Hagraven Claw, Human Heart, Troll Fat", + "display_name": "frenzy", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frenzy Rune is an Illusion spell that places a magical rune on the ground, causing any enemy that steps on it to become enraged and attack nearby creatures or people. It requires an Apprentice skill level to cast.", + "display_name": "frenzy_rune", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frost Breath is a Shout that turns your breath into winter, unleashing a blizzard upon your enemies. The three words of power in this Shout are Fo (Frost), which creates the cold winds; Krah (Cold), which deepens the freeze; and Diin (Freeze), which solidifies the freezing effect, encasing foes in ice.", + "display_name": "frost_breath", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frost Cloak is an Alteration spell that surrounds the caster with a frosty aura, dealing frost damage to nearby enemies and reducing their movement speed. It requires an Adept skill level to cast.", + "display_name": "frost_cloak", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that inflict cold damage while slowing the target;s movement and attack speed. This effect is available as a spell, can be applied through custom enchanting, and is also found on enchanted items, making it ideal for controlling the battlefield.", + "display_name": "frost_damage", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frost Rune is an Alteration spell that places a magical rune on the ground, which explodes in a burst of frost damage when an enemy steps on it. It requires an Apprentice skill level to cast.", + "display_name": "frost_rune", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frost Thrall is a Conjuration spell that permanently summons a Frost Atronach to fight for the caster until it is defeated. It requires a Master skill level to cast.", + "display_name": "frost_thrall", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frostbite is a Destruction spell that projects a continuous stream of frost, dealing frost damage to health and stamina. It requires a Novice skill level to cast.", + "display_name": "frostbite", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fury is an Illusion spell that causes a target to become enraged, making them attack anything in their path, including allies. It requires an Apprentice skill level to cast.", + "display_name": "fury", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Unrelenting Force is a Shout that uses raw power to push aside anything or anyone in your path. The three words of power in this Shout are Fus (Force), which unleashes the power of your voice; Ro (Balance), which knocks back enemies and objects; and Dah (Push), which sends your target flying, clearing your way.", + "display_name": "fus_ro_dah", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Drain Vitality is a Shout that siphons both magical and mortal energies from your opponent, weakening them. The three words of power in this Shout are Gaan (Stamina), which drains the target's stamina; Lah (Magicka), which saps their magical energy; and Haas (Health), which steals their life force, leaving them weaker and more vulnerable.", + "display_name": "gaan_lah_haas", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bend Will is a Shout that allows you to bend the very stones to your will, and as it grows stronger, animals, people, and even dragons are compelled to obey your commands. The three words of power in this Shout are Gol (Earth), which gives you control over the land itself; Hah (Mind), which influences the minds of others; and Dov (Dragon), which allows you to command even dragons to do your bidding.", + "display_name": "gol_hah_dov", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Grand Healing is a Restoration spell that restores a large amount of health to all nearby allies within its area of effect. It requires a Master skill level to cast.", + "display_name": "grand_healing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Greater Ward is a Restoration spell that creates a powerful magical shield around the caster, absorbing a substantial amount of magic damage. It requires an Adept skill level to cast.", + "display_name": "greater_ward", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Greenspore is a serious disease that affects a victim's behavior, causing irritability, violent outbursts, and sometimes mild dementia. It can be contracted from slaughterfish or zombies. As the disease progresses, it worsens the victim's ability to influence others, making persuasion and intimidation significantly harder, and also leads to worse prices when trading.", + "display_name": "greenspore", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Guardian Circle is a Restoration spell that creates a protective circle on the ground, healing allies within its area and damaging nearby undead. It requires a Master skill level to cast.", + "display_name": "guardian_circle", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Gutworm is a disease contracted from trolls in Skyrim, leading to symptoms such as reduced stamina and diminished effectiveness of food in restoring hunger. As the disease progresses, stamina regeneration becomes slower, and food provides less nutritional value, making it harder to recover.", + "display_name": "gutworm", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Harmony is an Illusion spell that pacifies all nearby creatures and people, making them stop fighting and become neutral toward the caster. It requires a Master skill level to cast.", + "display_name": "harmony", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heal Other is a Restoration spell that allows the caster to restore health to another person, healing them over time. It requires an Adept skill level to cast.", + "display_name": "heal_other", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heal Undead is a Restoration spell that heals undead targets, restoring their health over time. It requires an Adept skill level to cast.", + "display_name": "heal_undead", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Healing is a Restoration spell that restores a small amount of health to the target, whether it be the caster or another ally. It requires a Novice skill level to cast.", + "display_name": "healing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Healing Hands is a Restoration spell that allows the caster to heal a target by touching them, restoring health over a short period. It requires an Apprentice skill level to cast.", + "display_name": "healing_hands", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Call of Valor is a Shout that summons the valiant heroes of Sovngarde to aid you, transcending space and time. The three words of power in this Shout are Hun (Hero), which calls upon the brave souls of heroes; Kaal (Champion), which invokes the might of champions; and Zoor (Legend), which summons legendary figures to fight beside you.", + "display_name": "hun_kaal_zoor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction enchantments that increase damage dealt to animals. This effect is available through custom enchanting and is also found on enchanted items, making it a favored enchantment among hunters.", + "display_name": "huntsmans_prowess", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hysteria is an Illusion spell that causes enemies within its area of effect to become terrified and flee in panic. It requires an Expert skill level to cast.", + "display_name": "hysteria", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ice Form is a Shout that freezes an opponent solid, turning them into ice. The three words of power in this Shout are Iiz (Ice), which generates the freezing force; Slen (Flesh), which freezes the target's body; and Nus (Statue), which solidifies the target into an immovable frozen form.", + "display_name": "ice_form", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ice Spike is a Destruction spell that launches a shard of ice at a target, dealing frost damage upon impact. It requires an Apprentice skill level to cast.", + "display_name": "ice_spike", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ice Storm is a Destruction spell that summons a swirling storm of ice, dealing frost damage over time to enemies within its area of effect. It requires an Adept skill level to cast.", + "display_name": "ice_storm", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Icy Spear is a Destruction spell that hurls a large shard of ice at a target, dealing significant frost damage upon impact. It requires an Expert skill level to cast.", + "display_name": "icy_spear", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ignite is a Destruction spell that causes a target to burst into flames, dealing fire damage over time. It requires an Apprentice skill level to cast.", + "display_name": "ignite", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ice Form is a Shout that freezes an opponent solid, turning them into ice. The three words of power in this Shout are Iiz (Ice), which generates the freezing force; Slen (Flesh), which freezes the target's body; and Nus (Statue), which solidifies the target into an immovable frozen form.", + "display_name": "iiz_slen_nus", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Incinerate is a Destruction spell that launches a concentrated blast of fire, dealing massive fire damage to a target and incinerating them. It requires an Expert skill level to cast.", + "display_name": "incinerate", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are defensive Illusion spells that render the caster or target completely unseen, enabling stealth and evasion. This effect is available as a spell, can be found in pre-crafted potions, and can also be brewed into custom potions, making it a staple for thieves and assassins. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Invisibility effect: Chaurus Eggs, Crimson Nirnroot, Ice Wraith Teeth, Nirnroot, Vampire Dust", + "display_name": "invisibility", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ironflesh is an Alteration spell that significantly boosts the caster's armor rating for a short duration, providing enhanced protection. It requires an Adept skill level to cast.", + "display_name": "ironflesh", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonrend is a Shout that targets a dragon's very soul, forcing it to land. The three words of power in this Shout are Joor (Mortal), which connects the dragon to the frailty of mortal existence; Zah (Finite), which limits the dragon’s power and forces it to the ground; and Frul (Temporary), which makes the dragon's flight temporarily impossible, grounding it for a period.", + "display_name": "joor_zah_frul", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kyne's Peace is a Shout that soothes wild beasts, causing them to lose their desire to fight or flee. The three words of power in this Shout are Kaan (Kyne), which invokes the power of Kyne, the goddess of nature; Drem (Peace), which calms the beasts; and Ov (Trust), which earns the trust of the animals, ensuring they no longer pose a threat.", + "display_name": "kaan_drem_ov", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Marked for Death is a Shout that heralds doom upon your enemy, weakening their armor and draining their lifeforce. The three words of power in this Shout are Krii (Kill), which initiates the attack; Lun (Leech), which drains the opponent's strength; and Aus (Suffer), which inflicts suffering and causes their health to diminish over time.", + "display_name": "krii_lun_aus", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Kyne's Peace is a Shout that soothes wild beasts, causing them to lose their desire to fight or flee. The three words of power in this Shout are Kaan (Kyne), which invokes the power of Kyne, the goddess of nature; Drem (Peace), which calms the beasts; and Ov (Trust), which earns the trust of the animals, ensuring they no longer pose a threat.", + "display_name": "kyne's_peace", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Aura Whisper is a Shout that is not a traditional shout but a whisper, revealing the life forces of all nearby creatures. The three words of power in this Shout are Laas (Life), which allows you to sense the life forces of those around you; Yah (Seek), which helps you locate them; and Nir (Hunt), which aids in tracking them down.", + "display_name": "laas_yah_nir", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lesser Ward is a Restoration spell that creates a magical shield around the caster, absorbing a small amount of magic damage. It requires an Apprentice skill level to cast.", + "display_name": "lesser_ward", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Alteration spells that summon a hovering orb of light to illuminate dark areas, making exploration in caves and dungeons easier. In addition to being available as a spell, this effect can also be found on enchanted items, offering a practical light source for non-magic users.", + "display_name": "light", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction enchantments that deal radiant damage, particularly effective against undead. This effect is available through custom enchanting and is also found on enchanted items, making it a holy weapon against unholy creatures.", + "display_name": "light_damage", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lightning Bolt is a Destruction spell that sends a powerful bolt of lightning at a target, dealing shock damage upon impact. It requires an Apprentice skill level to cast.", + "display_name": "lightning_bolt", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lightning Cloak is an Alteration spell that surrounds the caster with a crackling electric aura, dealing shock damage to nearby enemies. It requires an Adept skill level to cast.", + "display_name": "lightning_cloak", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lightning Rune is an Alteration spell that places a magical rune on the ground, which detonates with a burst of shock damage when an enemy steps on it. It requires an Apprentice skill level to cast.", + "display_name": "lightning_rune", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lightning Storm is a Destruction spell that releases a continuous stream of powerful lightning bolts, dealing high shock damage to all enemies within its range. It requires a Master skill level to cast.", + "display_name": "lightning_storm", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Clear Skies is a Shout that causes Skyrim itself to yield before the Thu'um, clearing away fog and inclement weather. The three words of power in this Shout are Lok (Sky), which calls upon the power of the heavens; Vah (Spring), which ushers in clear, refreshing weather; and Koor (Summer), which brings warm, clear skies to the land.", + "display_name": "lok_vah_koor", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lycanthropy, also known as werethropy, is a supernatural condition that causes individuals to transform into werebeasts, most commonly werewolves. This disease, referred to as Hircine's Gift by those who view it as a blessing and Hircine's Curse by those who see it negatively, affects both the body and the spirit. It is contagious and can be spread through bites or claws of werebeasts, or by drinking the blood of a lycanthrope, which causes an immediate transformation into the beast form. Lycanthropy is most prevalent in Tamriel and has several strains, with the werewolf form being the most widespread across the continent. Individuals infected with lycanthropy are called lycanthropes, and they are often feared and persecuted due to their bloodthirsty nature.\n\nThe disease progresses through a transformation process, where the afflicted person becomes a werewolf if they contract Sanies Lupinus, the most common lycanthropic strain. This transformation is intense, with the first shift occurring shortly after the infection sets in. The condition is not selective about who it affects, meaning that individuals from different races, including Argonians, can also become werewolves if infected. Though lycanthropes are typically viewed with fear and hatred, some see it as a blessing. Transmission of the disease happens most often through combat with a werebeast, but it can also occur through the sharing of lycanthropic blood, which accelerates the curse's onset.", + "display_name": "lycanthropy", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Magelight is an Alteration spell that creates a hovering orb of light that sticks to a surface, illuminating the surrounding area. It requires an Apprentice skill level to cast.", + "display_name": "magelight", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Marked for Death is a Shout that heralds doom upon your enemy, weakening their armor and draining their lifeforce. The three words of power in this Shout are Krii (Kill), which initiates the attack; Lun (Leech), which drains the opponent's strength; and Aus (Suffer), which inflicts suffering and causes their health to diminish over time.", + "display_name": "marked_for_death", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mass Paralysis is an Alteration spell that immobilizes all targets in a large area around the caster for a short duration. It requires a Master skill level to cast.", + "display_name": "mass_paralysis", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mayhem is an Illusion spell that causes a group of enemies within its area of effect to become hostile toward each other, making them attack anyone in sight. It requires an Expert skill level to cast.", + "display_name": "mayhem", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Battle Fury is a Shout that enchants the weapons of your nearby allies, allowing them to attack faster. The three words of power in this Shout are Mid (Loyal), which strengthens the bond of your allies, Vur (Valor), which imbues them with courage and power, and Shaan (Inspire), which increases their speed and effectiveness in combat.", + "display_name": "mid_vur_shaan", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are defensive Illusion spells that silence the caster;s movements, reducing the chance of detection by enemies. This effect is available as a spell, can be applied through custom enchanting, and is also found on enchanted items, making it essential for stealth-focused adventurers.", + "display_name": "muffle", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragon Aspect is a Shout that allows you to take on the mighty aspect of a dragon once a day, delivering powerful blows, gaining an armored hide, and enhancing your shouts. The three words of power in this Shout are Mul (Strength), which grants you immense power; Qah (Armor), which gives you a protective dragon-like hide; and Diiv (Wyrm), which imbues you with the spirit of a dragon, strengthening your attacks and abilities.", + "display_name": "mul_qah_diiv", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Necromantic Healing is a Restoration spell that restores health to the caster or an ally by drawing on the life force of a nearby corpse. It requires an Expert skill level to cast.", + "display_name": "necromantic_healing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Oakflesh is an Alteration spell that increases the caster's armor rating for a short duration, providing additional protection. It requires a Novice skill level to cast.", + "display_name": "oakflesh", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Call Dragon is a Shout that summons a dragon to aid you in your time of need, specifically calling upon Odahviing. The three words of power in this Shout are Od (Snow), which represents the call to the dragon; Ah (Hunter), which signifies the summoning of a creature of the wild; and Viing (Wing), which invokes the dragon's wings to bring it forth.", + "display_name": "od_ah_viing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Illusion spells that calm hostile targets within range, neutralizing aggression and preventing them from attacking. This effect is available as a spell and is also found on enchanted items, making it ideal for resolving conflicts peacefully.", + "display_name": "pacify", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Alteration spells that immobilize a target completely, rendering them unable to move or act for the spell's duration. This effect is widely available as a spell, can be found in pre-crafted potions throughout Skyrim, and can also be brewed into custom potions by skilled alchemists. Additionally, this effect can be applied to weapons or armor through enchanting and found on rare enchanted items, making it a versatile tool for crowd control. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Paralyze effect: Briar Heart, Canis Root, Swamp Fungal Pod, Imp Stool, Human Flesh", + "display_name": "paralyze", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that gradually deplete the target;s health through toxins. This effect is available in pre-crafted poisons, can be brewed into custom potions, and is a favored tool of stealthy adventurers.", + "display_name": "poison_damage", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Poison Rune is an Alteration spell that places a magical rune on the ground, which explodes with a burst of toxic gas, dealing poison damage to any enemies who step on it. It requires an Apprentice skill level to cast.", + "display_name": "poison_rune", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Animal Allegiance is a Shout that calls upon the beasts of the wild to fight in your defense, with the three words of power being Raan (Animal), which summons the animals; Mir (Allegiance), which binds them to your cause; and Tah (Pack), which rallies them into a united group to fight alongside you.", + "display_name": "raan_mir_tah", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Raise Zombie is a Conjuration spell that reanimates a weak dead body to fight for the caster for a limited time. It requires a Novice skill level to cast.", + "display_name": "raise_zombie", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Illusion spells that bolster the morale and combat abilities of allies within range, increasing their health and stamina. This effect is available as a spell and can also be found on enchanted items, making it a key spell for inspiring groups during battle.", + "display_name": "rally", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rattles is a mild disease that affects a victim's willpower and dexterity, causing muscle spasms, listlessness, and poor stamina. It can be contracted from nix-hounds, zombies, and chaurus. As the disease progresses, it hinders stamina recovery, eventually causing the victim to lose the ability to recover stamina entirely if untreated.", + "display_name": "rattles", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that permanently reduce the target;s maximum health, weakening their overall endurance. This effect can only be brewed into custom potions, making it a specialized choice for skilled alchemists. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Ravage Health effect: Cyrodilic Spadetail, Giant Lichen, Jazbay Grapes, Sabre Cat Eye, Scathecraw, Silverside Perch, Skeever Tail", + "display_name": "ravage_health", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that permanently reduce the target;s maximum magicka, crippling their ability to cast higher-level spells. This effect can only be brewed into custom potions, making it a tactical tool against mages. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Ravage Magicka effect: Alocasia Fruit, Frost Mirriam, Grass Pod, Lavender, Orange Dartwing, Red Mountain Flower, Scathecraw, Spawn Ash, White Cap", + "display_name": "ravage_magicka", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that permanently reduce the target;s maximum stamina, hindering their ability to perform physical actions. This effect can only be brewed into custom potions, providing a significant advantage in prolonged physical combat. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Ravage Stamina effect: Bee, Berit;s Ashes, Bone Meal, Bungler;s Bane, Deathbell, Honeycomb, Scathecraw, Spawn Ash, Thistle Branch", + "display_name": "ravage_stamina", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Conjuration spells that bring a corpse back to life as a temporary thrall to serve the caster. This effect is available as a spell and can also be found on enchanted gear, reflecting the darker aspects of Conjuration magic.", + "display_name": "reanimate", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Reanimate Corpse is a Conjuration spell that raises a more powerful dead body to fight for the caster for a limited time. It requires an Apprentice skill level to cast.", + "display_name": "reanimate_corpse", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are restorative Restoration abilities that gradually restore health over time. This effect is available as a spell, in pre-crafted potions, brewed into custom potions, and can also be applied to enchanted items, making it a versatile choice for both mages and adventurers. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Regenerate Health effect: Garlic, Juniper Berries, Luna Moth Wing, Namira's Rot", + "display_name": "regenerate_health", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are restorative Restoration abilities that gradually replenish the caster;s magicka reserves. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted items, making it vital for sustained spellcasting. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Regenerate Magicka effect: Ectoplasm, Garlic, Jazbay Grapes, Moon Sugar, Red Mountain Flower, Taproot", + "display_name": "regenerate_magicka", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are restorative Restoration abilities that gradually restore stamina over time, allowing for prolonged physical activity. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted gear, making it valuable for warriors and thieves alike. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Regenerate Stamina effect: Bee, Fly Amanita, Mora Tapinella, Scaly Pholiota", + "display_name": "regenerate_stamina", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Repel Lesser Undead is a Restoration spell that causes weaker undead creatures to flee from the caster, temporarily banishing them. It requires an Adept skill level to cast.", + "display_name": "repel_lesser_undead", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Repel Undead is a Restoration spell that forces undead creatures to flee in terror, effectively neutralizing them for a short period. It requires an Adept skill level to cast.", + "display_name": "repel_undead", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are defensive Restoration enchantments that increase resistance to diseases, protecting the caster from harmful infections. This effect can be applied to enchanted gear and is also found on items scattered throughout Skyrim, making it ideal for those exploring dangerous regions.", + "display_name": "resist_disease", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are defensive Restoration abilities that reduce damage taken from fire-based attacks, providing essential protection against dragons and other fiery foes. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted items. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Resist Fire effect: Bone Meal, Dragon's Tongue, Elves Ear, Fire Salts, Snowberries", + "display_name": "resist_fire", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are defensive Restoration abilities that reduce damage taken from frost-based attacks, offering vital protection in Skyrim;s icy environments. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted items. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Resist Frost effect: Frost Mirriam, Frost Salts, Purple Mountain Flower, Snowberries, Thistle Branch", + "display_name": "resist_frost", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are defensive Restoration abilities that reduce damage taken from all forms of magic, offering broad protection against hostile spells. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted items. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Resist Magic effect: Bleeding Crown, Hagraven Claw, Nirnroot, Tundra Cotton", + "display_name": "resist_magic", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are defensive Restoration abilities that reduce the effects of poisons on the caster, providing critical defense against toxic attacks. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted items.", + "display_name": "resist_poison", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are defensive Restoration abilities that reduce damage taken from shock-based attacks, shielding the caster from electrical energy. This effect is available in pre-crafted potions, can be brewed into custom potions, and can also be applied to enchanted items. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Resist Shock effect: Glow Dust, Glowing Mushroom, Hawk Feathers, Snowberries", + "display_name": "resist_shock", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are restorative Restoration spells that instantly restore lost health to the caster or target. This effect is available as a spell, in pre-crafted potions, and can be brewed into custom potions, making it a foundational ability for adventurers and healers. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Restore Health effect: Blue Dartwing, Blue Mountain Flower, Butterfly Wing, Charred Skeever Hide, Daedra Heart, Eye of Sabre Cat, Imp Stool, Rock Warbler Egg, Swamp Fungal Pod, Wheat", + "display_name": "restore_health", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are restorative Restoration spells that uniquely restore vitality to undead creatures, sustaining their unnatural existence. This effect is only available as a spell, reflecting the darker uses of Restoration magic.", + "display_name": "restore_health_to_undead", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are restorative Restoration abilities that instantly replenish the caster;s magicka reserves, enabling continued spellcasting. This effect is available in pre-crafted potions and can also be brewed into custom potions, making it vital for mages in prolonged encounters. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Restore Magicka effect: Briar Heart, Ectoplasm, Elves Ear, Fire Salts, Frost Salts, Garlic, Glow Dust, Grass Pod, Human Flesh, Red Mountain Flower, Taproot, Tundra Cotton, Void Salts", + "display_name": "restore_magicka", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are restorative Restoration abilities that instantly restore lost stamina, enabling the target to perform physical actions such as sprinting or power attacks. This effect is available as a spell, in pre-crafted potions, and can also be brewed into custom potions, making it a valuable tool for warriors. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Restore Stamina effect: Bear Claws, Bee, Charred Skeever Hide, Eye of Sabre Cat, Hawk Beak, Honeycomb, Large Antlers, Mudcrab Chitin, Orange Dartwing, Pearl, Pine Thrush Egg, Powdered Mammoth Tusk, Purple Mountain Flower, Sabre Cat Tooth, Silverside Perch, Small Pearl, Torchbug Thorax", + "display_name": "restore_stamina", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Revenant is a Conjuration spell that reanimates a more powerful dead body to fight for the caster for a limited time. It requires an Adept skill level to cast.", + "display_name": "revenant", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Soul Tear is a Shout that cuts through flesh and shatters the soul, allowing you to command the will of the fallen. The three words of power in this Shout are Rii (Essence), which targets the essence of the foe; Vaaz (Tear), which rends their soul apart; and Zol (Zombie), which raises the fallen to serve you as a zombie under your control.", + "display_name": "rii_vaaz_zol", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rockjoint is an acute disease that affects a victim's manual dexterity and ability to use melee weapons, causing painful swelling and immobility of the joints. It can be contracted from wolves, alit, zombies, and domesticated guar. As the disease progresses, it severely diminishes the effectiveness of one-handed and two-handed weapon damage, limiting the victim's combat capabilities.", + "display_name": "rockjoint", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rout is an Illusion spell that causes a target to flee in terror, forcing them to run away from the caster and their allies. It requires an Adept skill level to cast.", + "display_name": "rout", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Alteration, Destruction, Illusion, and Restoration spells that create magical traps on surfaces, detonating when triggered by an enemy and dealing elemental damage such as fire, frost, or shock. This effect is only available as a spell, making it a favorite for mages setting ambushes or protecting key locations.", + "display_name": "rune", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sanguinare Vampiris is a disease that causes weakness and a peculiar thirst in its victims, eventually transforming them into vampires after a three-day incubation period. During this time, the victim's health is reduced, and they experience a significant decrease in strength during the day. If not cured within the three days, the disease progresses into full vampirism, which is notoriously difficult to cure.", + "display_name": "sanguinare_vampiris", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that deal immediate lightning damage and drain magicka from the target. This effect is available as a spell, can be applied through custom enchanting, and is also found on enchanted gear, making it a staple for countering mages.", + "display_name": "shock_damage", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that reduce the target;s movement speed, leaving them vulnerable to follow-up attacks. This effect is available in pre-crafted potions and can be brewed into custom potions, making it a practical choice for crowd control. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Slow effect: Bungler;s Bane, Burnt Spriggan Wood, Deathbell, Large Antlers, Poison Bloom, River Betty, Salt Pile, Trama Root", + "display_name": "slow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Slow Time is a Shout that commands time itself to obey, causing the world around you to stand still while you move at normal speed. The three words of power in this Shout are Tiid (Time), which controls the flow of time; Klo (Sand), which symbolizes the slow passage of time, like grains of sand slipping away; and Ul (Eternity), which extends the effect, allowing time to remain frozen for a longer duration.", + "display_name": "slow_time", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Destruction enchantments that enhance the effectiveness of crafting and improving weapons and armor. This effect is available through custom enchanting and is also found on enchanted gear, making it invaluable to blacksmiths and warriors.", + "display_name": "smithing_expertise", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Soul Tear is a Shout that cuts through flesh and shatters the soul, allowing you to command the will of the fallen. The three words of power in this Shout are Rii (Essence), which targets the essence of the foe; Vaaz (Tear), which rends their soul apart; and Zol (Zombie), which raises the fallen to serve you as a zombie under your control.", + "display_name": "soul_tear", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Conjuration spells that bind the soul of a defeated enemy to a soul gem, allowing it to be used in enchanting or recharging magical items. This effect is widely available as a spell, can be applied through custom enchanting, and is found on enchanted weapons, making it a vital tool for mages.", + "display_name": "soul_trap", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sparks is a Destruction spell that discharges a stream of electrical energy, dealing shock damage to health and magicka. It requires a Novice skill level to cast.", + "display_name": "sparks", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Spectral Arrow is a Conjuration spell that summons a magical arrow to strike a target, dealing damage and staggering them. It requires an Adept skill level to cast.", + "display_name": "spectral_arrow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are defensive Destruction abilities that absorb incoming spells and convert their energy into magicka for the caster. This effect is rare and not available through standard enchanting or potions, making it a highly coveted ability for mages.", + "display_name": "spell_absorption", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steadfast Ward is a Restoration spell that creates a powerful magical barrier around the caster, absorbing a large amount of magic damage. It requires an Adept skill level to cast.", + "display_name": "steadfast_ward", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stendarr's Aura is a Restoration spell that creates an aura around the caster, dealing damage to nearby undead, daedra, and other enemies while also healing the caster over time. It requires an Expert skill level to cast.", + "display_name": "stendarr's_aura", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stoneflesh is an Alteration spell that enhances the caster's armor rating for a short duration, offering improved protection. It requires an Apprentice skill level to cast.", + "display_name": "stoneflesh", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Storm Call is a Shout that summons a destructive storm, calling down lightning to strike your enemies. The three words of power in this Shout are Strun (Storm), which conjures the violent storm; Bah (Wrath), which intensifies the fury of the storm; and Qo (Lightning), which directs the lightning to strike down foes with powerful bolts.", + "display_name": "storm_call", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Storm Thrall is a Conjuration spell that permanently summons a Storm Atronach to fight for the caster until it is defeated. It requires a Master skill level to cast.", + "display_name": "storm_thrall", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Storm Call is a Shout that summons a destructive storm, calling down lightning to strike your enemies. The three words of power in this Shout are Strun (Storm), which conjures the violent storm; Bah (Wrath), which intensifies the fury of the storm; and Qo (Lightning), which directs the lightning to strike down foes with powerful bolts.", + "display_name": "strun_bah_qo", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Elemental Fury is a Shout that imbues your arms with the speed of wind, allowing for faster weapon strikes. The three words of power in this Shout are Su (Air), which grants you the swiftness of wind; Grah (Battle), which enhances your combat prowess; and Dun (Grace), which allows for more fluid and rapid attacks.", + "display_name": "su_grah_dun", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Summon Arniel's Shade is a Conjuration spell that summons the shade of Arniel Gane to fight alongside the caster for a limited time. It requires an Expert skill level to cast.", + "display_name": "summon_arniel's_shade", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Summon Durnehviir is a Shout that calls upon Durnehviir, summoning him from the Soul Cairn to aid you in your time of need. The three words of power in this Shout are Dur (Curse), which invokes the dark power of the Soul Cairn; Neh (Never), which calls Durnehviir from his eternal rest; and Viir (Dying), which brings him forth from the afterlife to fight alongside you.", + "display_name": "summon_durnehviir", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Summon Unbound Dremora is a Conjuration spell that summons an unbound Dremora, which may not be under the caster's control and can act independently. It requires an Adept skill level to cast.", + "display_name": "summon_unbound_dremora", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that deal radiant damage specifically to undead, particularly vampires. This effect is only available as a spell, making it a potent weapon for combating unholy forces.", + "display_name": "sun_damage", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sun Fire is a Restoration spell that unleashes a burst of fiery light, dealing damage to undead and healing the caster if the target is undead. It requires an Adept skill level to cast.", + "display_name": "sun_fire", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Telekinesis is an Alteration spell that allows the caster to lift, move, and manipulate objects from a distance. It requires an Adept skill level to cast.", + "display_name": "telekinesis", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Alteration spells that allow the caster to control and fire arrows using telekinetic energy, removing the need for a physical bow. This effect is only accessible as a spell, providing a unique combination of magic and archery.", + "display_name": "telekinesis_arrow", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Alteration spells that enable the caster to manipulate objects from a distance, moving, lifting, or drawing them closer without physical contact. This effect is only available as a spell and highlights the versatility of Alteration magic for practical problem-solving and exploration.", + "display_name": "telekinesis_effect", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Alteration spells that instantly summon the caster;s bonded animal companion or summoned creature to their side. This effect is only available as a spell, ensuring that loyal companions remain close during travel or combat, even when separated by great distances.", + "display_name": "teleport_pet", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Throw Voice is a Shout that allows your voice to be heard from an unknown source, tricking enemies into seeking it out. The three words of power in this Shout are Zul (Voice), which produces the sound of your voice; Mey (Fool), which deceives the listener, making them believe the voice is coming from a different location; and Gut (Far), which projects the sound over a great distance, drawing enemies away from their position.", + "display_name": "throw_voice", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Thunderbolt is a Destruction spell that releases a concentrated bolt of shock magic at a target, dealing high shock damage upon impact. It requires an Expert skill level to cast.", + "display_name": "thunderbolt", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Slow Time is a Shout that commands time itself to obey, causing the world around you to stand still while you move at normal speed. The three words of power in this Shout are Tiid (Time), which controls the flow of time; Klo (Sand), which symbolizes the slow passage of time, like grains of sand slipping away; and Ul (Eternity), which extends the effect, allowing time to remain frozen for a longer duration.", + "display_name": "tiid_klo_ul", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Transmute is an Alteration spell that converts one piece of unrefined iron ore into silver ore or silver ore into gold ore. It requires an Apprentice skill level to cast.", + "display_name": "transmute", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are utility-focused Alteration spells that transform iron ore into silver ore and silver ore into gold ore. This effect is only available as a spell, offering resourceful adventurers a way to increase the value of raw materials for crafting or trade.", + "display_name": "transmute_mineral_ore", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Turn Greater Undead is a Restoration spell that causes powerful undead creatures, such as Draugr Deathlords and Liches, to flee in terror, rendering them temporarily neutralized. It requires an Expert skill level to cast.", + "display_name": "turn_greater_undead", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Turn Lesser Undead is a Restoration spell that forces weaker undead creatures to flee in terror, making them temporarily neutralized. It requires an Apprentice skill level to cast.", + "display_name": "turn_lesser_undead", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Restoration spells that force undead creatures to flee in fear, ensuring they cannot approach or attack the caster. This effect is available as a spell and can also be found on enchanted weapons and gear, making it a sacred tool of Arkay;s faithful.", + "display_name": "turn_undead", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Unrelenting Force is a Shout that uses raw power to push aside anything or anyone in your path. The three words of power in this Shout are Fus (Force), which unleashes the power of your voice; Ro (Balance), which knocks back enemies and objects; and Dah (Push), which sends your target flying, clearing your way.", + "display_name": "unrelenting_force", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampire's Bane is a Restoration spell that unleashes a burst of light, dealing damage to vampires and healing the caster if the target is a vampire. It requires an Adept skill level to cast.", + "display_name": "vampire's_bane", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampiric Drain is a Destruction spell that drains the life force from a target, restoring health to the caster while dealing damage to the enemy. It requires an Apprentice skill level to cast.", + "display_name": "vampiric_drain", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampirism is a disease that transforms individuals into blood-drinking creatures of the night. The disease is contracted through encounters with vampires, typically when they use a draining power, with a chance of infection. Initially, the disease causes a slight reduction in health and can be easily cured. However, if not treated within a few days, the disease progresses into full vampirism, which becomes irreversible. In some cases, individuals can be turned into vampires through specific rituals or encounters, gaining special powers.\n\nVampirism changes the appearance of the afflicted significantly. Those transformed develop dark, reddish eyes, pale skin, fangs, and gaunt faces. Certain races have additional physical traits, such as slitted pupils or multiple sets of fangs, and their skin or fur becomes paler. In some instances, vampirism causes even more monstrous features, including bat-like characteristics. Vampires are generally feared and despised, with the most advanced stages of vampirism leading to hostility from others. \n\nVampirism in Tamriel is a curse originating from Molag Bal, the Daedric Prince of Domination, who created the first vampire, Lamae Beolfag, after violating her. Her transformation into a vampire spread across Tamriel, making a mockery of the Aedra Arkay’s sphere of life and death. While the traditional belief traces vampirism back to Molag Bal, other stories suggest it can be caused by magical artifacts, curses, or necromancy, with variations in regional lore. Some alchemists have even replicated the disease through experimentation, creating new strains of vampirism, such as Chaotica Vampiris, which transforms afflicted individuals into monstrous forms. Vampires' bloodlines can vary greatly, with some strains possessing unique traits, and many are linked to Daedric energies, regardless of their origin. The result is always the same: an undead creature that shuns sunlight and craves blood.", + "display_name": "vampirism", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Cyclone is a Shout that creates a whirling cyclone, sowing chaos and disrupting your enemies. The three words of power in this Shout are Ven (Wind), which conjures the powerful winds; Gaar (Unleash), which releases the force of the storm; and Nos (Strike), which directs the cyclone to strike down your foes with devastating force.", + "display_name": "ven_gaar_nos", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vision of the Tenth Eye is an Alteration spell that allows the caster to see through solid walls, revealing hidden enemies and objects in their line of sight. It requires an Expert skill level to cast.", + "display_name": "vision_of_the_tenth_eye", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wall of Flames is a Destruction spell that creates a barrier of fire on the ground, dealing fire damage to any enemies who pass through it. It requires an Expert skill level to cast.", + "display_name": "wall_of_flames", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wall of Frost is a Destruction spell that creates a barrier of ice on the ground, dealing frost damage and slowing enemies who pass through it. It requires an Expert skill level to cast.", + "display_name": "wall_of_frost", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wall of Storms is a Destruction spell that creates a barrier of electrical energy on the ground, dealing shock damage and paralyzing enemies who pass through it. It requires an Expert skill level to cast.", + "display_name": "wall_of_storms", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are defensive Restoration spells that project a protective barrier, absorbing incoming spells and reducing physical damage. This effect is available as a spell and can also be found on enchanted gear, offering versatile defense for mages.", + "display_name": "ward", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are defensive Alteration spells that grant the ability to breathe underwater for a limited time. This effect is available as a spell, can be found in pre-crafted potions, brewed into custom potions, and applied to enchanted items, making it essential for exploring submerged ruins and retrieving sunken treasures. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Waterbreathing effect: Chicken's Egg, Histcarp, Nordic Barnacle, Slaughterfish Egg, Slaughterfish Scales", + "display_name": "waterbreathing", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are defensive Alteration abilities that allow the caster to traverse water surfaces as if they were solid ground. This effect can be found in pre-crafted potions or on enchanted items, offering adventurers a practical alternative to swimming.", + "display_name": "waterwalking", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that increase the target;s vulnerability to fire damage, amplifying the effects of fire-based attacks. This effect is available in pre-crafted potions and can be brewed into custom potions, making it a powerful complement to fire magic. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Weakness to Fire effect: Bleeding Crown, Burnt Spriggan Wood, Frost Salts, Ice Wraith Teeth, Juniper Berries, Moon Sugar, Powdered Mammoth Tusk", + "display_name": "weakness_to_fire", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that increase the target;s susceptibility to frost damage, amplifying the effects of cold-based attacks. This effect is available in pre-crafted potions and can be brewed into custom potions, offering an edge in icy battles. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Weakness to Frost effect: Abecean Longfin, Ash Hopper Jelly, Elves Ear, Fire Salts, Ice Wraith Teeth, White Cap", + "display_name": "weakness_to_frost", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that reduce the target;s resistance to all forms of magic, leaving them vulnerable to spells. This effect is available in pre-crafted potions and can be brewed into custom potions, making it highly versatile for mages. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Weakness to Magic effect: Briar Heart, Hagraven Claw, Human Flesh, Void Salts", + "display_name": "weakness_to_magic", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that decrease the target;s resistance to toxins, enhancing the potency of applied poisons. This effect is available in pre-crafted potions and can be brewed into custom potions, making it a crucial tool for alchemists and poisoners. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Weakness to Poison effect: Abecean Longfin, Deathbell, Giant Lichen, Pine Thrush Egg", + "display_name": "weakness_to_poison", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction abilities that increase the target;s vulnerability to shock damage, amplifying the destructive power of lightning-based attacks. This effect is available in pre-crafted potions and can also be brewed into custom potions, making it an effective choice against enemies weak to electricity. Generally combining at least two of the following ingredients, provided they share this effect, will create a potion with the Weakness to Shock effect: Glow Dust, Glowing Mushroom, Hanging Moss, Hagraven Feathers, Void Salts", + "display_name": "weakness_to_shock", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These magical effects are offensive Destruction spells that surround the caster with a vortex of wind, repelling enemies and creating a protective barrier. This effect is only available as a spell, making it a defensive tool for combat-focused mages.", + "display_name": "whirlwind_cloak", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Whirlwind Sprint is a Shout that propels you forward with the speed of a tempest, allowing you to rush ahead in the blink of an eye. The three words of power in this Shout are Wuld (Whirlwind), which summons the rushing wind; Nah (Fury), which intensifies the speed and force of the wind; and Kest (Tempest), which carries you swiftly forward, like a powerful storm.", + "display_name": "whirlwind_sprint", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Witbane is an acute disease that affects a victim's memory, thought processes, and ability to regenerate magicka, causing symptoms like memory loss and disorientation. It can be contracted from dogs, sabre cats, and rats. As the disease progresses, it severely impairs magicka recovery, eventually preventing the victim from recovering magicka altogether if left untreated.", + "display_name": "witbane", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Whirlwind Sprint is a Shout that propels you forward with the speed of a tempest, allowing you to rush ahead in the blink of an eye. The three words of power in this Shout are Wuld (Whirlwind), which summons the rushing wind; Nah (Fury), which intensifies the speed and force of the wind; and Kest (Tempest), which carries you swiftly forward, like a powerful storm.", + "display_name": "wuld_nah_kest", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fire Breath is a Shout that allows you to inhale air and exhale a powerful flame, creating an inferno. The three words of power in this Shout are Yol (Fire), which conjures the flames; Toor (Inferno), which intensifies the blaze into a fiery eruption; and Shul (Sun), which amplifies the heat and power of the flames to scorch your enemies.", + "display_name": "yol_toor_shul", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Throw Voice is a Shout that allows your voice to be heard from an unknown source, tricking enemies into seeking it out. The three words of power in this Shout are Zul (Voice), which produces the sound of your voice; Mey (Fool), which deceives the listener, making them believe the voice is coming from a different location; and Gut (Far), which projects the sound over a great distance, drawing enemies away from their position.", + "display_name": "zul_mey_gut", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Disarm is a Shout that defies steel, ripping the weapon from an opponent's grasp. The three words of power in this Shout are Zun (Weapon), which targets the weapon of your foe; Haal (Hand), which pries it from their grip; and Viik (Defeat), which ensures their weapon is taken away in defeat.", + "display_name": "zun_haal_viik", + "emotion": "", + "importance": 0.75, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic drains health from an enemy and gives it to the person using the enchantment. An alchemist or mage might know more though.", + "display_name": "absorb_health", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This effect steals magicka from the target, giving it to whoever is wielding the enchanted item. A mage might know more though.", + "display_name": "absorb_magicka", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment takes stamina from an enemy, giving it to the user to keep them fighting longer. A mage might know more though.", + "display_name": "absorb_stamina", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "animal_allegiance", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Spells like this make a person harder to hurt, as if they're wearing invisible armor. A mage might know more though.", + "display_name": "armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Arniel's Convection is a spell that creates a stream of fire around the caster, dealing fire damage to nearby enemies over time. You do not know much else about this spell.", + "display_name": "arniel's_convection", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ash Rune is a spell that places a rune on the ground, which explodes when triggered, trapping targets in a cloud of ash and holding them still for a short time. You do not know much else about this spell.", + "display_name": "ash_rune", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell traps someone in ash, leaving them stuck but safe from harm for a bit. A mage might know more though.", + "display_name": "ash_shell", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ataxia is a disease that causes generalized pain, muscle stiffness, paleness, and affects muscle coordination with complex tasks. It can be contracted from slaughterfish, bears, zombies, skeevers, and alit. You do not know much else about this disease, but an alchemist would.", + "display_name": "ataxia", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "aura_whisper", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bane of the Undead is a spell that significantly damages undead creatures in the area, while healing the caster if the target is undead. You do not know much else about this spell.", + "display_name": "bane_of_the_undead", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell sends summoned Daedra back to where they came from, making them disappear. A mage might know more though.", + "display_name": "banish", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Banish Daedra is a spell that sends a summoned Daedra back to Oblivion, banishing it from the caster's presence. You do not know much else about this spell.", + "display_name": "banish_daedra", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "battle_furry", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "become_ethereal", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "bend_will", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Black-Heart Blight is an acute disease that affects strength and endurance, potentially draining the victim's carry weight. It can be contracted from corprus beasts, other blight monsters, or zombies, allowing the disease to persist even after the end of the Blight in 3E 427. You do not know much else about this disease, but an alchemist would.", + "display_name": "black_heart_blight", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Blizzard is a spell that summons a powerful snowstorm, dealing continuous frost damage to all enemies within its area of effect. You do not know much else about this spell.", + "display_name": "blizzard", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bone Break Fever is a disease contracted from rats and bears, causing a loss of strength and stamina. It initially drains your stamina and progresses to more severe stages, draining up to even more stamina at its most crippling. You do not know much else about this disease, but an alchemist would.", + "display_name": "bone_break_fever", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bound Battleaxe is a spell that summons a magical battleaxe made of Daedric energy, providing the caster with a temporary two-handed weapon. You do not know much else about this spell.", + "display_name": "bound_battleaxe", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bound Bow is a spell that summons a magical bow made of Daedric energy, along with a quiver of ethereal arrows, providing the caster with a temporary ranged weapon. You do not know much else about this spell.", + "display_name": "bound_bow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bound Dagger is a spell that summons a magical dagger made of Daedric energy, giving the caster a temporary weapon to use in combat. You do not know much else about this spell.", + "display_name": "bound_dagger", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Bound Sword is a spell that summons a magical sword made of Daedric energy, providing the caster with a temporary weapon to use in battle. You do not know much else about this spell.", + "display_name": "bound_sword", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic creates a weapon out of thin air, like a glowing sword or bow, to use in a fight. A mage might know more though.", + "display_name": "bound_weapon", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Brain Rot is a disease contracted from zombies and hagravens, causing a gradual loss of strength and magicka. As the disease progresses, it severely weakens the victim’s magical abilities and overall physical condition. You do not know much else about this disease, but an alchemist would.magicka and becoming significantly weaker.", + "display_name": "brain_rot", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This powerful effect ties someone;s life force to a special heart, making them stronger. A mage might know more though.", + "display_name": "briarheart_geis", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Brown Rot is a mild disease that affects a victim's strength and behavior, causing symptoms such as necrosis and sleeplessness. It can be contracted from draugr and other undead creatures. You do not know much else about this disease, but an alchemist would.", + "display_name": "brown_rot", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "call_dragon", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "call_of_valour", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Call to Arms is a spell that boosts the combat abilities of nearby allies, increasing their stamina, health, and attack power for a short period. You do not know much else about this spell.", + "display_name": "call_to_arms", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Calm is a spell that pacifies a target, reducing their hostility and stopping them from attacking. You do not know much else about this spell.", + "display_name": "calm", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Candlelight is a spell that makes a floating light appear above the caster, lighting up the area around them. You do not know much else about this spell.", + "display_name": "candlelight", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lightning Rune is a spell that places a magical rune on the ground, which explodes with shock damage when triggered by an enemy. You do not know much else about this spell.", + "display_name": "chain_lightning", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment randomly deals fire, frost, or shock damage, making it unpredictable in battle. A mage might know more though.", + "display_name": "chaos_damage", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Circle of Protection is a spell that creates a protective barrier on the ground, repelling undead and daedra from entering the area while healing allies within it. You do not know much else about this spell.", + "display_name": "circle_of_protection", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell helps you find your way by showing a magical path to your destination. A mage might know more though.", + "display_name": "clairvoyance", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "clear_skies", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Close Wounds is a spell that rapidly heals the caster, restoring a significant amount of health. You do not know much else about this spell.", + "display_name": "close_wounds", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell forces a summoned creature to obey the caster, even if it doesn;t want to. A mage might know more though.", + "display_name": "command", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Command Daedra is a spell that forces a summoned or hostile Daedra to fight for the caster for a short time. You do not know much else about this spell.", + "display_name": "command_daedra", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic calls creatures from other worlds to fight alongside you, like atronachs or Daedra. A mage might know more though.", + "display_name": "conjure", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Ash Guardian is a spell that summons a powerful Ash Guardian to fight for the caster, but it requires a heart stone to keep the creature under control. You do not know much else about this spell.", + "display_name": "conjure_ash_guardian", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Ash Spawn is a spell that summons an Ash Spawn, a fiery creature, to fight by the caster's side for a short time. You do not know much else about this spell.", + "display_name": "conjure_ash_spawn", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Dragon Priest is a spell that summons a spectral Dragon Priest to fight alongside the caster for a short time. You do not know much else about this spell.", + "display_name": "conjure_dragon_priest", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Dremora Lord is a spell that summons a powerful Dremora Lord to fight for the caster for a short time. You do not know much else about this spell.", + "display_name": "conjure_dremora_lord", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Familiar is a spell that summons a spectral wolf to fight by the caster's side for a short time. You do not know much else about this spell.", + "display_name": "conjure_familiar", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Flame Atronach is a spell that summons a Flame Atronach, a fiery creature, to fight for the caster for a short time. You do not know much else about this spell.", + "display_name": "conjure_flame_atronach", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Frost Atronach is a spell that summons a Frost Atronach, a creature made of ice, to fight for the caster for a short time. You do not know much else about this spell.", + "display_name": "conjure_frost_atronach", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Mistman is a spell that summons a spectral Mistman from the Soul Cairn to fight by the caster's side for a short time. You do not know much else about this spell.", + "display_name": "conjure_mistman", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Seeker is a spell that summons a Seeker from Apocrypha to fight alongside the caster for a short time. You do not know much else about this spell.", + "display_name": "conjure_seeker", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Conjure Storm Atronach is a spell that summons a powerful Storm Atronach to fight for the caster for a short time. You do not know much else about this spell.", + "display_name": "conjure_storm_atronach", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Courage is a spell that boosts the target's confidence, enhancing their combat abilities and making them more likely to attack enemies. You do not know much else about this spell.", + "display_name": "courage", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic removes diseases from your body, keeping you healthy and strong. An alchemist or mage might know more though.", + "display_name": "cure_disease", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "cyclone", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This effect harms an enemy by lowering their health right away, often used with poisons. An alchemist or mage might know more though.", + "display_name": "damage_health", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic stops someone;s health from recovering as fast, making wounds last longer. A mage might know more though.", + "display_name": "damage_health_regeneration", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This effect lowers an enemy;s magicka so they can;t cast as many spells. An alchemist or mage might know more though.", + "display_name": "damage_magicka", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment slows down how quickly someone;s magicka comes back, leaving them weaker. An alchemist or mage might know more though.", + "display_name": "damage_magicka_regeneration", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic drains an enemy;s stamina, making it harder for them to fight or run away. An alchemist or mage might know more though.", + "display_name": "damage_stamina", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic slows down how fast someone gets their stamina back, leaving them exhausted. An alchemist or mage might know more though.", + "display_name": "damage_stamina_regeneration", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dead Thrall is a spell that permanently reanimates a powerful dead body, bringing it back to fight for the caster until it is destroyed. You do not know much else about this spell.", + "display_name": "dead_thrall", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Detect Dead is a spell that makes undead, Daedra, and automatons glow, allowing the caster to see them through walls. You do not know much else about this spell.", + "display_name": "detect_dead", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell helps you sense people or animals nearby, even if you can;t see them. A mage might know more though.", + "display_name": "detect_life", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell shows where undead creatures are hiding, making them easier to find. A mage might know more though.", + "display_name": "detect_undead", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "disarm", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "dismay", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "dragon_aspect", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "dragon_rend", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dragonhide is a spell that makes the caster's skin as tough as a dragon's, greatly reducing the damage they take for a short time. You do not know much else about this spell.", + "display_name": "dragonhide", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "drain_vitality", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dread Zombie is a spell that reanimates a very powerful dead body, bringing it back to life to fight for the caster for a short time. You do not know much else about this spell.", + "display_name": "dread_zombie", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Droops is a serious disease that weakens a victim's strength and ability to use weapons, leading to weak and flaccid muscle tissues. It can be contracted from all forms and stages of kwama, as well as from sheep and ash hoppers. You do not know much else about this disease, but an alchemist would.", + "display_name": "droops", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "dur_neh_viir", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ebonyflesh is a spell that makes the caster’s skin as strong as ebony, offering powerful protection for a short time. You do not know much else about this spell.", + "display_name": "ebonyflesh", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "elemental_fury", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Equilibrium is a spell that drains the caster's health to refill their magicka, letting them cast more spells but weakening their body. You do not know much else about this spell.", + "display_name": "equilibrium", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Expel Daedra is a spell that banishes a summoned Daedra back to Oblivion, and it is effective against more powerful Daedra than the standard banishment spells. You do not know much else about this spell.", + "display_name": "expel_daedra", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "faas_ru_maar", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment makes you faster, helping you move quickly and avoid danger. A mage might know more though.", + "display_name": "fast", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fast Healing is a spell that quickly restores a significant amount of health to the target, whether it be the caster or an ally. You do not know much else about this spell.", + "display_name": "fast_healing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell makes enemies so scared they run away and won;t fight for a while. An alchemist or mage might know more though.", + "display_name": "fear", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "feim_zii_gron", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This effect combines fire damage and soul trapping, capturing a soul when the enemy is defeated. A mage might know more though.", + "display_name": "fiery_soul_trap", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "fire_breath", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell burns enemies with fire, causing damage over time and making them weaker. A mage might know more though.", + "display_name": "fire_damage", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fire Rune is a spell that places an explosive rune on the ground, which detonates when triggered, dealing fire damage to nearby enemies. You do not know much else about this spell.", + "display_name": "fire_rune", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fire Storm is a spell that creates a massive explosion of fire, dealing intense fire damage over a large area. You do not know much else about this spell.", + "display_name": "fire_storm", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fireball is a spell that hurls a fiery ball at a target, causing an explosion that deals damage in an area around it. You do not know much else about this spell.", + "display_name": "fireball", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Firebolt is a spell that launches a single bolt of fire at a target, causing immediate fire damage upon impact. You do not know much else about this spell.", + "display_name": "firebolt", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Flame Cloak is a spell that surrounds the caster with a fiery aura, dealing fire damage to any nearby enemies. You do not know much else about this spell.", + "display_name": "flame_cloak", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Flame Thrall is a spell that permanently summons a Flame Atronach to fight for the caster until it is defeated. You do not know much else about this spell.", + "display_name": "flame_thrall", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Flames is a spell that releases a continuous stream of fire, burning enemies and draining their health and stamina. You do not know much else about this spell.", + "display_name": "flames", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Flaming Familiar is a spell that summons a spectral wolf engulfed in flames, which charges at enemies and explodes upon impact. You do not know much else about this spell.", + "display_name": "flaming_familiar", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "fo_krah_diin", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment helps you heal faster during fights, keeping you alive longer. A mage might know more though.", + "display_name": "fortified_combat_healing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment makes potions and poisons you create stronger and more effective. A mage might know more though.", + "display_name": "fortify_alchemy", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic helps you cast Alteration spells better, making them stronger or last longer. An alchemist or mage might know more though.", + "display_name": "fortify_alteration", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment improves your aim and the damage of your bow attacks, useful for hunters. An alchemist or mage might know more though.", + "display_name": "fortify_archery", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic helps you get better deals when trading, making it easier to save money. An alchemist or mage might know more though.", + "display_name": "fortify_barter", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment makes shields more effective, helping you block more damage in combat. An alchemist or mage might know more though.", + "display_name": "fortify_block", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment lets you carry more items without being slowed down. An alchemist or mage might know more though.", + "display_name": "fortify_carry_weight", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic makes Conjuration spells stronger, making summoned creatures more powerful. An alchemist or mage might know more though.", + "display_name": "fortify_conjuration", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment makes Destruction spells hit harder, dealing more damage to enemies. An alchemist or mage might know more though.", + "display_name": "fortify_destruction", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic helps you create stronger enchantments, making enchanted gear more powerful. An alchemist or mage might know more though.", + "display_name": "fortify_enchanting", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic increases your health, making it easier to survive in battles. An alchemist or mage might know more though.", + "display_name": "fortify_health", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment makes heavy armor more effective, helping you stay safe in combat. An alchemist or mage might know more though.", + "display_name": "fortify_heavy_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic makes Illusion spells stronger, improving their ability to trick or calm enemies. An alchemist or mage might know more though.", + "display_name": "fortify_illusion", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic makes light armor more protective while still keeping you agile. An alchemist or mage might know more though.", + "display_name": "fortify_light_armor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment makes it easier to pick locks, helping you open even the toughest chests. An alchemist or mage might know more though.", + "display_name": "fortify_lockpicking", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment increases your magicka, letting you cast more spells before running out. An alchemist or mage might know more though.", + "display_name": "fortify_magicka", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic makes one-handed weapons, like swords and daggers, deal more damage. An alchemist or mage might know more though.", + "display_name": "fortify_onehanded", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment improves your ability to persuade or intimidate others in conversations. A mage might know more though.", + "display_name": "fortify_persuasion", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic makes it easier to pick pockets without being noticed. An alchemist or mage might know more though.", + "display_name": "fortify_pickpocket", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic makes Restoration spells stronger, improving your healing and protective spells. An alchemist or mage might know more though.", + "display_name": "fortify_restoration", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment reduces the time you have to wait between shouts, letting you use them more frequently. A mage might know more though.", + "display_name": "fortify_shouts", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment makes crafting and upgrading weapons and armor more effective. An alchemist or mage might know more though.", + "display_name": "fortify_smithing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic helps you move more quietly, making it harder for enemies to detect you. An alchemist or mage might know more though.", + "display_name": "fortify_sneak", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment makes all your spells stronger, no matter which school of magic they belong to. A mage might know more though.", + "display_name": "fortify_spells", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic boosts your stamina, helping you run, block, and attack more often. An alchemist or mage might know more though.", + "display_name": "fortify_stamina", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic makes two-handed weapons, like greatswords and warhammers, hit harder. An alchemist or mage might know more though.", + "display_name": "fortify_twohanded", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic makes unarmed attacks stronger, useful for brawlers who fight with their fists. A mage might know more though.", + "display_name": "fortify_unarmed_damage", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Freeze is a spell that encases a target in ice, temporarily immobilizing them. You do not know much else about this spell.", + "display_name": "freeze", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell makes enemies go wild, attacking anything nearby, even their allies. An alchemist or mage might know more though.", + "display_name": "frenzy", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frenzy Rune is a spell that places a magical rune on the ground, causing any enemy that steps on it to become enraged and attack nearby creatures or people. You do not know much else about this spell.", + "display_name": "frenzy_rune", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "frost_breath", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frost Cloak is a spell that surrounds the caster with a frosty aura, dealing frost damage to nearby enemies and slowing their movement. You do not know much else about this spell.", + "display_name": "frost_cloak", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell freezes enemies, slowing them down and causing them harm with cold magic. A mage might know more though.", + "display_name": "frost_damage", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frost Rune is a spell that places a magical rune on the ground, which explodes in a burst of frost damage when triggered by an enemy. You do not know much else about this spell.", + "display_name": "frost_rune", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frost Thrall is a spell that permanently summons a Frost Atronach to fight for the caster until it is defeated. You do not know much else about this spell.", + "display_name": "frost_thrall", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Frostbite is a spell that releases a continuous stream of frost, freezing enemies and draining their health and stamina. You do not know much else about this spell.", + "display_name": "frostbite", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Fury is a spell that causes a target to become enraged, making them attack anything in their path, including allies. You do not know much else about this spell.", + "display_name": "fury", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "fus_ro_dah", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "gaan_lah_haas", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "gol_hah_dov", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Grand Healing is a spell that restores a large amount of health to all nearby allies within its area of effect. You do not know much else about this spell.", + "display_name": "grand_healing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Greater Ward is a spell that creates a powerful magical shield around the caster, absorbing a substantial amount of magic damage. You do not know much else about this spell.", + "display_name": "greater_ward", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Greenspore is a serious disease that affects a victim's behavior, causing irritability, violent outbursts, and sometimes mild dementia. It can be contracted from slaughterfish or zombies. You do not know much else about this disease, but an alchemist would.", + "display_name": "greenspore", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Guardian Circle is a spell that creates a protective circle on the ground, healing allies within its area and damaging nearby undead. You do not know much else about this spell.", + "display_name": "guardian_circle", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Gutworm is a disease contracted from trolls in Skyrim, leading to symptoms such as reduced stamina and diminished effectiveness of food in restoring hunger. You do not know much else about this disease, but an alchemist would.", + "display_name": "gutworm", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Harmony is a spell that pacifies all nearby creatures and people, making them stop fighting and become neutral toward the caster. You do not know much else about this spell.", + "display_name": "harmony", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heal Other is a spell that allows the caster to restore health to another person, healing them over time. You do not know much else about this spell.", + "display_name": "heal_other", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heal Undead is a spell that heals undead targets, restoring their health over time. You do not know much else about this spell.", + "display_name": "heal_undead", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Healing is a spell that restores a small amount of health to the target, whether it be the caster or another ally. You do not know much else about this spell.", + "display_name": "healing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Healing Hands is a spell that allows the caster to heal a target by touching them, restoring health over a short period. You do not know much else about this spell.", + "display_name": "healing_hands", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "hun_kaal_zoor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment makes weapons stronger against animals, useful for hunters. A mage might know more though.", + "display_name": "huntsmans_prowess", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Hysteria is a spell that causes enemies within its area of effect to become terrified and flee in panic. You do not know much else about this spell.", + "display_name": "hysteria", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "ice_form", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ice Spike is a spell that hurls a sharp shard of ice at a target, dealing frost damage upon impact. You do not know much else about this spell.", + "display_name": "ice_spike", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ice Storm is a spell that summons a swirling storm of ice, dealing frost damage over time to enemies within its area of effect. You do not know much else about this spell.", + "display_name": "ice_storm", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Icy Spear is a spell that hurls a large shard of ice at a target, dealing significant frost damage upon impact. You do not know much else about this spell.", + "display_name": "icy_spear", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ignite is a spell that causes a target to catch fire, dealing fire damage over time. You do not know much else about this spell.", + "display_name": "ignite", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "iiz_slen_nus", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Incinerate is a spell that releases a concentrated blast of fire, dealing massive fire damage to a target and incinerating them. You do not know much else about this spell.", + "display_name": "incinerate", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell makes you invisible so no one can see you, useful for sneaking or hiding. An alchemist or mage might know more though.", + "display_name": "invisibility", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ironflesh is a spell that makes the caster’s skin as strong as iron for a while, offering much better protection from attacks. You do not know much else about this spell.", + "display_name": "ironflesh", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "joor_zah_frul", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "kaan_drem_ov", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "krii_lun_aus", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "kyne's_peace", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "laas_yah_nir", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lesser Ward is a spell that creates a magical shield around the caster, absorbing a small amount of magic damage. You do not know much else about this spell.", + "display_name": "lesser_ward", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "It makes a floating light that follows you around, brightening dark places. A mage might know more though.", + "display_name": "light", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic harms undead with a holy light, dealing extra damage to creatures like vampires. A mage might know more though.", + "display_name": "light_damage", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lightning Bolt is a spell that sends a powerful bolt of lightning at a target, causing shock damage upon impact. You do not know much else about this spell.", + "display_name": "lightning_bolt", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lightning Cloak is a spell that surrounds the caster with a crackling electric aura, dealing shock damage to any nearby enemies. You do not know much else about this spell.", + "display_name": "lightning_cloak", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lightning Rune is a spell that places a magical rune on the ground, which explodes with shock damage when triggered by an enemy. You do not know much else about this spell.", + "display_name": "lightning_rune", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lightning Storm is a spell that releases a continuous stream of powerful lightning bolts, dealing high shock damage to all enemies within its range. You do not know much else about this spell.", + "display_name": "lightning_storm", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "lok_vah_koor", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lycanthropy, also known as werethropy, is a supernatural disease that causes individuals to transform into werebeasts, most commonly werewolves. The condition, viewed as both a curse and a blessing, is contagious and can be spread through bites, claws, or drinking the blood of a lycanthrope. It affects both the body and spirit, with the most common strain, Sanies Lupinus, turning the afflicted into a werewolf. This transformation occurs quickly and is intense, with the disease not discriminating based on race. Lycanthropes are often feared and persecuted for their bloodthirsty nature, though some view the condition as a gift. Transmission typically occurs during combat, but sharing lycanthropic blood can accelerate the curse.", + "display_name": "lycanthropy", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Magelight is a spell that creates a glowing orb of light that can be attached to walls or floors, lighting up the area around it. You do not know much else about this spell.", + "display_name": "magelight", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "marked_for_death", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mass Paralysis is a spell that freezes everyone in a large area, making all targets unable to move for a short time. You do not know much else about this spell.", + "display_name": "mass_paralysis", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Mayhem is a spell that causes a group of enemies within its area of effect to become hostile toward each other, making them attack anyone in sight. You do not know much else about this spell.", + "display_name": "mayhem", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "mid_vur_shaan", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic makes your footsteps silent, so you;re harder to detect while sneaking. A mage might know more though.", + "display_name": "muffle", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "mul_qah_diiv", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Necromantic Healing is a spell that restores health to the caster or an ally by drawing on the life force of a nearby corpse. You do not know much else about this spell.", + "display_name": "necromantic_healing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Oakflesh is a spell that makes the caster's skin tougher, like armor, for a little while, helping them take less damage in a fight. You do not know much else about this spell.", + "display_name": "oakflesh", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "od_ah_viing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell calms angry enemies, making them stop fighting for a while. A mage might know more though.", + "display_name": "pacify", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic freezes someone in place, so they can;t move for a short time. An alchemist or mage might know more though.", + "display_name": "paralyze", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This effect poisons enemies, slowly draining their health over time. A mage might know more though.", + "display_name": "poison_damage", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Poison Rune is a spell that places a magical rune on the ground, which detonates with toxic gas, dealing poison damage to any enemies who step on it. You do not know much else about this spell.", + "display_name": "poison_rune", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "raan_mir_tah", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Raise Zombie is a spell that brings a dead body back to life, reanimating it to fight for the caster for a short time. You do not know much else about this spell.", + "display_name": "raise_zombie", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic inspires your allies, giving them more energy and strength to fight. A mage might know more though.", + "display_name": "rally", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rattles is a mild disease that affects a victim's willpower and dexterity, causing muscle spasms, listlessness, and poor stamina. It can be contracted from nix-hounds, zombies, and chaurus. You do not know much else about this disease, but an alchemist would.", + "display_name": "rattles", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This effect permanently lowers an enemy's health, making them weaker overall. An alchemist or mage might know more though.", + "display_name": "ravage_health", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic reduces how much magicka an enemy can have, making it harder for them to cast spells. An alchemist or mage might know more though.", + "display_name": "ravage_magicka", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This effect lowers an enemy's stamina permanently, making them less effective in combat. An alchemist or mage might know more though.", + "display_name": "ravage_stamina", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic brings a dead body back to life to fight for you, but only for a little while. A mage might know more though.", + "display_name": "reanimate", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Reanimate Corpse is a spell that raises a more powerful dead body, reanimating it to fight for the caster for a short time. You do not know much else about this spell.", + "display_name": "reanimate_corpse", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic slowly restores your health over time, helping you recover from injuries. An alchemist or mage might know more though.", + "display_name": "regenerate_health", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic helps your magicka come back faster, so you can keep casting spells. An alchemist or mage might know more though.", + "display_name": "regenerate_magicka", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic restores your stamina over time, helping you stay active for longer. An alchemist or mage might know more though.", + "display_name": "regenerate_stamina", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Repel Lesser Undead is a spell that causes weaker undead creatures to flee from the caster, temporarily banishing them. You do not know much else about this spell.", + "display_name": "repel_lesser_undead", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Repel Undead is a spell that forces undead creatures to flee in terror, effectively neutralizing them for a short period. You do not know much else about this spell.", + "display_name": "repel_undead", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment makes you less likely to get sick, useful for travelers in dangerous areas. A mage might know more though.", + "display_name": "resist_disease", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic protects you from fire damage, making it easier to face fiery enemies. An alchemist or mage might know more though.", + "display_name": "resist_fire", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic protects you from frost damage, helping you stay safe in icy areas. An alchemist or mage might know more though.", + "display_name": "resist_frost", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic protects you from magical attacks, making spells hurt less. An alchemist or mage might know more though.", + "display_name": "resist_magic", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment makes poisons less harmful to you, keeping you safe from toxins. A mage might know more though.", + "display_name": "resist_poison", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic protects you from shock damage, keeping you safe from lightning attacks. An alchemist or mage might know more though.", + "display_name": "resist_shock", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell heals injuries right away, helping you recover quickly during a fight. An alchemist or mage might know more though.", + "display_name": "restore_health", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic restores health to undead creatures, keeping them alive and able to fight. An alchemist or mage might know more though.", + "display_name": "restore_health_to_undead", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic restores magicka quickly, helping you cast more spells when needed. An alchemist or mage might know more though.", + "display_name": "restore_magicka", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic gives you back stamina, letting you perform actions like sprinting or attacking. An alchemist or mage might know more though.", + "display_name": "restore_stamina", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Revenant is a spell that reanimates a more powerful dead body, bringing it back to life to fight for the caster for a short time. You do not know much else about this spell.", + "display_name": "revenant", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "rii_vaaz_zol", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rockjoint is an acute disease that affects a victim's manual dexterity and ability to use melee weapons, causing painful swelling and immobility of the joints. It can be contracted from wolves, alit, zombies, and domesticated guar. You do not know much else about this disease, but an alchemist would.", + "display_name": "rockjoint", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rout is a spell that causes a target to flee in terror, forcing them to run away from the caster and their allies. You do not know much else about this spell.", + "display_name": "rout", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Runes are traps made with magic that explode when someone gets too close. A mage might know more though.", + "display_name": "rune", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sanguinare Vampiris is a disease that causes weakness and a peculiar thirst in its victims, eventually transforming them into vampires after a three-day incubation period. During this time, the victim's health is reduced, and they experience a significant decrease in strength during the day. You do not know much else about this disease, but an alchemist would.", + "display_name": "sanguinare_vampiris", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell shocks enemies with lightning, hurting them and draining their magicka. A mage might know more though.", + "display_name": "shock_damage", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This effect slows enemies down, making it harder for them to move or escape. An alchemist or mage might know more though.", + "display_name": "slow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "slow_time", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This enchantment helps improve weapons and armor, making them stronger and better to use. A mage might know more though.", + "display_name": "smithing_expertise", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "soul_tear", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell captures the soul of a defeated enemy, storing it in a soul gem for later use. A mage might know more though.", + "display_name": "soul_trap", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sparks is a spell that releases a stream of electrical energy, damaging both the health and magicka of enemies. You do not know much else about this spell.", + "display_name": "sparks", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Spectral Arrow is a spell that summons a magical arrow to strike a target, dealing damage and staggering them. You do not know much else about this spell.", + "display_name": "spectral_arrow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This rare magic absorbs incoming spells, turning them into magicka for the user. A mage might know more though.", + "display_name": "spell_absorption", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steadfast Ward is a spell that creates a powerful magical barrier around the caster, absorbing a large amount of magic damage. You do not know much else about this spell.", + "display_name": "steadfast_ward", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stendarr's Aura is a spell that creates an aura around the caster, dealing damage to nearby undead, daedra, and other enemies, while also healing the caster over time. You do not know much else about this spell.", + "display_name": "stendarr's_aura", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Stoneflesh is a spell that makes the caster’s skin as tough as stone for a short time, providing better protection from attacks. You do not know much else about this spell.", + "display_name": "stoneflesh", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "storm_call", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Storm Thrall is a spell that permanently summons a Storm Atronach to fight for the caster until it is defeated. You do not know much else about this spell.", + "display_name": "storm_thrall", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "strun_bah_qo", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "su_grah_dun", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Summon Arniel's Shade is a spell that summons the shade of Arniel Gane to fight alongside the caster for a short time. You do not know much else about this spell.", + "display_name": "summon_arniel's_shade", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "summon_durnehviir", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Summon Unbound Dremora is a spell that summons an unbound Dremora, which may not be under the caster's control and could act independently. You do not know much else about this spell.", + "display_name": "summon_unbound_dremora", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell harms undead creatures like vampires with radiant light, making it very effective. A mage might know more though.", + "display_name": "sun_damage", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sun Fire is a spell that releases a burst of fiery light, dealing damage to undead and healing the caster if the target is undead. You do not know much else about this spell.", + "display_name": "sun_fire", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Telekinesis is a spell that lets the caster move things from far away, like lifting objects or pulling them closer without touching them. You do not know much else about this spell.", + "display_name": "telekinesis", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell lets you shoot arrows without needing a bow, using magic instead. A mage might know more though.", + "display_name": "telekinesis_arrow", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic lets you move things around from a distance, like pulling or lifting stuff. A mage might know more though.", + "display_name": "telekinesis_effect", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell brings your pet or summoned creature back to your side instantly. A mage might know more though.", + "display_name": "teleport_pet", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "throw_voice", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Thunderbolt is a spell that releases a concentrated bolt of shock magic at a target, dealing high shock damage upon impact. You do not know much else about this spell.", + "display_name": "thunderbolt", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "tiid_klo_ul", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Transmute is a spell that changes iron ore into silver ore, or silver ore into gold ore, making the metals more valuable. You do not know much else about this spell.", + "display_name": "transmute", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell turns iron into silver and silver into gold, useful for making money or fancy things. A mage might know more though.", + "display_name": "transmute_mineral_ore", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Repel Undead is a spell that forces undead creatures to flee in terror, effectively neutralizing them for a short period. You do not know much else about this spell.", + "display_name": "turn_greater_undead", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Turn Lesser Undead is a spell that forces weaker undead creatures to flee in terror, temporarily neutralizing them. You do not know much else about this spell.", + "display_name": "turn_lesser_undead", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell scares undead creatures, making them run away instead of attacking. A mage might know more though.", + "display_name": "turn_undead", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "unrelenting_force", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampire's Bane is a spell that releases a burst of light, dealing damage to vampires and healing the caster if the target is a vampire. You do not know much else about this spell.", + "display_name": "vampire's_bane", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampiric Drain is a spell that drains the life force from a target, restoring health to the caster while dealing damage to the enemy. You do not know much else about this spell.", + "display_name": "vampiric_drain", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vampirism is a disease that transforms individuals into blood-drinking creatures of the night. The disease is contracted through encounters with vampires, typically when they use a draining power, with a chance of infection. Initially, the disease causes a slight reduction in health and can be easily cured. However, if not treated within a few days, the disease progresses into full vampirism, which becomes irreversible. In some cases, individuals can be turned into vampires through specific rituals or encounters, gaining special powers.\n\nVampirism changes the appearance of the afflicted significantly. Those transformed develop dark, reddish eyes, pale skin, fangs, and gaunt faces. Certain races have additional physical traits, such as slitted pupils or multiple sets of fangs, and their skin or fur becomes paler. In some instances, vampirism causes even more monstrous features, including bat-like characteristics. Vampires are generally feared and despised, with the most advanced stages of vampirism leading to hostility from others.", + "display_name": "vampirism", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "ven_gaar_nos", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Vision of the Tenth Eye is a spell that allows the caster to see through solid walls, revealing hidden enemies and objects in their line of sight. You do not know much else about this spell.", + "display_name": "vision_of_the_tenth_eye", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wall of Flames is a spell that creates a barrier of fire on the ground, dealing fire damage to any enemies who pass through it. You do not know much else about this spell.", + "display_name": "wall_of_flames", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wall of Frost is a spell that creates a barrier of ice on the ground, dealing frost damage and slowing any enemies who pass through it. You do not know much else about this spell.", + "display_name": "wall_of_frost", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Wall of Storms is a spell that creates a barrier of electrical energy on the ground, dealing shock damage and paralyzing any enemies who pass through it. You do not know much else about this spell.", + "display_name": "wall_of_storms", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic creates a shield that blocks damage and absorbs incoming spells. A mage might know more though.", + "display_name": "ward", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "With this spell, you can breathe underwater, so you don;t have to worry about drowning. An alchemist or mage might know more though.", + "display_name": "waterbreathing", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic lets you walk on water like it;s solid ground, so you don;t have to swim. A mage might know more though.", + "display_name": "waterwalking", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic makes enemies take more damage from fire attacks, making fire spells stronger. An alchemist or mage might know more though.", + "display_name": "weakness_to_fire", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This effect makes enemies weaker to frost magic, so cold-based attacks hurt them more. An alchemist or mage might know more though.", + "display_name": "weakness_to_frost", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This effect makes enemies vulnerable to all magic, so spells of any kind are more effective. An alchemist or mage might know more though.", + "display_name": "weakness_to_magic", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This effect weakens enemies against poisons, making the toxins more deadly. An alchemist or mage might know more though.", + "display_name": "weakness_to_poison", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This magic makes enemies more vulnerable to shock damage, so lightning attacks hurt more. An alchemist or mage might know more though.", + "display_name": "weakness_to_shock", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This spell surrounds the caster with wind, pushing enemies away and keeping them at a distance. A mage might know more though.", + "display_name": "whirlwind_cloak", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "whirlwind_sprint", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Witbane is an acute disease that affects a victim's memory, thought processes, and ability to regenerate magicka, causing symptoms like memory loss and disorientation. It can be contracted from dogs, sabre cats, and rats.You do not know much else about this disease, but an alchemist would.", + "display_name": "witbane", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "wuld_nah_kest", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "yol_toor_shul", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "zul_mey_gut", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "This is a Dragon Shout. You do not know much about Dragon shouts, or their language.", + "display_name": "zun_haal_viik", + "emotion": "", + "importance": 0.4, + "location": "", + "tags": [], + "type": "SKILL" + } + ], + "entry_count": 542, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Spells", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/Oghma_-_Visual_Descriptions.sknpack b/oghma-sknpack/Oghma_-_Visual_Descriptions.sknpack new file mode 100644 index 0000000..db588d5 --- /dev/null +++ b/oghma-sknpack/Oghma_-_Visual_Descriptions.sknpack @@ -0,0 +1,12675 @@ +{ + "skyrimnet_knowledge_pack": { + "author": "nimmerverse/oghma-proxy", + "description": "Visual descriptions for NPC perception (Omnisight) from CHIM's Oghma Infinium.", + "entries": [ + { + "always_inject": false, + "condition_expr": "", + "content": "A crude arrow with a jagged iron head, splintered wooden shaft, and tattered feather fletching showing significant age and wear.", + "display_name": "Ancient Nord Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An arrow shaft tipped with a translucent, honey-colored amber head and fletched with brown feathers.", + "display_name": "Amber Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A slender arrow with a sharpened bone arrowhead attached to a wooden shaft and fletched with brown feathers.", + "display_name": "Bone Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A translucent purple bow composed of swirling ethereal energy that takes the form of a curved hunting bow.", + "display_name": "Bound Bow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A slender arrow with a sharp metal head and fletching attached to a shaft made from lightweight corkbulb wood.", + "display_name": "Corkbulb Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jet-black arrow with jagged, wing-like barbs near its obsidian head and crimson accents along its ebony shaft.", + "display_name": "Daedric Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black-fletched arrow with an obsidian-like arrowhead and a slender ebony shaft marked with shadowy striations.", + "display_name": "Dark Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pale, ivory-colored arrow featuring a wickedly sharp arrowhead carved from dragon bone and fletched with dark feathers.", + "display_name": "Dragonbone Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored arrow with angular geometric patterns along its metal shaft and a pointed, multi-faceted head.", + "display_name": "Dwarven Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored automaton that rolls on a spherical base and unfolds into a humanoid torso wielding Dwarven weapons.", + "display_name": "Dwarven Spheres", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A sleek black arrow crafted from ebony ore, featuring dark metallic fletching and a wickedly sharp arrowhead.", + "display_name": "Ebony Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A slender golden-bronze arrow with delicate spiral fluting along its shaft and distinctive curved, wing-like fletching.", + "display_name": "Elven Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crude arrow with a jagged stone arrowhead, splintered wooden shaft, and tattered feather fletching made from cave fungi.", + "display_name": "Falmer Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden arrow with red-orange flames dancing along its metal tip and shaft.", + "display_name": "Fire Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crude arrow with a shaft of twisted wood, fletched with brown feathers and tipped with a jagged stone arrowhead.", + "display_name": "Forsworn Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A translucent green-tinted arrow with curved crystalline fletching and a sharpened malachite arrowhead.", + "display_name": "Glass Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A slender arrow shaft made entirely of polished gold, featuring delicate fletching and a pointed arrowhead of the same material.", + "display_name": "Golden Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steel-tipped arrow with crystalline frost formations extending along its wooden shaft and pale blue fletching.", + "display_name": "Ice Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple arrow with an iron arrowhead, wooden shaft, and fletching made from black and brown feathers.", + "display_name": "Iron Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden arrow with crackling blue-white electrical energy spiraling along its shaft and arcing around its steel tip.", + "display_name": "Lightning Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A metallic arrow with a twisted, dark green shaft and jagged crystalline head that emits a faint purple glow.", + "display_name": "Madness Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An ancient Nordic arrow with a slender steel head, worn leather fletching, and a weathered wooden shaft.", + "display_name": "Nord Hero Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An arrow with a dark metal arrowhead featuring angular geometric patterns, attached to a wooden shaft with gray feather fletching.", + "display_name": "Nordic Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An arrow with a dark green-tinted metal head featuring jagged barbs, attached to a wooden shaft with black feather fletching.", + "display_name": "Orcish Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Nord woman with dark brown hair who wears simple hide armor and carries a hunting bow.", + "display_name": "Angi", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A stone Nordic tomb entrance built into a hillside, marked by weathered pillars and traditional dragon-head carvings flanking its heavy doors.", + "display_name": "Geirmund's Hall", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black-shafted arrow with deep purple fletching and a crystalline arrowhead that seems to shimmer with a dark iridescence.", + "display_name": "Soul Stealer Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A straight metal arrow with gray steel head, wooden shaft, and brown feather fletching at the base.", + "display_name": "Steel Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An arrow crafted from pale blue-white enchanted ice, with crystalline fletching and a sharp, translucent frost-forged tip.", + "display_name": "Stalhrim Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A slender wooden arrow with shimmering blue runes etched along its shaft and a glowing crystal arrowhead.", + "display_name": "Telekinesis Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A slender golden arrow with curved elven fletching and dark crimson stains along its ornately carved shaft.", + "display_name": "Bloodcursed Elven Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A golden-white arrow with curved elven fletching and a slender shaft that emits a faint, warm glow.", + "display_name": "Sunhallowed Elven Arrow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A short crossbow projectile with a dark gray, bone-ash composite head and slim wooden shaft.", + "display_name": "Bonemold Bolt", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A lightweight crossbow bolt with a slender wooden shaft made from corkbulb and tipped with a narrow metal head.", + "display_name": "Corkbulb Bolt", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A metallic crossbow projectile with a bronze-colored shaft and angular head made from Dwemer alloys.", + "display_name": "Dwarven Bolt", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A golden-bronze crossbow bolt with intricate Dwemer engravings and a bulbous, hollow tip filled with glowing orange liquid.", + "display_name": "Exploding Dwarven Bolt of Fire", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored crossbow bolt with intricate Dwemer engravings and crystalline frost formations along its metal shaft.", + "display_name": "Exploding Dwarven Bolt of Ice", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A golden-bronze crossbow bolt with intricate Dwemer engravings and crackling blue energy coursing along its metal shaft.", + "display_name": "Exploding Dwarven Bolt of Shock", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A short iron projectile with a pointed tip, slim shaft, and small fletching designed for crossbows.", + "display_name": "Iron Bolt", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark green-tinted crossbow bolt with angular metallic fletching and a jagged, barbed head forged from orichalcum.", + "display_name": "Orcish Bolt", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A slender crossbow bolt with a polished silver head and fletched with dark feathers along its wooden shaft.", + "display_name": "Silver Bolt", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steel crossbow bolt with red-orange runes etched along its metal shaft and a bulbous, pointed head.", + "display_name": "Exploding Steel Bolt of Fire", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steel crossbow bolt with crystalline frost formations along its metal shaft and a bulbous, segmented head.", + "display_name": "Exploding Steel Bolt of Ice", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steel crossbow bolt with jagged lightning patterns etched along its metal shaft and a bulbous, segmented tip.", + "display_name": "Exploding Steel Bolt of Shock", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A short steel projectile with a pointed tip, cylindrical shaft, and notched end designed for crossbow use.", + "display_name": "Steel Bolt", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A sleeveless leather vest with fur trim, accompanied by matching hide bracers and a crude leather belt with metal studs.", + "display_name": "Hide Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A sleeveless leather vest with fur trim, paired with rough hide pants and boots adorned with animal pelts.", + "display_name": "Fur Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A sleeveless leather vest with fur trim, paired with rough hide pants and boots adorned with animal pelts.", + "display_name": "Fur Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A sleeveless hide vest with fur trim, paired with rough leather straps, bracers, and a fur-lined loincloth skirt.", + "display_name": "Fur Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A sleeveless hide vest with rough leather straps and matching fur-lined bracers, featuring crude stitching and exposed animal pelts.", + "display_name": "Fur Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A leather cuirass reinforced with rows of metal studs across the chest, shoulders, and back sections.", + "display_name": "Studded Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A sleeveless brown leather cuirass with studded shoulder panels, matching bracers, and belted straps across the chest and waist.", + "display_name": "Leather Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark leather cuirass with ornate red trim and metal plates, featuring high-collared shoulders and multiple belted straps across the chest.", + "display_name": "Vampire Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark leather cuirass with ornate metal clasps, high collar, and crimson fabric accents along its segmented plates.", + "display_name": "Vampire Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark leather cuirass with ornate red stitching, high collar, and metal plates protecting the chest and shoulders.", + "display_name": "Vampire Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A primitive leather harness adorned with fur, feathers, and animal bones, leaving much of the wearer's torso exposed.", + "display_name": "Forsworn Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A gilded golden-green cuirass with sweeping, organic curves and matching pauldrons adorned with pointed, leaf-like metalwork patterns.", + "display_name": "Elven Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A lightweight armor set crafted from overlapping insect shell plates in muted brown and tan tones with dark leather bindings.", + "display_name": "Chitin Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A cuirass of overlapping metal scales secured to a leather backing, with matching pauldrons and a fur-lined collar.", + "display_name": "Scaled Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A leather-and-steel cuirass adorned with overlapping metal scales and curved dragon horns mounted at the shoulders.", + "display_name": "Scaled Horn Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A golden-hued metallic cuirass with sweeping, ornate curves and delicate leaf-like patterns etched across its polished surface.", + "display_name": "Elven Gilded Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A translucent green-tinted armor set featuring curved, organic plates with golden trim and ornate elven-style embellishments.", + "display_name": "Glass Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A form-fitting armor set crafted from pale blue-white Stalhrim ice, featuring angular plates and fur-lined edges for cold protection.", + "display_name": "Stalhrim Light Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A form-fitting suit of overlapping dragon scales in muted green-gray hues, arranged in layered patterns across the chest and limbs.", + "display_name": "Dragonscale Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Rough-hewn leather footwear made from animal hide, featuring crude stitching and ankle-high sides secured with leather straps.", + "display_name": "Hide Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ankle-high boots made from rough animal pelts with thick fur trim around the opening and crude leather soles.", + "display_name": "Fur Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Simple leather footwear lined with animal fur and secured by thin leather straps that wrap around the ankle.", + "display_name": "Fur Shoes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of brown ankle-high boots made from stitched leather panels with thin laces and reinforced soles.", + "display_name": "Leather Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Primitive leather boots adorned with fur trim, feathers, and bone decorations in the wild style of the Forsworn tribes.", + "display_name": "Forsworn Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Black leather boots with pointed toes and ornate silver buckles, featuring subtle red stitching along the seams.", + "display_name": "Vampire Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Tall golden boots with pointed toes and curving designs, featuring emerald-green accents along their sleek armored plates.", + "display_name": "Elven Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Light-colored boots crafted from overlapping insect shell plates with pointed edges and straps of hardened leather beneath.", + "display_name": "Chitin Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sturdy leather boots reinforced with overlapping metal scales and secured with thick leather straps around the ankles.", + "display_name": "Scaled Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "These light-green crystalline boots feature sweeping, organic curves and delicate golden filigree along their translucent, elven-crafted surfaces.", + "display_name": "Glass Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Light-framed boots crafted from pale blue Stalhrim ice with jagged crystalline patterns and fur trim around the ankles.", + "display_name": "Stalhrim Light Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy boots fashioned from overlapping dragon scales in muted green-gray hues, reinforced with dark leather straps and metal buckles.", + "display_name": "Dragonscale Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Simple leather arm guards made from tanned animal hide, secured with rough leather straps around the forearm.", + "display_name": "Hide Bracers", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Simple arm coverings made from rough animal pelts, secured with leather straps around the wrists and forearms.", + "display_name": "Fur Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of rough animal fur arm guards extending from wrist to forearm, held in place by leather straps.", + "display_name": "Fur Bracers", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of light brown leather forearm guards fastened with buckled straps and extending from wrist to mid-forearm.", + "display_name": "Leather Bracers", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Primitive arm guards made from animal fur, leather straps, and sharpened bones that cover from wrist to mid-forearm.", + "display_name": "Forsworn Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dark leather gauntlets with sharp metal studs along the knuckles and ornate red-trimmed plates protecting the forearms.", + "display_name": "Vampire Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sleek golden-brass arm guards with pointed angles and delicate swirling patterns, featuring extended cuffs that protect the forearms.", + "display_name": "Elven Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Segmented arm guards crafted from overlapping plates of brownish-gray insect chitin, secured with leather straps and bindings.", + "display_name": "Chitin Bracers", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Layered bronze-colored scales cover these leather forearm protectors, secured by straps that wrap around the wrist and elbow.", + "display_name": "Scaled Bracers", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Translucent green-tinted gauntlets with flowing elven designs and golden trim that cover the forearms and hands.", + "display_name": "Glass Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Lightweight arm guards crafted from pale blue-white Stalhrim ice that forms crystalline patterns across the forearm protection.", + "display_name": "Stalhrim Light Bracers", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy gauntlets crafted from overlapping dragon scales in muted green-gray tones, featuring pointed knuckle plates and scaled finger segments.", + "display_name": "Dragonscale Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crude leather cap reinforced with animal hide strips and two small curved horns protruding from the sides.", + "display_name": "Hide Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crude helmet made from thick animal pelts stitched together, with ear flaps hanging down on either side.", + "display_name": "Fur Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A fitted cap of tanned hide that covers the crown and back of the head, secured with leather straps under the chin.", + "display_name": "Leather Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A primitive headdress made from deer antlers, feathers, and animal bones bound together with leather straps and sinew.", + "display_name": "Forsworn Headdress", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A golden-bronze helmet with swept-back, wing-like plates and an ornate crest that curves elegantly from forehead to crown.", + "display_name": "Elven Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A segmented insectoid helmet crafted from overlapping brownish-gray chitin plates with twin curved antennae extending from its crown.", + "display_name": "Chitin Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rounded helmet crafted from overlapping metal scales with a leather base and short protruding horns at the temples.", + "display_name": "Scaled Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A translucent green-tinted helmet crafted with curved panels and gold trim, featuring sharp angular designs and swept-back pointed edges.", + "display_name": "Glass Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A sleek helmet crafted from pale blue-white Stalhrim ice, featuring angular Nordic designs and a curved visor protecting the face.", + "display_name": "Stalhrim Light Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved helmet crafted from overlapping dragon scales in muted green and bronze hues, featuring angular cheek guards and a raised crest.", + "display_name": "Dragonscale Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round wooden shield covered in stretched animal hide, reinforced with iron studs and featuring a central metal boss.", + "display_name": "Hide Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved, golden-hued shield with an ornate wing-like design and delicate swirling patterns etched across its metallic surface.", + "display_name": "Elven Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rounded shield constructed from overlapping plates of brownish-gray insect chitin bound together with leather straps.", + "display_name": "Chitin Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A translucent green-tinted shield with curved, organic edges and gold metallic trim forming elaborate swirling patterns throughout its surface.", + "display_name": "Glass Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round shield covered in overlapping bronze-colored dragon scales with a reinforced metal rim and sturdy leather straps.", + "display_name": "Dragonscale Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round shield crafted from pale blue-white Stalhrim ice, featuring crystalline patterns and a frost-covered metal rim.", + "display_name": "Stalhrim Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A full suit of rough-hewn iron plates secured with leather straps, featuring a sleeveless cuirass and layered shoulder guards.", + "display_name": "Iron Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy iron cuirass reinforced with horizontal metal bands across the chest and back, paired with matching plated pauldrons.", + "display_name": "Banded Iron Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A full suit of polished steel plates covering the torso and shoulders, with riveted joints and a studded leather skirt.", + "display_name": "Steel Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A full set of gray steel plates covering the torso and shoulders, with layered metal segments and brown leather straps underneath.", + "display_name": "Steel Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark gray suit of armor crafted from ground bones molded into rounded plates with distinct ridges and raised patterns.", + "display_name": "Bonemold Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark gray armored cuirass crafted from molded bone fragments, featuring rigid plates and distinctive rounded pauldrons on the shoulders.", + "display_name": "Bonemold Guard Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rounded shoulder guard crafted from hardened bone-ash composite material, featuring overlapping plates in a dark grayish-brown color.", + "display_name": "Bonemold Pauldron Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A golden-bronze suit of heavy plate armor featuring angular geometric patterns and thick metal plates across the chest, shoulders, and limbs.", + "display_name": "Dwarven Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crude, pale armor set crafted from chitinous plates and twisted leather straps, bearing the signature asymmetrical design of Falmer craftsmanship.", + "display_name": "Falmer Hardened Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark gray armor set made from finely-ground bone ash, featuring rounded pauldrons and layered plates across the chest and limbs.", + "display_name": "Improved Bonemold Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A full suit of heavy armor featuring overlapping steel plates riveted to a padded leather base with ornate Nordic knotwork designs.", + "display_name": "Steel Plate Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bulky suit of armor crafted from overlapping brown-gray insect plates, featuring spiked shoulders and a rounded, shell-like breastplate.", + "display_name": "Chitin Heavy Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark green-gray suit of heavy armor with angular plates, curved spikes, and distinctive tribal patterns etched across its surfaces.", + "display_name": "Orcish Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black, intricately-detailed suit of heavy armor with angular plates and silver trim crafted from rare ebony ore.", + "display_name": "Ebony Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crude set of thick chitin plates harvested from Chaurus insects, bound together with leather straps and tattered fabric.", + "display_name": "Falmer Heavy Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy armor set featuring intricate Nordic knotwork patterns carved into dark metal plates with fur-lined leather beneath.", + "display_name": "Nordic Carved Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy suit of armor crafted from overlapping dragon bone plates with dark metal trim and spikes along the shoulders.", + "display_name": "Dragonplate Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A full suit of armor crafted from pale blue-white Stalhrim crystal, featuring thick plates, Nordic-style engravings, and fur-lined edges.", + "display_name": "Stalhrim Heavy Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black metallic full-body armor set with sharp, jagged plates, glowing red accents, and menacing spiked protrusions throughout its surface.", + "display_name": "Daedric Armor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of heavy boots made from rough iron plates fastened together with leather straps and crude metal rivets.", + "display_name": "Iron Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Steel boots with reinforced ankle cuffs, featuring layered metal plates and dark leather trim along the soles and openings.", + "display_name": "Steel Cuffed Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sturdy metal boots made of polished steel plates with leather straps and padded interior lining reaching mid-calf height.", + "display_name": "Steel Shin Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Molded from bone fragments and resin, these rounded boots feature overlapping plates and a dark grayish-brown protective shell.", + "display_name": "Bonemold Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy boots crafted from bonemold with reinforced plating and curved, overlapping segments protecting the ankles and shins.", + "display_name": "Improved Bonemold Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Crude boots fashioned from pale chitinous plates and twisted leather straps, bearing the distinctive organic curves of Falmer craftsmanship.", + "display_name": "Falmer Hardened Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy boots made of golden-bronze metal with angular geometric patterns and thick plating protecting the feet and ankles.", + "display_name": "Dwarven Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy boots constructed from overlapping steel plates with riveted edges and thick leather padding beneath the metal.", + "display_name": "Steel Plate Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy boots constructed from overlapping dark-brown insect plates secured with leather straps and reinforced with curved spikes.", + "display_name": "Chitin Heavy Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy boots made of dark green-tinted orichalcum metal with angular plates and thick leather straps securing them.", + "display_name": "Orcish Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy boots made of dark leather and steel, decorated with intricate Nordic knotwork patterns and curved animal motifs.", + "display_name": "Nordic Carved Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy boots crafted from dark ebony metal with angular plates and ornate ridges forming a protective shell around the feet.", + "display_name": "Ebony Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Crude boots made from pale chitinous plates and tattered leather straps, featuring jagged edges and asymmetrical construction typical of Falmer craftsmanship.", + "display_name": "Falmer Heavy Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy armored boots fashioned from curved dragon bone plates layered over steel, with dark leather straps securing the ankle and calf.", + "display_name": "Dragonplate Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy boots crafted from pale blue-white Stalhrim ice, featuring angular crystalline plates and thick fur trim along the openings.", + "display_name": "Stalhrim Heavy Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy black metal boots with jagged edges, sharp crimson accents, and curved spikes protruding from the toe and heel areas.", + "display_name": "Daedric Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of rough-hewn iron hand guards with overlapping metal plates and simple leather straps securing the wrists.", + "display_name": "Iron Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Segmented steel arm guards with overlapping plates and red leather padding, featuring the Imperial dragon emblem on each forearm.", + "display_name": "Steel Imperial Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy steel gauntlets featuring angular Nordic-style plates, fur trim around the wrists, and weathered leather palms.", + "display_name": "Steel Nordic Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Molded from dark brown bone-meal composite, these sturdy forearm guards feature overlapping plates and raised ridges along the knuckles.", + "display_name": "Bonemold Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy gauntlets molded from dark bone fragments and resin, featuring overlapping plates and reinforced knuckles with brass trim.", + "display_name": "Improved Bonemold Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy metallic gauntlets made of golden-bronze Dwemer alloy, featuring angular plates and intricate geometric patterns across the forearms and knuckles.", + "display_name": "Dwarven Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Crude armor pieces for the hands and forearms made from chaurus chitin plates bound together with leather straps and sinew.", + "display_name": "Falmer Hardened Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy segmented plates of polished steel cover the forearms and hands, joined by leather straps and small rivets.", + "display_name": "Steel Plate Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Segmented dark-brown insect plates form rigid forearm guards and hand coverings, bound together with leather straps and fiber cording.", + "display_name": "Chitin Heavy Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy metal gauntlets with angular green-tinted plates, pronounced knuckle spikes, and thick leather straps securing the forearm guards.", + "display_name": "Orcish Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy forearm guards made of dark steel with intricate Nordic knotwork patterns and small curved horns at the wrists.", + "display_name": "Nordic Carved Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Black metallic gauntlets with angular plates and sharp ridges, featuring ornate geometric patterns etched into the dark, glass-like material.", + "display_name": "Ebony Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Thick, chitinous armor pieces shaped into crude gauntlets, featuring pale bone-like plating and tattered leather straps for securing to the forearms.", + "display_name": "Falmer Heavy Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy armored gauntlets crafted from dragon bone plates and scales, featuring layered segments that protect the forearms and hands.", + "display_name": "Dragonplate Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Thick armored gauntlets crafted from pale blue-white Stalhrim ice, featuring angular crystalline plates protecting the forearms and knuckles.", + "display_name": "Stalhrim Heavy Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Heavy black-metal gauntlets with sharp, protruding spikes and angular red accents that cover the forearms and hands completely.", + "display_name": "Daedric Gauntlets", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rounded iron helmet with a flared rim, small rivets along the base, and two curved horns protruding from the sides.", + "display_name": "Iron Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rounded steel helmet with curved cheek guards, a short protruding visor, and a studded leather strip along the crown.", + "display_name": "Steel Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rounded steel helmet with two curved horns protruding from the sides and a reinforced band across the forehead.", + "display_name": "Steel Horned Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rounded helmet crafted from molded bone fragments, featuring a T-shaped visor and raised ridges along its surface.", + "display_name": "Bonemold Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crude helmet fashioned from pale chitinous plates with jagged edges and two curved, horn-like protrusions extending from the sides.", + "display_name": "Falmer Hardened Helm", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored metal helmet with angular geometric patterns, curved side plates, and a distinctive T-shaped visor across the face.", + "display_name": "Dwarven Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rounded helmet crafted from bone-ash composite material, featuring angular cheek guards and a raised crest along the crown.", + "display_name": "Improved Bonemold Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rounded steel helmet with curved cheek guards, a prominent brow ridge, and decorative ridges running along its crown.", + "display_name": "Steel Plate Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bulky insectoid helmet crafted from overlapping plates of brownish-gray chitin with narrow eye slits and curved mandible-like protrusions.", + "display_name": "Chitin Heavy Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark metallic helmet with angular cheek guards, prominent brow ridges, and twin curved tusks protruding from the sides.", + "display_name": "Orcish Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A horned metal helmet adorned with intricate Nordic knotwork patterns and featuring a prominent face guard with curved tusks.", + "display_name": "Nordic Carved Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black, angular helmet crafted from ebony metal with swept-back ridges and a T-shaped visor across the face.", + "display_name": "Ebony Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crude helmet made from chaurus chitin plates, featuring multiple overlapping layers and two curved, horn-like protrusions on either side.", + "display_name": "Falmer Heavy Helm", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy full-face helmet crafted from dragon bones, featuring curved horns, angular eye slits, and overlapping armored plates.", + "display_name": "Dragonplate Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A full-faced helmet crafted from pale blue-white Stalhrim ice, featuring angular crystalline patterns and frost-rimmed edges.", + "display_name": "Stalhrim Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rounded helmet crafted from iridescent chitin plates of a shellbug, featuring curved mandible-like protrusions on each side.", + "display_name": "Shellbug Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black metal helmet with jagged, horn-like protrusions, angular eye slits, and sharp ridges extending from the crown.", + "display_name": "Daedric Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round iron shield with a raised central boss, reinforced rim, and weathered metal surface displaying simple geometric patterns.", + "display_name": "Iron Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rounded shield made from dark gray bone fragments fused together, featuring raised concentric rings and a reinforced metal rim.", + "display_name": "Bonemold Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round iron shield reinforced with concentric metal bands and featuring a sturdy central boss and leather grip backing.", + "display_name": "Banded Iron Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round steel shield with a raised metal boss at its center and reinforced bands radiating outward across its surface.", + "display_name": "Steel Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rounded bronze-colored shield with concentric circular patterns and angular geometric designs etched across its metallic surface.", + "display_name": "Dwarven Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rounded shield made from hardened bone fragments, featuring reinforced dark metal bands and a prominent central boss.", + "display_name": "Improved Bonemold Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round wooden shield reinforced with iron bands and studs, featuring a central boss and painted Nordic knotwork patterns.", + "display_name": "Nordic Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crude, asymmetrical shield made of pale chitin plates bound together with leather straps and tarnished metal fixtures.", + "display_name": "Falmer Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round shield made of dark green-tinted orichalcum metal with curved, angular patterns and prominent spikes around its circumference.", + "display_name": "Orcish Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black, angular shield crafted from ebony metal, featuring sharp geometric patterns and a distinctive dark sheen across its surface.", + "display_name": "Ebony Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large round shield forged from dragon bones, featuring overlapping plates arranged in a spiral pattern around a central bronze boss.", + "display_name": "Dragonplate Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black ebony shield with sharp, angular edges and jagged red accents that form an aggressive, demon-like pattern across its surface.", + "display_name": "Daedric Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple cloth tunic secured at the waist with a leather belt, featuring loose-fitting sleeves and a round neckline.", + "display_name": "Belted Tunic", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy leather apron with scorch marks and multiple tool pockets, secured by straps that cross over the shoulders and back.", + "display_name": "Blacksmith's Apron", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A thick leather apron with adjustable straps, worn pockets, and dark stains from prolonged exposure to forge work.", + "display_name": "Blacksmith's Apron", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A white cotton tunic with rolled-up sleeves, a v-neck collar, and dark stains from years of kitchen use.", + "display_name": "Chef's Tunic", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A plain set of common clothing consisting of a long-sleeved shirt and trousers made from rough-woven cloth.", + "display_name": "Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple cloth outfit consisting of a long-sleeved shirt and pants made from rough-woven fabric in muted earth tones.", + "display_name": "Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple cloth garment consisting of a long-sleeved shirt and fitted trousers made from woven brown fabric.", + "display_name": "Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple cloth garment consisting of a long-sleeved shirt and pants made from rough-woven fabric in muted earth tones.", + "display_name": "Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple cloth garment consisting of a long-sleeved shirt and pants made from woven fabric in earth-toned colors.", + "display_name": "Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple cloth garment consisting of a long-sleeved shirt and pants made from woven fabric in muted earth tones.", + "display_name": "Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple set of cloth garments consisting of a long-sleeved shirt and trousers in muted brown or gray fabric.", + "display_name": "Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A plain set of everyday garments consisting of a long-sleeved shirt, trousers, and cloth boots in muted earth tones.", + "display_name": "Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A plain cloth garment consisting of a long-sleeved tunic and simple trousers made from coarse-woven fabric.", + "display_name": "Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A plain set of rough-spun garments consisting of a long-sleeved tunic and trousers in muted earth tones.", + "display_name": "Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple cloth outfit consisting of a long-sleeved shirt and pants made from woven fabric in muted earth tones.", + "display_name": "Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple set of rough-woven fabric garments consisting of a long-sleeved shirt and trousers in muted earth tones.", + "display_name": "Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tailored outfit consisting of richly dyed wool and linen garments with decorative stitching and polished brass buttons.", + "display_name": "Fine Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A well-tailored outfit consisting of a long-sleeved doublet and fitted trousers made from high-quality dyed fabric and brass buttons.", + "display_name": "Fine Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tailored outfit featuring embroidered fabric, fitted sleeves, and a decorative sash worn by wealthy merchants and nobles.", + "display_name": "Fine Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A well-tailored outfit consisting of a long-sleeved tunic and fitted trousers made from high-quality dyed fabric and brass buttons.", + "display_name": "Fine Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A well-tailored outfit consisting of a long-sleeved tunic and fitted trousers made from quality dyed fabric and brass buttons.", + "display_name": "Fine Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A thick wool cloak with wide fur trim along the edges and collar, fastened at the throat with a metal clasp.", + "display_name": "Fur-Trimmed Cloak", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A light desert outfit featuring loose-fitting tan robes, a wrapped head covering, and decorative red sash across the chest.", + "display_name": "Hammerfell Garb", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple cloth tunic with leather patches and straps, worn and stained from long hours of mining work.", + "display_name": "Miner's Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rough-spun tunic and trousers with patched knees, dark leather boots, and a sturdy cloth belt for carrying tools.", + "display_name": "Miner's Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A plain black robe with long sleeves and a high collar, traditionally worn by those attending Nordic funerals.", + "display_name": "Mourner's Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A finely-tailored outfit consisting of a blue velvet doublet, silk undershirt, and matching breeches with gold trim and embroidery.", + "display_name": "Noble Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A colorful outfit consisting of a long-sleeved shirt, fitted vest, and tailored trousers designed for formal social gatherings.", + "display_name": "Party Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tailored outfit consisting of embroidered silk robes in rich colors with fitted sleeves and delicate golden trim work.", + "display_name": "Radiant Raiment Fine Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Tattered cloth pants with multiple patches and fraying seams, worn thin from years of use and weathering.", + "display_name": "Ragged Trousers", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Patched and threadbare cloth trousers with frayed edges and multiple crude repairs visible throughout the fabric.", + "display_name": "Ragged Trousers", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A light desert outfit featuring loose-fitting tan pants, a wrapped white shirt, and a distinctive red sash around the waist.", + "display_name": "Redguard Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A coarse, beige-colored tunic made from roughly woven fabric with short sleeves and a simple round neckline.", + "display_name": "Roughspun Tunic", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple cloth outfit consisting of a long-sleeved brown shirt, fitted vest, and matching trousers commonly worn by tavern workers.", + "display_name": "Tavern Clothes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A full-length white gown with long sleeves, fitted bodice, and flowing skirt made from fine woven fabric.", + "display_name": "Wedding Dress", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A set of flowing black robes with wide sleeves, a hooded cowl, and dark fabric that drapes loosely over the wearer.", + "display_name": "Black Robes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A full-length hooded robe made of blue fabric with long flowing sleeves and subtle geometric trim along its edges.", + "display_name": "Blue Robes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A hooded blue robe with white geometric trim patterns and a high collar, worn by mages of Winterhold College.", + "display_name": "College Robes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A full-length hooded robe in dark blue fabric with gold trim and a high collar bearing the College of Winterhold emblem.", + "display_name": "College Robes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A floor-length crimson robe with ornate gold embroidery, wide sleeves, and a high collar adorned with white fur trim.", + "display_name": "Emperor's Robes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A full-length hooded robe made of emerald-colored fabric with wide sleeves and subtle embroidered trim along its edges.", + "display_name": "Green Robes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A floor-length black robe with flowing sleeves and an attached hood, secured at the waist by a simple cloth sash.", + "display_name": "Hooded Black Robes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A full-length blue cloth robe with an attached hood, flowing sleeves, and subtle embroidered trim along its edges.", + "display_name": "Hooded Blue Robes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A full-length brown robe with wide sleeves, flowing fabric, and an attached hood that drapes over the wearer's head.", + "display_name": "Hooded Monk Robes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A full-length cloth robe with wide sleeves, a high collar, and decorative geometric patterns embroidered along its hems.", + "display_name": "Mage Robes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple brown hooded robe with wide sleeves and a rope belt worn by monastery dwellers across Skyrim.", + "display_name": "Monk Robes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tattered cloth robe with frayed edges and patches, worn thin from age and extensive use.", + "display_name": "Ragged Robes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A full-length cloth robe dyed in deep crimson, featuring loose-fitting sleeves and a high collar with gold trim accents.", + "display_name": "Red Robes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark purple hooded robe adorned with silver embroidery patterns and flowing fabric that ripples like liquid shadow.", + "display_name": "Vaermina Robes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tan cloth hood with a wrapped face covering that leaves only the eyes exposed, styled after traditional Redguard desert attire.", + "display_name": "Alik'r Hood", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall, white cloth hat with a puffy, mushroom-shaped crown that expands outward at the top.", + "display_name": "Chef's Hat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A close-fitting cloth hood that covers the head and neck, leaving only the face exposed.", + "display_name": "Cowl", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wide-brimmed felt hat with a tall crown, decorated by a simple cloth band around its base.", + "display_name": "Fine Hat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple cloth cap that covers the crown and back of the head with a slightly pointed top.", + "display_name": "Hat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple cloth cap with a rounded crown and short brim that covers the top of the wearer's head.", + "display_name": "Hat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple cloth cap with a rounded crown and narrow brim, typically made from woven wool or linen.", + "display_name": "Hat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple cloth cap with a rounded crown and short brim that covers the top of the wearer's head.", + "display_name": "Hat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A cloth hood with a pointed top and draped fabric that covers the wearer's head and frames the face.", + "display_name": "Mage Hood", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A hooded cloth cowl that covers the head and neck, featuring a peaked top and open face design.", + "display_name": "Mage Hood", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A cloth hood with a deep cowl that drapes over the head and features a pointed, downward-sloping back section.", + "display_name": "Mage Hood", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wide-brimmed black hat with a tall crown and thin band, traditionally worn during funeral services.", + "display_name": "Mourner's Hat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A worn cloth cap with frayed edges and visible patches, commonly found among peasants and beggars.", + "display_name": "Ragged Cap", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A close-fitting cloth hood in traditional Redguard style with a draped neck covering and rounded crown.", + "display_name": "Redguard Hood", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A hooded cloth headpiece with a tall, rounded crown and long draping fabric that covers the neck and shoulders.", + "display_name": "Temple Priest Hood", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A circular garland of woven branches adorned with small white flowers and green leaves traditionally worn during ceremonies.", + "display_name": "Wedding Wreath", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of ankle-high leather footwear with simple lacing, thick soles, and basic stitching along the seams.", + "display_name": "Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Simple leather footwear that covers the feet and ankles, secured with laces and reinforced with basic stitching.", + "display_name": "Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of simple leather footwear reaching mid-calf, with thick soles and basic lacing up the front.", + "display_name": "Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of plain leather footwear that covers the feet and ankles with simple brown stitching along the seams.", + "display_name": "Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of simple leather footwear that covers the feet and ankles, secured with laces and reinforced at the soles.", + "display_name": "Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of ankle-high leather footwear with thick soles, basic stitching, and simple laces running up the front.", + "display_name": "Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Simple leather footwear that covers the feet and ankles, secured with laces and featuring reinforced soles.", + "display_name": "Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of plain leather footwear that covers the feet and ankles with simple brown straps and basic stitching.", + "display_name": "Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of simple leather footwear that covers the feet and ankles with basic brown stitching and flat soles.", + "display_name": "Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of plain leather footwear reaching mid-calf, with simple laces and reinforced soles for basic protection.", + "display_name": "Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of ankle-high leather footwear with thick soles, simple stitching, and basic laces running up the front.", + "display_name": "Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of ankle-high leather footwear with thick soles, basic stitching, and plain brown coloring throughout.", + "display_name": "Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Leather boots with wide folded cuffs at the ankles and thick soles suited for cold weather travel.", + "display_name": "Cuffed Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dark leather boots with pointed toes, ornate metal buckles, and raised stitching patterns along the ankle and sides.", + "display_name": "Cultist Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Simple leather shoes with pointed toes and curved upturned tips, styled in the traditional Dark Elf fashion.", + "display_name": "Dunmer Shoes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Tall leather boots with polished buckles and reinforced soles, featuring ornate stitching along the upper edges and ankles.", + "display_name": "Fine Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Calf-high leather boots with polished brown uppers, reinforced soles, and decorative stitching along the seams.", + "display_name": "Fine Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of polished leather boots with decorative stitching along the seams and reinforced ankle supports.", + "display_name": "Fine Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Long strips of coarse linen cloth designed to wrap around the feet and ankles in a crisscrossing pattern.", + "display_name": "Footwraps", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Long strips of coarse cloth designed to be wrapped around the feet and ankles in overlapping layers.", + "display_name": "Footwraps", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Leather boots trimmed with gray-brown fur around the ankles and lined with soft pelts for warmth.", + "display_name": "Fur-lined Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Crimson leather boots adorned with the Mythic Dawn cult's distinctive sun symbol and trimmed with dark metal accents.", + "display_name": "Mythic Dawn Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of brown leather boots adorned with colorful ribbons and small bells around the ankles.", + "display_name": "Party Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Simple leather shoes with vertically folded pleats running along the sides and a flat sole.", + "display_name": "Pleated Shoes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of worn leather footwear with frayed stitching, tattered soles, and patches of missing material throughout.", + "display_name": "Ragged Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Curved leather boots with pointed toes, ornate stitching patterns, and upturned front tips typical of Hammerfell fashion.", + "display_name": "Redguard Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Simple leather footwear with thin soles, ankle-high sides, and basic lacing up the front.", + "display_name": "Shoes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Simple leather footwear with flat soles, ankle-high sides, and basic stitching along the seams and edges.", + "display_name": "Shoes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Simple leather footwear with ankle-high sides, thin soles, and basic stitching along the seams.", + "display_name": "Shoes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Simple leather footwear with a flat sole, ankle-high sides, and basic stitching along the seams.", + "display_name": "Shoes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ankle-high leather boots with thick soles and ornate religious symbols embroidered along the sides in golden thread.", + "display_name": "Temple Priest Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Black leather boots with pointed toes and gold-trimmed accents, rising to mid-calf with decorative elven buckles along the sides.", + "display_name": "Thalmor Boots", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Simple white cloth sandals with thin straps that cross over the foot and wrap around the ankle.", + "display_name": "Wedding Sandals", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Simple leather hand coverings that extend from the fingertips to the wrist with basic stitching along the seams.", + "display_name": "Gloves", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Crimson leather gloves with ornate golden trim and the distinctive rising sun emblem of the Mythic Dawn cult emblazoned on each palm.", + "display_name": "Mythic Dawn Gloves", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sleek elven gauntlets with pointed gold trim and black leather palms, bearing the eagle insignia of the Thalmor dominion.", + "display_name": "Thalmor Gloves", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silver band molded to resemble a hawk skull, with small carved feathers etched along its outer surface.", + "display_name": "Bone Hawk Ring", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished band of pure silver metal, sized to fit on a finger, with a simple unadorned circular design.", + "display_name": "Silver Ring", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple band crafted from polished gold metal that fits around a finger.", + "display_name": "Gold Ring", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished silver band set with a round, deep-red garnet gemstone in a simple pronged mounting.", + "display_name": "Silver Garnet Ring", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished silver band with a round-cut purple amethyst gemstone mounted in a raised, four-pronged setting.", + "display_name": "Silver Amethyst Ring", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished silver band set with a faceted red ruby gemstone in a raised, pronged setting.", + "display_name": "Silver Ruby Ring", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished gold band set with a circular-cut blue sapphire mounted in a raised four-prong setting.", + "display_name": "Gold Sapphire Ring", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished gold band set with a faceted emerald gemstone mounted in a raised four-prong setting.", + "display_name": "Gold Emerald Ring", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished gold band with a clear diamond gemstone mounted in a four-prong setting atop the ring.", + "display_name": "Gold Diamond Ring", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished silver chain necklace with a simple circular pendant, designed to be worn around the neck.", + "display_name": "Silver Necklace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silver pendant featuring a hawk skull motif with small gemstones set into its eye sockets and wing-like decorative elements.", + "display_name": "Bone Hawk Amulet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A circular metal pendant featuring intricate Nordic knotwork patterns and a central blue gemstone suspended on a tarnished chain.", + "display_name": "Ancient Nord Amulet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A circular silver pendant featuring an embossed compass rose design with the East Empire Company's distinctive merchant ship emblem.", + "display_name": "East Empire Pendant", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple chain necklace crafted from polished gold links connected in a delicate interlocking pattern.", + "display_name": "Gold Necklace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A delicate silver chain necklace adorned with small polished gemstones arranged in a circular pendant design.", + "display_name": "Silver Jeweled Necklace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A delicate gold chain necklace adorned with small, multi-colored gemstones set in decorative circular mountings.", + "display_name": "Gold Jeweled Necklace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A delicate golden chain necklace featuring a polished ruby gemstone set within an ornate circular pendant frame.", + "display_name": "Gold Ruby Necklace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A delicate silver chain necklace featuring a polished blue sapphire gem set within an ornate circular pendant.", + "display_name": "Silver Sapphire Necklace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A delicate silver chain necklace featuring a polished emerald gemstone secured in an ornate circular setting.", + "display_name": "Silver Emerald Necklace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A delicate golden chain adorned with a clear-cut diamond centerpiece mounted in an ornate metalwork setting.", + "display_name": "Gold Diamond Necklace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A slender copper headband adorned with small onyx gemstones arranged in a repeating pattern around its circumference.", + "display_name": "Copper and Onyx Circlet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A delicate metallic headband featuring a woven copper band accented with pale, iridescent moonstone gems along its curved surface.", + "display_name": "Copper and Moonstone Circlet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A thin copper headband adorned with a polished red ruby set prominently in its center.", + "display_name": "Copper and Ruby Circlet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A thin copper headband adorned with a central blue sapphire gem and delicate metalwork patterns along its circumference.", + "display_name": "Copper and Sapphire Circlet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A delicate silver headband adorned with polished moonstone gems and intricate metalwork forming a curved, crown-like shape.", + "display_name": "Silver and Moonstone Circlet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silver headband adorned with polished jade stones and blue sapphires arranged in a delicate circular pattern.", + "display_name": "Jade and Sapphire Circlet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A delicate silver circlet adorned with polished jade stones and a central emerald mounted in an interwoven pattern.", + "display_name": "Jade and Emerald Circlet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A delicate silver headband adorned with three deep blue sapphires set in an evenly-spaced pattern across the front.", + "display_name": "Silver and Sapphire Circlet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A delicate golden circlet with an ornate band design and a prominent red ruby set in its center.", + "display_name": "Gold and Ruby Circlet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A delicate golden headband adorned with a central emerald gem and small decorative metalwork along its curved surface.", + "display_name": "Gold and Emerald Circlet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silver-colored metal headpiece with angular Nordic knotwork patterns and a central gemstone set between two curved prongs.", + "display_name": "Nordic Circlet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered backpack made of dark leather with multiple pouches, brass buckles, and adjustable shoulder straps.", + "display_name": "Dark Leather Backpack", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered leather backpack with multiple straps and pouches, featuring a tightly rolled bedroll secured across its top section.", + "display_name": "Dark Leather Backpack with Bedroll", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rugged leather pack covered in thick animal fur with multiple pouches and leather straps for wearing on one's back.", + "display_name": "Fur Backpack", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rugged leather backpack covered in brown fur pelts with a rolled sleeping mat secured across its top.", + "display_name": "Fur Backpack with Bedroll", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered leather backpack with multiple exterior pouches, brass buckles, and rolled bedding strapped to its bottom.", + "display_name": "Adventurer Backpack", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A leather backpack with multiple pouches, straps, and a tightly rolled sleeping mat secured across its top.", + "display_name": "Adventurer Backpack with Bedroll", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A leather backpack adorned with scrolls, potion bottles, and magical runes stitched into its multiple exterior pockets.", + "display_name": "Mage Backpack", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A leather backpack adorned with scrolls and potion bottles, featuring a rolled sleeping mat secured across the top.", + "display_name": "Mage Backpack with Bedroll", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rugged leather backpack with multiple pouches, fur trim, and brass buckles commonly used by wilderness travelers.", + "display_name": "Hunter Backpack", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rugged leather backpack with multiple pouches and a rolled sleeping mat secured across its top section.", + "display_name": "Hunter Backpack with Bedroll", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark leather backpack with multiple exterior pockets, brass buckles, and worn shoulder straps for carrying supplies.", + "display_name": "Thief Backpack", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered leather backpack with multiple pouches and a rolled sleeping mat secured across its top section.", + "display_name": "Thief Backpack with Bedroll", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved iron hook mounted on a wooden pole with twine wrapped around its handle and a sharp barbed tip.", + "display_name": "Angler", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silvery-pink fish with small scales, dark spots along its sides, and a streamlined body roughly twelve inches long.", + "display_name": "Arctic Char", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A slender freshwater fish with silvery scales, a spotted dorsal fin, and distinctive dark markings along its gray-blue body.", + "display_name": "Arctic Grayling", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A segmented, chitinous leg segment from an ash hopper, featuring sharp barbs and a dark gray, ashen coloration.", + "display_name": "Ash Hopper Leg", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A raw slab of grayish-red insectoid flesh harvested from the segmented body of an ash hopper.", + "display_name": "Ash Hopper Meat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A raw slab of dark red meat with white fat marbling and a thick outer layer of skin.", + "display_name": "Boar Meat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small freshwater fish with silvery-green scales, a forked tail, and distinctive dark stripes along its streamlined body.", + "display_name": "Brook Bass", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silver-scaled freshwater fish with a rounded body, broad fins, and distinctive downturned mouth typical of bottom-feeders.", + "display_name": "Carp", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long, smooth-scaled fish with prominent whisker-like barbels, a broad flat head, and a grayish-brown coloration.", + "display_name": "Catfish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A raw, pink-white cut of poultry meat with visible muscle striations and a slightly irregular, rounded shape.", + "display_name": "Chicken Breast", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pale, raw chunk of white flesh harvested from within a clam's shell, glistening with natural moisture.", + "display_name": "Clam Meat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A grayish-white fish with a tapered body, distinctive barbel under its chin, and speckled scales along its sides.", + "display_name": "Cod", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Chunks of pale, fibrous meat pulled from a mudcrab's shell, with a pinkish-white color and slightly stringy texture.", + "display_name": "Crab Meat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large, dark-scaled fish with prominent spines along its back and a wide, tooth-filled mouth.", + "display_name": "Direfish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A raw, reddish-brown slab of canine flesh with visible muscle fibers and small traces of fat marbling throughout.", + "display_name": "Dog Meat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A raw, red slab of animal flesh with visible fat marbling and a moist, recently-butchered appearance.", + "display_name": "Fresh Meat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A translucent green fish with long whiskers, elongated fins, and a sleek body reminiscent of refined glass.", + "display_name": "Glass Catfish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A raw, reddish-pink slab of meat cut from a horker, with visible white fat marbling throughout the flesh.", + "display_name": "Horker Meat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A raw, reddish-brown slab of horse meat with visible muscle fibers and thin streaks of white fat throughout.", + "display_name": "Horse Meat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A haunch of raw goat meat with exposed bone at one end and pale flesh covered in thin white fat.", + "display_name": "Leg of Goat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large, severed trunk-like appendage from a mammoth, featuring wrinkled gray skin and two prominent nostril openings.", + "display_name": "Mammoth Snout", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of segmented, reddish-brown crustacean legs with spiky protrusions and small pincers at one end.", + "display_name": "Mudcrab Legs", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A raw slab of pale blue-gray meat with a slight iridescent sheen, harvested from a Nix-Hound creature.", + "display_name": "Nix-Hound Meat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A plump cut of raw, pinkish-white meat with light striations taken from the chest of a game bird.", + "display_name": "Pheasant Breast", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small, round-bodied fish with bulging eyes, pale green scales, and wide fins protruding from its sides.", + "display_name": "Pogfish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A raw cut of deep red meat with white fat marbling throughout the uncooked muscle tissue.", + "display_name": "Raw Beef", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pink-fleshed, uncooked rabbit leg with exposed bone at one end and thin patches of white fur still attached.", + "display_name": "Raw Rabbit Leg", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A plump pink-orange fish with silvery scales, dark spots along its back, and a wide forked tail fin.", + "display_name": "Salmon", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A raw, pink-orange fillet of fish meat with visible flakes and a thin layer of translucent fat along one edge.", + "display_name": "Salmon Meat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silvery-scaled fish with sharp dorsal spines, a broad flat head, and reddish fins resembling a scorpion's segmented tail.", + "display_name": "Scorpion Fish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large, aggressive fish with sharp teeth, gray-green scales, and elongated fins along its torpedo-shaped body.", + "display_name": "Slaughterfish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small aquatic creature with three spindly legs protruding from its round body and bulbous eyes on short stalks.", + "display_name": "Tripod Spiderfish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pale, elongated fish with crimson-tipped fins, needle-like teeth, and glowing red eyes that pierce through darkness.", + "display_name": "Vampire Fish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Raw cuts of dark red deer meat with thin white strips of fat marbled throughout the flesh.", + "display_name": "Venison", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A gnarled, gray-skinned tuber with multiple lumpy protrusions and ashen patches growing in volcanic soil.", + "display_name": "Ash Yam", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round, leafy vegetable with pale green outer leaves that wrap tightly around its dense, spherical head.", + "display_name": "Cabbage", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long orange root vegetable with a tapered end and small green leaves sprouting from its thick stem.", + "display_name": "Carrot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dried, tan-colored vegetable with a bulbous bottom section and narrow neck commonly used as a container.", + "display_name": "Gourd", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small, round fruit with smooth green skin and firm flesh commonly found growing on apple trees throughout Skyrim.", + "display_name": "Green Apple", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long green vegetable with a thick white stalk and slender leaves growing from its cylindrical base.", + "display_name": "Leek", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round, brown tuber with rough, earthy skin and small indented spots scattered across its surface.", + "display_name": "Potato", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small, round fruit with smooth crimson skin and a waxy sheen typical of fresh apples.", + "display_name": "Red Apple", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round, bright red fruit with smooth skin and a small green stem where it connected to the plant.", + "display_name": "Tomato", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round, orange-yellow gourd with a smooth rind and bulbous shape growing wild among Skyrim's vegetation.", + "display_name": "Wild Gourd", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pale yellow rectangular block of dairy spread with smooth, glossy surfaces and slightly rounded edges.", + "display_name": "Butter", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A clay jug filled with white liquid milk, featuring a wide base and narrow spout for pouring.", + "display_name": "Jug of Milk", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rough burlap sack filled with white flour, tied at the top with a simple twine rope.", + "display_name": "Sack of Flour", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A golden-brown pastry pouch filled with spiced apple pieces, dusted with sugar and folded into a rounded shape.", + "display_name": "Apple Dumpling", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A golden-brown loaf of bread twisted into an intricate braid pattern with a glossy, egg-washed surface.", + "display_name": "Braided Bread", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round, palm-sized dumpling filled with minced chicken and wrapped in thin, white dough.", + "display_name": "Chicken Dumpling", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of golden-brown patties made from ground mudcrab meat, formed into flat circular shapes with visible chunks of shell meat.", + "display_name": "Crab Cakes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A thick slice of crusty bread toasted golden-brown and infused with chopped garlic and melted butter.", + "display_name": "Garlic Bread", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A flaky pastry tart filled with purple-red jazbay grapes and dusted with powdered sugar on top.", + "display_name": "Jazbay Crostata", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round, flaky pastry tart filled with dark purple juniper berries and dusted with powdered sugar on top.", + "display_name": "Juniper Berry Crostata", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round, palm-sized dumpling with flecks of purple lavender petals visible through its pale, steamed dough exterior.", + "display_name": "Lavender Dumpling", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round loaf of light brown bread with a crusty exterior and visible chunks of potato baked into its surface.", + "display_name": "Potato Bread", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A flaky pastry tart filled with bright red snowberries and dusted with powdered sugar on its golden-brown crust.", + "display_name": "Snowberry Crostata", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming wooden bowl filled with chunks of red apple and green cabbage floating in a light brown broth.", + "display_name": "Apple Cabbage Stew", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of thick brown broth containing chunks of beef, carrots, and potatoes with visible herbs floating on top.", + "display_name": "Beef Stew", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of thick broth containing chunks of boiled potato and shredded cabbage leaves floating on the surface.", + "display_name": "Cabbage Potato Soup", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A thick, creamy white soup served in a wooden bowl with visible chunks of clams, potatoes, and diced vegetables.", + "display_name": "Clam Chowder", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A grilled white fish with crispy golden-brown skin, served whole with its head and tail intact.", + "display_name": "Cooked Angelfish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A grilled fish with pale flesh, blackened skin, and prominent fangs characteristic of deep-water angler species.", + "display_name": "Cooked Angler", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small, browned fish larva with crispy edges and a curved, segmented body served on a wooden platter.", + "display_name": "Cooked Angler Larvae", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A grilled white-fleshed fish with crispy golden-brown skin, served whole with its head and tail intact.", + "display_name": "Cooked Arctic Char", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A grilled freshwater fish with silvery-gray scales, served whole with crisp, browned skin and white flaky meat.", + "display_name": "Cooked Arctic Grayling", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A thick slab of browned beef meat with dark grill marks across its surface and a tender, pink center.", + "display_name": "Cooked Beef", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A seared cut of dark boar meat with charred edges and faint grill marks across its browned surface.", + "display_name": "Cooked Boar Meat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A browned freshwater fish with crispy skin, served whole with its head and tail intact.", + "display_name": "Cooked Brook Bass", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A browned freshwater fish with crispy scales, served whole on a wooden platter with its fins and tail intact.", + "display_name": "Cooked Carp", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A golden-brown fillet of catfish with crispy skin and white, flaky meat visible along its seared edges.", + "display_name": "Cooked Catfish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A white-fleshed fish fillet with golden-brown seared edges, served on a simple wooden plate.", + "display_name": "Cooked Cod", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large, roasted fish fillet with crispy golden-brown skin, served on a pewter plate with charred edges.", + "display_name": "Cooked Direfish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pale white fish fillet with translucent edges, garnished with herbs and seared to a flaky texture.", + "display_name": "Cooked Glass Catfish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A cooked fish fillet with translucent, glass-like flesh and crispy, pale edges served on a wooden plate.", + "display_name": "Cooked Glassfish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small golden-brown fish with crispy skin and white flaky meat, served whole on a wooden plate.", + "display_name": "Cooked Goldfish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small, reddish-brown mudcrab shell filled with steamed meat, served whole on a wooden platter.", + "display_name": "Cooked Juvenile Mudcrab", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A cooked fish with bright orange-red flesh and a distinctive lyre-shaped tail fin that remains intact after preparation.", + "display_name": "Cooked Lyretail Anthias", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A seared cut of reddish-brown meat with dark grill marks and a thin layer of rendered fat along the edges.", + "display_name": "Cooked Nix-Hound Meat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A white-fleshed fish with iridescent scales and crispy browned skin, served whole and garnished with mountain herbs.", + "display_name": "Cooked Pearlfish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A grilled white fish fillet with crispy, browned skin and charred grill marks across its flaky surface.", + "display_name": "Cooked Pogfish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small grilled fish with crispy golden-brown skin, served whole on a simple wooden plate.", + "display_name": "Cooked Pygmy Sunfish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A grilled fish fillet with blackened edges and reddish-brown scales still visible along its curved body.", + "display_name": "Cooked Scorpion Fish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A grilled fish fillet with crispy brown edges, flaky white meat, and distinctive spade-shaped tail fins still attached.", + "display_name": "Cooked Spadefish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A grilled white fish with three leg-like fins protruding from its sides and distinctive dark spots along its body.", + "display_name": "Cooked Tripod Spiderfish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A grilled pale-fleshed fish with reddish fins and sharp fangs protruding from its narrow mouth.", + "display_name": "Cooked Vampire Fish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of thick broth containing chunks of mudcrab meat, vegetables, and herbs floating on the surface.", + "display_name": "Crab Stew", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A thick, pale orange soup served in a ceramic bowl with visible chunks of mudcrab meat and floating herbs.", + "display_name": "Creamy Crab Bisque", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A creamy yellow cheese sauce served in a ceramic bowl with visible flecks of moon sugar and spices swirled throughout.", + "display_name": "Elsweyr Fondue", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A seared piece of white meat chicken with dark grill marks crisscrossing its lightly browned surface.", + "display_name": "Grilled Chicken Breast", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of thick stew containing chunks of pink horker meat and purple ash yam pieces in a brown broth.", + "display_name": "Horker and Ash Yam Stew", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rectangular loaf of baked meat with a brown crust, made from ground horker flesh and formed into a dense shape.", + "display_name": "Horker Loaf", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of thick brown broth containing chunks of horker meat, leeks, and root vegetables.", + "display_name": "Horker Stew", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A thick, raw cut of horse meat with exposed muscle tissue and a layer of fat along one edge.", + "display_name": "Horse Haunch", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming wooden bowl filled with dark broth, chunks of ironwood nuts, and floating green herbs.", + "display_name": "Ironwood Soup", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of dark broth containing chunks of ironwood mushrooms, root vegetables, and dried herbs.", + "display_name": "Ironwood Soup", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A browned and roasted goat leg with exposed bone at one end and crispy, seasoned meat throughout.", + "display_name": "Leg of Goat Roast", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A thick slab of dark red meat with visible marbling and charred edges from cooking.", + "display_name": "Mammoth Steak", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A whole roasted pheasant with crisp brown skin, served on a wooden platter with root vegetables alongside it.", + "display_name": "Pheasant Roast", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A thick, creamy soup filled with chunks of potato and mudcrab meat in a ceramic bowl.", + "display_name": "Potato Crab Chowder", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of creamy beige broth filled with tender chunks of potato and flecks of dried herbs.", + "display_name": "Potato Soup", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A thick cut of cooked rabbit meat with browned edges and visible bone protruding from one end.", + "display_name": "Rabbit Haunch", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A thick orange-red soup garnished with chunks of crab meat and roasted tomatoes in a ceramic bowl.", + "display_name": "Roasted Tomato Crab Bisque", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pink-fleshed fish fillet with crispy, seared edges and visible grill marks across its surface.", + "display_name": "Salmon Steak", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pink-orange fillet of cooked salmon with visible flaking and char marks across its grilled surface.", + "display_name": "Salmon Steak", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Several bright red mudcrab legs arranged on a plate, with visible steam rising and beads of moisture on the shell.", + "display_name": "Steamed Mudcrab Legs", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of bright red broth garnished with fresh herbs and served with a wooden spoon.", + "display_name": "Tomato Soup", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of broth-based soup containing chunks of leeks, tomatoes, potatoes, and cabbage floating throughout the liquid.", + "display_name": "Vegetable Soup", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A thick cut of raw deer meat with reddish-brown flesh and white streaks of fat along the edges.", + "display_name": "Venison Chop", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of thick brown stew containing chunks of deer meat, carrots, and potatoes in a savory broth.", + "display_name": "Venison Stew", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming wooden bowl filled with chunks of apple and shredded cabbage floating in a light brownish broth.", + "display_name": "Hot Apple Cabbage Stew", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of thick brown broth containing chunks of beef, carrots, and potatoes with wisps of vapor rising.", + "display_name": "Hot Beef Stew", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of thick broth containing chunks of boiled potato and shredded cabbage leaves floating on the surface.", + "display_name": "Hot Cabbage Potato Soup", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming wooden bowl filled with clear broth, tender green cabbage leaves, and diced vegetables floating throughout.", + "display_name": "Hot Cabbage Soup", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming white soup filled with tender clam pieces and diced vegetables served in a rustic wooden bowl.", + "display_name": "Hot Clam Chowder", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of reddish broth containing chunks of mudcrab meat, vegetables, and visible herbs floating on the surface.", + "display_name": "Hot Crab Stew", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of pale orange soup filled with tender crab meat chunks and garnished with fresh herbs.", + "display_name": "Hot Creamy Crab Bisque", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of melted yellow cheese garnished with moon sugar crystals and chopped green herbs on top.", + "display_name": "Hot Elsweyr Fondue", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of thick stew containing chunks of pink horker meat and purple ash yam pieces in a savory broth.", + "display_name": "Hot Horker and Ash Yam Stew", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of thick broth containing chunks of pink horker meat, carrots, and potatoes garnished with fresh herbs.", + "display_name": "Hot Horker Stew", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of dark brown broth containing chunks of ironwood bark and forest mushrooms floating on the surface.", + "display_name": "Hot Ironwood Soup", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of creamy white soup filled with chunks of potato and pink crabmeat, garnished with fresh herbs.", + "display_name": "Hot Potato Crab Chowder", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of thick potato soup with visible chunks of potato, leeks, and butter melting on its surface.", + "display_name": "Hot Potato Soup", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of orange-red soup filled with chunks of crab meat and roasted tomatoes in a creamy broth.", + "display_name": "Hot Roasted Tomato Crab Bisque", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of bright red soup garnished with fresh herbs and served with a wooden spoon.", + "display_name": "Hot Tomato Soup", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming wooden bowl filled with broth, chunks of carrots, leeks, and potatoes floating among visible herbs and spices.", + "display_name": "Hot Vegetable Soup", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of rich brown stew containing chunks of venison, carrots, and potatoes in a thick broth.", + "display_name": "Hot Venison Stew", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round baked pie with a golden-brown crust and visible apple slices showing through the latticed pastry top.", + "display_name": "Apple Pie", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of brown potatoes with crispy, split skins revealing fluffy white flesh steaming in the center.", + "display_name": "Baked Potatoes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small, round pastry with golden-brown crust and pale cream filling visible through a hole in its center.", + "display_name": "Boiled Creme Treat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rounded loaf of golden-brown bread with a cracked crust and dense, hearty appearance.", + "display_name": "Bread", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round loaf of golden-brown bread with a cracked crust and dense, light-colored interior visible at the edges.", + "display_name": "Bread", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of clear broth containing chopped green cabbage leaves and visible vegetable chunks floating throughout.", + "display_name": "Cabbage Soup", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A blackened, crispy piece of rat meat with dark burn marks along its uneven, shriveled surface.", + "display_name": "Charred Skeever Meat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A triangular wedge of pale yellow cheese with small holes scattered throughout its firm, waxy surface.", + "display_name": "Eidar Cheese Wedge", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large wheel of pale yellow cheese with a thick rind and distinctive round shape typical of aged dairy wheels.", + "display_name": "Eidar Cheese Wheel", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A triangular wedge of pale yellow cheese with a firm rind and small holes scattered throughout its creamy interior.", + "display_name": "Goat Cheese Wedge", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large wheel of pale yellow cheese with a waxy rind and shallow ridges along its rounded sides.", + "display_name": "Goat Cheese Wheel", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Charred green leek stalks with browned edges, arranged side-by-side on a wooden serving platter.", + "display_name": "Grilled Leeks", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steaming bowl of hearty stew containing chunks of meat, vegetables, and broth served with a fresh bread roll.", + "display_name": "Homecooked Meal", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A golden-colored, viscous liquid stored in a small clay jar with a narrow neck and rounded body.", + "display_name": "Honey", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small baked pastry filled with honey and crushed nuts, formed into a golden-brown circular shape.", + "display_name": "Honey Nut Treat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A twisted rope of golden-brown taffy candy stretched into an elongated shape, with a slightly glossy surface.", + "display_name": "Long Taffy Treat", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A shallow wooden bowl filled with thick, pale-yellow cheese made from mammoth's milk.", + "display_name": "Mammoth Cheese Bowl", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A charred fish fillet with crispy, blackened skin and white flaky meat visible along its cooked edges.", + "display_name": "Seared Slaughterfish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wedge of pale yellow cheese with several thin, uniform slices cut from its triangular block.", + "display_name": "Sliced Eidar Cheese", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wedge-shaped piece of pale yellow cheese with small holes throughout and visible cut marks along its edges.", + "display_name": "Sliced Goat Cheese", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dried, pale husk resembling an empty seed pod with a wrinkled, elongated shape and brittle, papery texture.", + "display_name": "Soul Husk", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A slab of cooked beef dotted with visible herbs and dark spices across its browned, crusted surface.", + "display_name": "Spiced Beef", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A spiral-shaped pastry with white frosting drizzled on top, baked to a golden-brown color and served on a small plate.", + "display_name": "Sweet Roll", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark amber liquor in a rounded glass bottle with a weathered label showing signs of age.", + "display_name": "Aged Flin", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A brown glass bottle containing golden-colored liquid, topped with a cork stopper and bearing a simple paper label.", + "display_name": "Ale", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall glass bottle containing dark red wine with a tapered neck and weathered paper label.", + "display_name": "Alto Wine", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall green glass bottle filled with dark red wine and sealed with a cork stopper.", + "display_name": "Alto Wine", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark red liquid in a tall glass bottle, decorated with black-scaled serpentine patterns and sealed with a cork stopper.", + "display_name": "Argonian Bloodwine", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark amber bottle filled with honey-based mead that has a faint reddish tinge when held to light.", + "display_name": "Ashfire Mead", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark amber liquid in a rounded glass bottle with a black wax seal bearing the Black-Briar family crest.", + "display_name": "Black-Briar Mead", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark glass bottle filled with aged mead, bearing the Black-Briar family seal in black wax on its neck.", + "display_name": "Black-Briar Reserve", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark amber liquid in a rounded glass bottle with a long neck and wax-sealed cork stopper.", + "display_name": "Colovian Brandy", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark amber liquid in a curved glass bottle with a dragon-scale pattern etched into its surface.", + "display_name": "Dragon's Breath Mead", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark red wine contained in a tall glass bottle with a glowing orange-red ember design etched into the surface.", + "display_name": "Emberbrand Wine", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark glass bottle filled with deep crimson liquid, sealed with a cork and bearing a flame-themed paper label.", + "display_name": "Firebrand Wine", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A clear, amber-colored alcoholic beverage served in a short glass bottle with a narrow neck.", + "display_name": "Flin", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A glass bottle filled with golden-amber liquid, bearing a black and yellow label marked with the Honningbrew meadery emblem.", + "display_name": "Honningbrew Mead", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A standard wine bottle filled with dark red liquid, bearing a handwritten label that reads \"Jessica's\" in flowing script.", + "display_name": "Jessica's Wine", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A clay bottle containing a cloudy, pale-yellow alcoholic beverage made from fermented rice and honey.", + "display_name": "Matze", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A honey-colored mead in a brown glass bottle, flecked with small dark juniper berries floating throughout the liquid.", + "display_name": "Mead with Juniper Berry", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A brown glass bottle filled with golden-amber liquid, sealed with a cork and bearing a traditional Nordic label.", + "display_name": "Nord Mead", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark glass bottle containing amber-colored sujamma liquor with a handwritten label bearing Sadri's name.", + "display_name": "Sadri's Sujamma", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark red wine stored in a rounded glass bottle with a long neck and cork stopper.", + "display_name": "Shein", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark red wine in a rounded glass bottle, flecked with visible spices and herbs floating throughout the liquid.", + "display_name": "Spiced Wine", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark red alcoholic beverage served in a tall clay bottle with a narrow neck and rounded base.", + "display_name": "Sujamma", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A burgundy-colored wine in a tall glass bottle with a tapered neck and the Surilie Brothers' label affixed.", + "display_name": "Surilie Brothers Wine", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark red liquid in a round-bodied glass bottle with a long neck and cork stopper.", + "display_name": "Wine", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark red liquid contained within a round-bodied glass bottle with a long neck and cork stopper.", + "display_name": "Wine", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A live honeybee flutters inside a sealed glass jar filled with small holes in its metal lid.", + "display_name": "Bee in a Jar", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A glowing blue-winged insect trapped inside a clear glass jar with a perforated metal lid.", + "display_name": "Bliss Bug in a Jar", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A blue-winged butterfly flutters inside a clear glass jar sealed with a perforated metal lid.", + "display_name": "Butterfly in a Jar", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A glass jar containing a glowing blue dragonfly that flutters continuously within its transparent confines.", + "display_name": "Dragonfly in a Jar", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A luminous green butterfly flutters within a clear glass jar sealed with a wooden lid.", + "display_name": "Green Butterfly in a Jar", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A clear glass jar containing a live brown moth that flutters gently against the perforated metal lid.", + "display_name": "Moth in a Jar", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A glowing purple butterfly flutters within a clear glass jar sealed with a perforated metal lid.", + "display_name": "Purple Butterfly in a Jar", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A glowing orange torchbug flutters inside a sealed glass jar with a perforated metal lid.", + "display_name": "Torchbug in a Jar", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple cotton tunic dyed in medium blue, cut short at the waist with short sleeves and a round neckline.", + "display_name": "Boy's Blue Tunic", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple cloth tunic dyed in forest green, sized for a young boy with short sleeves and a round neckline.", + "display_name": "Boy's Green Tunic", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A plain grey cloth tunic with short sleeves and a simple round neckline, sized to fit a young boy.", + "display_name": "Boy's Grey Tunic", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple red cloth tunic with short sleeves and a round neckline, sized to fit a young male child.", + "display_name": "Boy's Red Tunic", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple yellow cloth tunic with short sleeves and a round neckline, sized to fit a young boy.", + "display_name": "Boy's Yellow Tunic", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A knee-length dress made of blue cotton fabric with short sleeves, a round neckline, and a simple gathered skirt.", + "display_name": "Girl's Blue Dress", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A child-sized dress made of green fabric with long sleeves, a round neckline, and a knee-length skirt.", + "display_name": "Girl's Green Dress", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple ankle-length dress made of grey fabric with long sleeves and a modest neckline, sized for a young girl.", + "display_name": "Girl's Grey Dress", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple knee-length dress made of red fabric with short sleeves and a modest neckline, sized for a young child.", + "display_name": "Girl's Red Dress", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A child-sized dress made of bright yellow fabric with short sleeves and a knee-length skirt.", + "display_name": "Girl's Yellow Dress", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small cloth doll with button eyes, yarn hair, and a simple stitched dress in muted colors.", + "display_name": "Child's Doll", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small cloth doll with pale fabric skin, red button eyes, and tiny stitched fangs protruding from its mouth.", + "display_name": "Vampire Doll", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pale, spherical pod containing a curled white spider, encased in translucent webbing and roughly the size of a fist.", + "display_name": "Albino Spider Pod", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A segmented plate of tan-colored insect shell material with ridged edges and a naturally layered, overlapping structure.", + "display_name": "Chitin Plate", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A cracked, pale-white spider egg sac with visible tears in its delicate webbed surface and partially exposed contents.", + "display_name": "Damaged Albino Spider Pod", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark red crystalline stone with glowing crimson veins that pulse throughout its rough, asymmetrical surface.", + "display_name": "Heart Stone", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A flexible, grayish-brown hide material with a smooth surface and subtle striations throughout its leathery texture.", + "display_name": "Netch Leather", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pale blue-white crystalline material that resembles enchanted ice, found naturally forming in dense, opaque deposits.", + "display_name": "Stalhrim", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bundle of cut logs with rough-hewn ends, bound together with twine and sized for a standard hearth.", + "display_name": "Firewood", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A clump of dull gray earthen material with a rough, granular texture that can be molded when wet.", + "display_name": "Clay", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A translucent, green-tinted material with crystalline patterns that forms armor and weapons with flowing, organic curves and sharp edges.", + "display_name": "Glass", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of curved, ridged horns removed from a goat's skull, tapering from thick bases to pointed tips.", + "display_name": "Goat Horns", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rough-hewn block of gray stone with angular faces and visible tool marks from extraction.", + "display_name": "Quarried Stone", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A cylindrical section of timber cut cleanly at both ends, with visible growth rings and rough bark still attached.", + "display_name": "Sawn Log", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Dried yellow stalks of grain bundled loosely together, commonly used as bedding material and animal feed.", + "display_name": "Straw", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A flat, rectangular piece of metal with mounting holes and a central pivot point used to connect doors and panels.", + "display_name": "Hinge", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A set of dull gray iron components including hinges, brackets, and fasteners used to join wooden structures together.", + "display_name": "Iron Fittings", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A metal door lock mechanism consisting of a keyhole surrounded by a circular brass plate with intricate Nordic engravings.", + "display_name": "Lock", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Small, slender iron spikes with pointed tips and flat heads used in woodworking and construction.", + "display_name": "Nails", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden stick wrapped in oil-soaked cloth and rags that burns with an orange flame when lit.", + "display_name": "Torch", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden stick wrapped with cloth and resin at one end that produces an orange flame when lit.", + "display_name": "Torch", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered human skull with darkened, time-worn bone and traces of dried soil clinging to its surface.", + "display_name": "Ancient Traveler's Skull", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small silver plate decorated with an ornate floral pattern and the engraved name \"Aretino\" along its curved rim.", + "display_name": "Aretino Family Heirloom", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A common iron fork with a long handle and four sharp tines, showing signs of frequent use and polishing.", + "display_name": "Balbus's Fork", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A slender wooden flute decorated with delicate silver filigree and small turquoise stones along its polished length.", + "display_name": "The Dancer's Flute", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A copper flagon with a curved handle and ornate floral engravings around its wide, tapered rim.", + "display_name": "Michaela's Flagon", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small metallic sphere with a glowing yellow eye, featuring white paneled armor and an erratic hovering movement pattern.", + "display_name": "Space Core", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large ornate fork made of ancient Nordic metal with two curved prongs and an elaborately carved handle.", + "display_name": "Ysgramor's Soup Spoon", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden cleaning tool with long bristles bound to one end of a straight wooden handle.", + "display_name": "Broom", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A glowing red crystalline sphere encased in Dwemer metal rings and brackets, commonly found within mechanical Centurion automata.", + "display_name": "Centurion Dynamo Core", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A clear glass bottle with a long neck, rounded body, and dark residue stains along its interior surfaces.", + "display_name": "Empty Wine Bottle", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A clear glass bottle with a long neck and rounded base, designed to hold wine but currently containing nothing.", + "display_name": "Empty Wine Bottle", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A clear glass bottle with a narrow neck and rounded body, designed to hold wine but currently containing nothing.", + "display_name": "Empty Wine Bottle", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A clear glass bottle with a narrow neck and rounded body, designed to hold wine but currently containing nothing.", + "display_name": "Empty Wine Bottle", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A clear glass bottle with a long neck, rounded body, and no remaining liquid inside.", + "display_name": "Empty Wine Bottle", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A cylindrical scroll of off-white parchment rolled tightly into a compact tube shape.", + "display_name": "Roll of Paper", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tattered, water-damaged book with loose pages, frayed binding, and text too faded or smeared to read.", + "display_name": "Ruined Book", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered, tattered book with charred edges, loose bindings, and water-damaged pages that are largely illegible.", + "display_name": "Ruined Book", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden drinking vessel stained with dried blood along its rim and inner surface.", + "display_name": "Bloody Tankard", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple wooden bowl with a round, concave shape and shallow depth, sized to fit comfortably in one's hands.", + "display_name": "Bowl", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple wooden bowl with a smooth, rounded interior and wide circular rim suitable for holding food or liquids.", + "display_name": "Bowl", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple wooden bowl with a smooth, rounded interior and wide circular rim suitable for holding food or liquid.", + "display_name": "Bowl", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple wooden bowl with a smooth, rounded interior and wide circular rim for holding food or liquid.", + "display_name": "Bowl", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple wooden bowl with a smooth, rounded interior and a wide circular rim suitable for holding food or liquid.", + "display_name": "Bowl", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple wooden bowl with a smooth, round interior and a wide circular rim for holding food or liquids.", + "display_name": "Bowl", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall brass holder with a round base, slender stem, and wide top rim designed to support a single candle.", + "display_name": "Candlestick", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall metal holder with a cylindrical base and stem designed to support a single tallow or beeswax candle.", + "display_name": "Candlestick", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A slender brass holder with a curved base and raised rim designed to support a single tallow candle.", + "display_name": "Candlestick", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round, black cooking vessel with a wide opening, thick walls, and three stubby legs for stability over fires.", + "display_name": "Cast Iron Pot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round, dark metal cooking vessel with a wide opening, thick walls, and a sturdy handle for hanging over fires.", + "display_name": "Cast Iron Pot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple wooden drinking vessel with a round bowl and short stem base for holding beverages.", + "display_name": "Cup", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple wooden drinking vessel with a round bowl and short stem base commonly found throughout Skyrim's taverns.", + "display_name": "Cup", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A metal drinking vessel with a wide base, curved handle, and hinged lid commonly used in taverns.", + "display_name": "Flagon", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small, dull metal utensil with four short prongs extending from a slender handle.", + "display_name": "Fork", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of off-white tallow candles coated in a glossy finish, each mounted on a plain brass holder.", + "display_name": "Glazed Candles", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall ceramic vessel with a rounded body, narrow neck, and smooth glazed surface featuring decorative bands.", + "display_name": "Glazed Urn", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A metal drinking vessel with a wide circular bowl, slender stem, and round base commonly found on dining tables.", + "display_name": "Goblet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall metal drinking vessel with a wide circular bowl, tapered stem, and round base commonly used for serving wine.", + "display_name": "Goblet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A metal drinking vessel with a wide circular bowl, slender stem, and round base commonly used by nobles and dignitaries.", + "display_name": "Goblet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall metal drinking vessel with a wide circular bowl, tapered stem, and flat round base.", + "display_name": "Goblet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple ceramic vessel with a rounded body, narrow neck, and small handle for pouring liquids.", + "display_name": "Jug", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A clay vessel with a rounded belly, narrow neck, and small handle for carrying and pouring liquids.", + "display_name": "Jug", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple earthenware vessel with a rounded body, narrow neck, and small handle for pouring liquids.", + "display_name": "Jug", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round clay vessel with a narrow neck, wide body, and small curved handle for carrying liquids.", + "display_name": "Jug", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round ceramic vessel with a narrow neck, wide belly, and small handle for carrying liquids.", + "display_name": "Jug", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rounded earthenware vessel with a narrow neck, wide body, and small handle for carrying liquids.", + "display_name": "Jug", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round metal cooking pot with a curved handle across the top and a wide opening for filling.", + "display_name": "Kettle", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small iron blade with a short wooden handle, featuring a single sharp edge and pointed tip.", + "display_name": "Knife", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple round dinnerware piece made of pewter metal with a shallow rim and flat eating surface.", + "display_name": "Plate", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple round dish made of pewter metal with a flat center and slightly raised rim around the edge.", + "display_name": "Plate", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple circular dish made of pewter metal with a shallow raised rim around its flat eating surface.", + "display_name": "Plate", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple round dining plate made of polished pewter metal with a shallow rim around its flat surface.", + "display_name": "Plate", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large, round metal serving dish with a flat center and slightly raised rim around its circumference.", + "display_name": "Platter", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A slender candlestick crafted from polished silver, featuring a round base, tapered stem, and wide holder for a single candle.", + "display_name": "Silver Candlestick", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished chalice made of silver with a wide circular base, tapered stem, and flared drinking bowl.", + "display_name": "Silver Goblet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished chalice made of silver with a wide circular base, tapered stem, and flared drinking bowl.", + "display_name": "Silver Goblet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall, polished jug crafted from silver metal with a narrow spout and rounded belly for holding liquids.", + "display_name": "Silver Jug", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple wooden eating utensil with a shallow oval bowl and a straight handle worn smooth from use.", + "display_name": "Spoon", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden drinking vessel with a sturdy handle, wide circular rim, and tapered cylindrical body for holding beverages.", + "display_name": "Tankard", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple round bowl carved from plain wood with smooth inner walls and a wide, shallow basin.", + "display_name": "Wooden Bowl", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple wooden spoon with a long handle and rounded bowl-shaped end for scooping and serving liquids.", + "display_name": "Wooden Ladle", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple circular plate carved from wood with a flat center and slightly raised rim around its edge.", + "display_name": "Wooden Plate", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A shallow, round bowl made of burnished bronze-colored metal with geometric Dwemer designs etched along its curved rim.", + "display_name": "Dwemer Bowl", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A shallow, rounded bowl made of tarnished golden-bronze metal with geometric patterns etched along its curved rim.", + "display_name": "Dwemer Bowl", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A shallow, bronze-colored metal bowl with geometric patterns etched along its wide rim and curved sides.", + "display_name": "Dwemer Bowl", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored metallic cup with geometric patterns etched along its curved sides and a wide, stable base.", + "display_name": "Dwemer Cup", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored metal drinking vessel with geometric patterns etched into its curved sides and a wide circular base.", + "display_name": "Dwemer Cup", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored metal drinking vessel with angular geometric patterns and a wide circular base tapering to a narrower rim.", + "display_name": "Dwemer Cup", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A shallow, circular bronze-colored metal plate with angular geometric patterns etched along its wide rim.", + "display_name": "Dwemer Dish", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored metal cooking pan with ornate geometric patterns etched along its wide, shallow bowl and curved handle.", + "display_name": "Dwemer Pan", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A shallow, circular cooking vessel made of golden-bronze Dwemer metal with a short handle and raised outer rim.", + "display_name": "Dwemer Pan", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round, metallic plate with ornate geometric patterns etched into its golden-bronze surface and a raised decorative rim.", + "display_name": "Dwemer Plate", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A hollow wooden cylinder covered in stretched animal hide on both ends, with a simple leather strap for carrying.", + "display_name": "Drum", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A slender wooden wind instrument with finger holes along its length and a polished mouthpiece at one end.", + "display_name": "Flute", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A slender wooden wind instrument with finger holes along its length and a mouthpiece at one end.", + "display_name": "Flute", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden stringed instrument with a rounded body, long neck, and four to eight taut strings stretched across its surface.", + "display_name": "Lute", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A woven container made of thin wooden strips interlaced in a round shape with an open top.", + "display_name": "Basket", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A woven container made from dried reeds or straw, featuring an open top and rounded sides for carrying items.", + "display_name": "Basket", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A woven container made from dried straw or reeds with a round base and open top for carrying items.", + "display_name": "Basket", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A woven container made from dried straw or reeds, featuring a round base and open top for carrying items.", + "display_name": "Basket", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A woven container made from dried straw or reeds with a wide circular opening and rounded bottom.", + "display_name": "Basket", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A woven container made from dried straw or reeds with a wide circular opening and rounded bottom for carrying items.", + "display_name": "Basket", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A woven container made from dried straw or reeds with a round base and sloping sides for carrying items.", + "display_name": "Basket", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A woven container made from dried plant fibers in a round shape with an open top and slightly tapered sides.", + "display_name": "Basket", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden and leather hand-operated air pump with accordion-like folds used to direct air into forges and furnaces.", + "display_name": "Bellows", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tattered set of cloth garments stained dark red with dried blood and torn in multiple places.", + "display_name": "Bloody Rags", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden pail with metal bands around its circumference, featuring a curved handle attached at opposite sides.", + "display_name": "Bucket", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple wooden pail with metal bands around its rim and base, featuring a curved metal handle for carrying.", + "display_name": "Bucket", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden pail with metal bands around its circumference, featuring a curved metal handle attached at opposite sides.", + "display_name": "Bucket", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A charred, blackened book with crumbling pages and a fire-damaged cover that has been rendered completely unreadable.", + "display_name": "Burned Book", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy metal pressing tool with a triangular base, pointed tip, and a curved handle extending from the back.", + "display_name": "Clothes Iron", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small stone statuette depicting a nude female figure with flowing hair and outstretched arms in a graceful pose.", + "display_name": "Dibella Statue", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small glass bottle with a narrow neck and rounded base, stained with faint traces of a reddish-purple residue.", + "display_name": "Empty Skooma Bottle", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A woven reed basket filled with colorful mountain flowers and small sprigs of local plants and herbs.", + "display_name": "Flower Basket", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rectangular cloth banner mounted on a wooden pole, displaying heraldic designs and colors of its associated faction.", + "display_name": "Flag", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple iron hammer with a square metal head mounted on a short wooden handle.", + "display_name": "Hammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small ceramic pot with a narrow neck opening, containing dark liquid ink for writing with quills.", + "display_name": "Inkwell", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A handheld metal light source with a cylindrical frame, glass panels, and a hook for hanging or carrying.", + "display_name": "Lantern", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden shaft topped with three sharp metal tines, used as both a farming tool and makeshift weapon.", + "display_name": "Pitchfork", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden-handled farming tool with three long metal tines arranged in parallel at its head.", + "display_name": "Pitchfork", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round clay cooking vessel with a wide mouth, short rim, and smooth brown surface for holding ingredients.", + "display_name": "Pot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round cooking vessel made of cast iron with a wide mouth and sturdy handles on opposite sides.", + "display_name": "Pot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round clay cooking vessel with a wide mouth and thick walls, designed to rest directly on cooking fires.", + "display_name": "Pot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple clay cooking vessel with a rounded bottom, wide mouth, and thick walls for holding soups and stews.", + "display_name": "Pot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long feather pen with a sharpened tip, designed for writing with ink on parchment and scrolls.", + "display_name": "Quill", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A browned, fully-cooked ox head with charred skin and exposed teeth resting on a wooden serving platter.", + "display_name": "Roasted Ox Head", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large, browned section of ox meat on the bone with charred edges and glistening fat drippings.", + "display_name": "Roasted Ox Leg", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long metal blade with sharp serrated teeth along one edge and a wooden handle for gripping.", + "display_name": "Saw", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden-handled digging tool with a curved metal blade and slightly pointed tip for breaking earth.", + "display_name": "Shovel", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden-handled digging tool with a curved metal blade at one end and a D-shaped grip at the other.", + "display_name": "Shovel", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small metal valve with a rotating handle used to control the flow of liquid from barrels or containers.", + "display_name": "Spigot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long metal tool with two hinged arms designed to grip and manipulate items, typically used at forges.", + "display_name": "Tongs", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rusted iron implement resembling pliers or tongs with serrated grips and hinged handles for gripping and twisting.", + "display_name": "Torture Tool", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A collection of rusted iron implements including pliers, hooks, and clamps arranged on a blood-stained leather roll.", + "display_name": "Torture Tools", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A translucent, honey-colored gemstone with a smooth, polished surface and irregular organic shapes trapped within its crystalline structure.", + "display_name": "Amber", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A reddish-brown metallic ore with crystalline formations and dark striations running through its rough, unrefined surface.", + "display_name": "Corundum Ore", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A chunky, jet-black mineral with glossy surfaces and crystalline formations that catch light with a dark metallic sheen.", + "display_name": "Ebony Ore", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rough, golden-yellow chunk of raw mineral ore with metallic streaks and crystalline formations visible throughout its surface.", + "display_name": "Gold Ore", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rough, dark gray chunk of raw mineral with reddish-brown streaks and metallic crystalline formations visible throughout.", + "display_name": "Iron Ore", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged metallic ore with an iridescent purple-green sheen and crystalline formations protruding from its dark, rough surface.", + "display_name": "Madness Ore", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rough, crystalline chunk of green mineral with darker bands and striations running through its surface.", + "display_name": "Malachite Ore", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silvery-white mineral chunk with a pearly luster and faint green-blue undertones visible across its crystalline surface.", + "display_name": "Moonstone Ore", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rough, greenish-gray metallic rock with dark mottled patches and faintly luminescent veins running through its crystalline surface.", + "display_name": "Orichalcum Ore", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silvery-white metallic ore chunk with a glossy sheen and smooth, rounded surfaces that appear naturally polished.", + "display_name": "Quicksilver Ore", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silvery-white metallic ore with a glossy sheen and smooth, rounded surfaces that appear to flow like liquid.", + "display_name": "Quicksilver Ore", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rough, metallic-gray chunk of raw mineral with shimmering crystalline veins running throughout its irregular surface.", + "display_name": "Silver Ore", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A reddish-brown metallic bar with a rough, matte surface and angular edges typical of a cast ingot.", + "display_name": "Corundum Ingot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rectangular bar of golden-bronze metal with angular geometric patterns etched into its smooth, metallic surface.", + "display_name": "Dwarven Metal Ingot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black metallic bar with a glossy sheen and crystalline patterns etched across its dense, volcanic surface.", + "display_name": "Ebony Ingot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rectangular bar of refined gold metal with a smooth, polished surface and distinctive yellow-gold coloring.", + "display_name": "Gold Ingot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rectangular bar of dull gray metal with a rough, unpolished surface and visible casting marks along its sides.", + "display_name": "Iron Ingot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark metallic bar with an iridescent green-purple sheen and irregular crystalline patterns across its rough surface.", + "display_name": "Madness Ingot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rough-cast metallic ingot with a distinctive green-tinted surface and dark striations throughout its rectangular form.", + "display_name": "Orichalcum Ingot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rough-cast metallic ingot with a distinctive green-tinted surface and dark mottled patterns throughout its rectangular form.", + "display_name": "Orichalcum Ingot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silvery-white metallic bar with a matte finish and a standard rectangular ingot shape.", + "display_name": "Quicksilver Ingot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished, honey-colored gemstone with a translucent quality and smooth, rounded surfaces that catch and reflect light.", + "display_name": "Refined Amber", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished green-blue metal ingot with a smooth, lustrous surface and subtle bands of darker mineral striations throughout.", + "display_name": "Refined Malachite", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished, silvery-white ingot with a lustrous sheen and subtle blue-green undertones when caught in direct light.", + "display_name": "Refined Moonstone", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rectangular bar of polished silver metal with a matte finish and distinctive parallel ridges pressed into its surface.", + "display_name": "Silver Ingot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rectangular bar of refined steel with a metallic gray surface and visible casting marks along its sides.", + "display_name": "Steel Ingot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A twisted piece of dull golden metal with angular geometric patterns, characteristic of ancient Dwemer engineering and architecture.", + "display_name": "Bent Dwemer Scrap Metal", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall bronze-colored metal beam with ornate geometric patterns and angular flanges extending from its sides.", + "display_name": "Large Decorative Dwemer Strut", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A thick, rectangular sheet of golden-bronze metal with geometric Dwemer patterns etched across its weathered surface.", + "display_name": "Large Dwemer Plate Metal", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long, bronze-colored metal beam with angular geometric patterns etched along its surface and flanged ends.", + "display_name": "Large Dwemer Strut", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A thin, circular plate of golden-bronze Dwemer metal with geometric patterns etched into its polished surface.", + "display_name": "Small Dwemer Plate Metal", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dense, golden-bronze ingot with angular geometric patterns etched into its metallic surface.", + "display_name": "Solid Dwemer Metal", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored mechanical gear with angular teeth and intricate geometric patterns etched into its metallic surface.", + "display_name": "Dwemer Cog", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored metallic cogwheel with angular teeth and a hollow center, bearing distinctive Dwemer geometric patterns along its rim.", + "display_name": "Dwemer Gear", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored mechanical sphere with intricate circular gears and rings arranged in concentric patterns around a central axis.", + "display_name": "Dwemer Gyro", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored mechanical lever mounted on an ornate metal base featuring angular Dwemer geometric patterns and designs.", + "display_name": "Dwemer Lever", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tarnished brass-colored chunk of metal with angular geometric patterns and curved decorative elements characteristic of Dwemer craftsmanship.", + "display_name": "Dwemer Scrap Metal", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A compact bronze-colored lever mechanism with angular geometric patterns etched into its metallic surface and a short protruding handle.", + "display_name": "Small Dwemer Lever", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored mechanical component featuring interlocking gears, pistons, and angular metal plates with distinctive Dwemer geometric patterns.", + "display_name": "Dwemer Actuator", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged iron blade fragment with visible fracture points, missing its crossguard, grip and pommel completely.", + "display_name": "Broken Iron Sword Blade", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered iron sword handle with frayed leather wrapping and a jagged break where the blade once attached.", + "display_name": "Broken Iron Sword Handle", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A splintered wooden handle with rusted iron fittings and frayed leather wrapping, missing its axe head entirely.", + "display_name": "Broken Iron War Axe Handle", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rusted iron axe head with a cracked blade edge and missing handle, showing signs of battle damage and weathering.", + "display_name": "Broken Iron War Axe Head", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A splintered wooden handle with frayed leather wrappings and a jagged steel base where the axe head once attached.", + "display_name": "Broken Steel Battle Axe Handle", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A fractured steel axe head with jagged edges where it separated from its wooden handle, showing signs of rust and wear.", + "display_name": "Broken Steel Battle Axe Head", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged, fractured piece of steel that forms the upper portion of a sword blade, snapped roughly halfway down its length.", + "display_name": "Broken Steel Sword Blade", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered steel sword grip with frayed leather wrapping and a jagged break where the blade once attached.", + "display_name": "Broken Steel Sword Handle", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved animal horn decorated with brass fittings and the Imperial dragon insignia, used as a military signaling instrument.", + "display_name": "Imperial War Horn", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple iron dagger with a well-worn leather grip and small scratches along its weathered blade.", + "display_name": "Alessandra's Dagger", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A standard steel sword with a curved crossguard, brown leather-wrapped grip, and subtle family markings etched along the blade.", + "display_name": "Amren's Family Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered pickaxe with distinctive Nordic carvings along its metal head and a long wooden handle wrapped in aged leather strips.", + "display_name": "Ancient Nordic Pickaxe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long two-handed steel greatsword with Nordic engravings along its broad blade and a gold-trimmed leather grip.", + "display_name": "Balgruuf's Greatsword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Nordic-style war axe with a curved steel blade, ornate brass fittings, and a wrapped leather grip bearing Whiterun's horse emblem.", + "display_name": "Balgruuf's War Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished bronze axe with ornate Nordic patterns etched along its curved blade and elongated wooden handle.", + "display_name": "Ceremonial Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished silver sword with ornate golden filigree along its blade and an ivory handle adorned with ceremonial engravings.", + "display_name": "Ceremonial Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall wooden staff topped with a stylized dragon skull carved from bone or ivory, wrapped in aged leather bindings.", + "display_name": "Dragon Priest Staff", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple hunting bow made of curved wood with worn leather wrappings around its grip and frayed bowstring.", + "display_name": "Dravin's Bow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A frost-colored glass sword with curved edges and distinctive Nordic etchings along its translucent crystalline blade.", + "display_name": "Grimsever", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A straight double-edged sword with a steel blade, crossguard, and leather-wrapped grip ending in a rounded pommel.", + "display_name": "Steel Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered Nordic steel sword with distinctive spiral engravings along its broad blade and a leather-bound grip marked with ancient runes.", + "display_name": "Hjalti's Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved dragon tooth dagger with ancient Nordic engravings etched along its yellowed surface and a leather-wrapped handle.", + "display_name": "Kahvozein's Fang", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A translucent blade with a faint blue glow, featuring an ethereal steel hilt that appears partially transparent.", + "display_name": "Phantom Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Nordic steel sword with a curved crossguard, etched runes along the blade, and a grip wrapped in faded blue leather.", + "display_name": "Queen Freydis's Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An ancient iron sword with a curved blade, distinctive red-tinted steel, and weathered leather wrappings on its handle.", + "display_name": "Red Eagle's Fury", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered metal mace with a heavy spiked head, corroded brown surface, and a short wooden handle wrapped in frayed leather.", + "display_name": "Rusty Mace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large steel warhammer with a heavy rectangular striking head and a thick wooden handle wrapped in leather strips.", + "display_name": "Shagrol's Warhammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark iron battleaxe with curved wolf heads decorating its double-bladed head and a long, rough-hewn wooden handle.", + "display_name": "The Rueful Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Nordic-style steel greatsword with distinctive curved quillons and a leather-wrapped grip worn smooth from years of use.", + "display_name": "Vilkas's Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A massive double-headed battle axe with Nordic engravings along its curved blades and an elongated wooden handle.", + "display_name": "Wuuthrad", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silver pendant shaped like a diamond-topped coffin, suspended from a simple chain and bearing Arkay's divine symbol.", + "display_name": "Andurs' Amulet of Arkay", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A plain gold ring with a smooth, unadorned surface worn as a symbol of marriage commitment.", + "display_name": "Asgeir's Wedding Band", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silver chain necklace adorned with a central blue sapphire gem set within an ornate Nordic-style metal pendant.", + "display_name": "Bera's Necklace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A golden band with intricate Dwemer engravings and a square-cut emerald mounted in an ornate bezel setting.", + "display_name": "Calcelmo's Ring", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silver ring adorned with a wolf's head design and intricate carvings of running beasts along its band.", + "display_name": "Cursed Ring of Hircine", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple gold ring with a smooth, unadorned band worn by a Nord woman named Fjola.", + "display_name": "Fjola's Wedding Band", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple gold ring with a smooth, unadorned band worn smooth from years of use.", + "display_name": "Fjola's Wedding Band", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small silver pendant in the shape of a rounded locket, designed to open and hold tiny keepsakes.", + "display_name": "Fjotli's Silver Locket", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A broken piece of an ancient bronze amulet with Nordic engravings and a dull gemstone set in its center.", + "display_name": "Gauldur Amulet Fragment", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A broken piece of an ancient golden amulet with angular Nordic engravings and a cracked gemstone in its center.", + "display_name": "Gauldur Amulet Fragment", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A broken section of an ancient bronze amulet featuring Nordic engravings and a cracked gemstone in its center.", + "display_name": "Gauldur Amulet Fragment", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A blue cloth hood with silver trim and a metallic circlet featuring the emblem of Winterhold across the brow.", + "display_name": "Helm of Winterhold", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round steel shield with a reinforced rim and Nordic knotwork patterns etched into its weathered surface.", + "display_name": "Hrolfdir's Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An ancient Nordic crown made of iron and dragon teeth arranged in upward-pointing spikes around its circumference.", + "display_name": "Jagged Crown", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A golden amulet with inlaid gemstones arranged in a circular pattern around a large central ruby.", + "display_name": "Jeweled Amulet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished silver ring with intricate Argonian scale patterns etched along its outer band.", + "display_name": "Madesi's Silver Ring", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silver pendant shaped like a crescent moon, suspended from a delicate chain and adorned with small etched runes.", + "display_name": "Moon Amulet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of thin leather gloves with silver thread embroidery forming intricate circular patterns across the palms and fingertips.", + "display_name": "Mystic Tuning Gloves", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A plain silver ring with angular geometric engravings and a small dark gemstone set into its band.", + "display_name": "Neloth's Ring of Tracking", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered iron helmet with dented sides, a rounded crown, and faded leather straps hanging beneath the chin guard.", + "display_name": "Noster's Helmet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze pendant shaped like a stylized axe-head, suspended from a thick leather cord with Nordic knotwork designs.", + "display_name": "Ogmund's Amulet of Talos", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silver pendant shaped like a hammer with Nordic runes etched along its surface, suspended from a thick leather cord.", + "display_name": "Raerek's Inscribed Amulet of Talos", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple silver chain necklace with a small polished moonstone pendant hanging from its center.", + "display_name": "Reyda's Necklace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silver ring with a small, round gemstone that glows with a faint green tint when viewed in dim light.", + "display_name": "Ring of Pure Mixtures", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round Nordic shield with weathered iron bands, featuring faded carvings of ancient Nordic designs along its wooden surface.", + "display_name": "Roggi's Ancestral Shield", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silver pendant shaped like an anvil and hammer, suspended from a braided leather cord with worn metal clasps.", + "display_name": "Shahvee's Amulet of Zenithar", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tarnished silver amulet with an unfamiliar carved symbol at its center, suspended from a weathered leather cord.", + "display_name": "Strange Amulet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pair of heavy iron tongs with long handles and blackened metal grips worn smooth from use at the forge.", + "display_name": "The Forgemaster's Fingers", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple gold band with a smooth, polished surface and a small engraving of the name \"Viola\" on its inner face.", + "display_name": "Viola's Gold Ring", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A broken purple crystal claw artifact showing three curved talons and ornate Nordic carvings along its fractured left side.", + "display_name": "Amethyst Claw Left Half", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "The right half of a split dragon claw artifact made of polished amethyst with three curved talons extending downward.", + "display_name": "Amethyst Claw Right Half", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A reddish-pink ornamental claw made of coral, featuring three circular emblems and carved dragon talons at its base.", + "display_name": "Coral Dragon Claw", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy dragon claw door key made of dark metal with three diamond-shaped gems embedded in its palm.", + "display_name": "Diamond Claw", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy black claw-shaped key made of ebony metal with three circular emblems carved into its palm-facing surface.", + "display_name": "Ebony Claw", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A palm-sized ornamental claw made of dark metal with three emerald talons and dragon symbols etched into its surface.", + "display_name": "Emerald Dragon Claw", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A translucent green claw-shaped key with three curved talons and circular symbols etched into its palm-sized base.", + "display_name": "Glass Claw", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A palm-sized ornamental claw made of solid gold with three circular symbols carved into its metallic surface.", + "display_name": "Golden Claw", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A palm-sized iron artifact shaped like a dragon's claw, featuring three circular emblems engraved on its underside.", + "display_name": "Iron Claw", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A palm-sized ornamental claw made of carved ivory featuring three embossed dragon talons and circular symbols on its back.", + "display_name": "Ivory Dragon Claw", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy ruby-colored claw made of carved stone featuring three circular emblems and dragon talons on its face.", + "display_name": "Ruby Dragon Claw", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A carved dragon claw door key made of dark metal with three sapphire gems and detailed talon-shaped prongs.", + "display_name": "Sapphire Dragon Claw", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A circular blue-crystalline disc with intricate geometric patterns etched across its luminescent surface and metallic frame.", + "display_name": "Aetherium Crest", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged, crystalline fragment that glows with a bright blue-green light and features angular, geometric patterns across its surface.", + "display_name": "Aetherium Shard", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged, crystalline fragment glowing with bright blue light, composed of an iridescent material with angular geometric patterns.", + "display_name": "Aetherium Shard", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged, crystalline fragment of pale blue-green mineral that emits a faint ethereal glow from its translucent surface.", + "display_name": "Aetherium Shard", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crystalline blue-green fragment with angular facets that gives off a faint, steady glow in the darkness.", + "display_name": "Aetherium Shard", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A desiccated humanoid arm with pale gray skin, elongated fingers, and dark, claw-like nails protruding from each digit.", + "display_name": "Ancient Vampire Arm", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Pale, withered hands with elongated fingers and sharp black nails that show signs of centuries-old decay and desiccation.", + "display_name": "Ancient Vampire Hands", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A desiccated humanoid head with pale gray skin, pronounced fangs, and sunken features characteristic of ancient vampiric remains.", + "display_name": "Ancient Vampire Head", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A desiccated humanoid leg with pale, withered flesh and elongated toenails, preserved in a mummified state.", + "display_name": "Ancient Vampire Leg", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A yellowed, partial ribcage showing signs of extreme age, with curved bones arranged in the distinctive human thoracic pattern.", + "display_name": "Ancient Vampire Ribcage", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A blackened, elongated horse skull with curved horns and ethereal purple flames flickering within its empty eye sockets.", + "display_name": "Arvak's Skull", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored mechanical device with a cylindrical body, extending tubes, and a collection chamber for gathering volcanic ash.", + "display_name": "Ash Extractor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A coarse, gray-black crystalline powder collected from the remains of defeated Ash Spawn creatures.", + "display_name": "Ash Spawn Sample", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored metallic sphere covered in Dwemer geometric patterns with a central circular indentation that can expand outward.", + "display_name": "Attunement Sphere", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silver band adorned with intricate Nordic knotwork patterns and small blue gemstones arranged in a circular formation.", + "display_name": "Balwen's Ornamental Ring", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A golden crown adorned with twenty-four flawless gems of various colors arranged in a circular pattern around its circumference.", + "display_name": "Barenziah's Crown", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large wooden barrel with black metal bands and the Black-Briar logo branded into its oak surface.", + "display_name": "Black-Briar Mead Keg", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small cubic device made of dark Dwemer metal with geometric patterns and an empty central receptacle.", + "display_name": "Blank Lexicon", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall goblet carved from dark red stone with ornate metal bands around its base and rim.", + "display_name": "Bloodstone Chalice", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall, ornate goblet carved from deep red stone with black veins and adorned with silver filigree around its base.", + "display_name": "Bloodstone Chalice", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A cracked crystalline vessel in the shape of a multi-pointed star, with dull white fragments and darkened edges.", + "display_name": "Broken Azura's Star", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A stone bust depicting a masked face with a distinctive hood, carved in the likeness of the legendary thief.", + "display_name": "Bust of the Gray Fox", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large paper scroll containing charcoal impressions of Dwemer writing and symbols copied from an ancient stone surface.", + "display_name": "Calcelmo's Stone Rubbing", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pale, peeling strip of tree bark covered in faint, spiraling runes that glow with a soft bluish light.", + "display_name": "Canticle Bark", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small, metallic cube covered in geometric Dwemer patterns and markings that emits a faint bluish glow.", + "display_name": "Control Cube", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small, ornate glass vessel with visible cracks running through its milky-white surface and a delicate, flared neck.", + "display_name": "Cracked White Phial", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A circular shield emblem featuring a raised silver crescent moon design against a dark metal background.", + "display_name": "Crescent Moon Crest", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A delicate circlet studded with twenty-four flawless gems arranged in a symmetrical pattern around its golden band.", + "display_name": "Crown of Barenziah", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small, concave mold made of tarnished silver with intricate Nordic patterns etched into its surface.", + "display_name": "Curious Silver Mold", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered parchment map marked with red ink showing the location of Deathbrand's treasure along Solstheim's coastal regions.", + "display_name": "Deathbrand Treasure Map", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Iridescent, overlapping scales from a dragon's chest region, each roughly palm-sized with a distinctive curved and ridged surface.", + "display_name": "Dragon Heartscales", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered stone tablet carved with an ancient map of dragon burial sites and inscribed with angular dragon-script runes.", + "display_name": "Dragonstone", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved woodworking tool with a short handle on each end and a sharp steel blade between them.", + "display_name": "Draw Knife", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered parchment scroll containing detailed technical drawings and measurements for constructing a bronze-colored, mechanical crossbow of Dwemer design.", + "display_name": "Dwarven Crossbow Schematic", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered bronze scroll covered in intricate Dwemer diagrams showing the assembly of a mechanical projectile with flame components.", + "display_name": "Dwemer Exploding Fire Bolt Schematic", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered bronze scroll containing intricate mechanical diagrams etched with frost-colored metallic ink and Dwemer script along the margins.", + "display_name": "Dwemer Ice Bolt Schematic", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered bronze scroll containing detailed mechanical diagrams of an arrow-like projectile with intricate electrical components and Dwemer script markings.", + "display_name": "Dwemer Exploding Shock Bolt Schematic", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored metal cube with intricate geometric patterns and rotating segments covered in ancient Dwemer engravings.", + "display_name": "Dwemer Puzzle Cube", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered parchment map marked with shipping routes and port locations along the northern coasts of Skyrim and Solstheim.", + "display_name": "East Empire Shipping Map", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An ornate golden scroll case adorned with celestial markings and intricate carvings, containing ancient parchment covered in mysterious symbols.", + "display_name": "Elder Scroll", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An ornate golden scroll case with intricate metal filigree and ancient parchment bearing luminescent dragon-like script and symbols.", + "display_name": "Elder Scroll (Dragon)", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An ancient scroll encased in ornate golden metal fixtures with intricate markings and glowing red symbols along its weathered parchment.", + "display_name": "Elder Scroll (Blood)", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An ancient gilded scroll case adorned with celestial markings and intricate metalwork, containing yellowed parchment covered in mysterious symbols.", + "display_name": "Elder Scroll (Sun)", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A glowing pink-amber liquid collected in a small glass vial from the sacred Eldergleam tree.", + "display_name": "Eldergleam Sap", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small, delicate tree sapling with pink-white blossoms and silvery bark growing from a modest earthen base.", + "display_name": "Eldergleam Sapling", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered parchment scroll containing detailed technical drawings and measurements for modifying a standard crossbow's components and frame.", + "display_name": "Enhanced Crossbow Schematic", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered engineering diagram sketched on aged parchment, showing detailed technical drawings of a Dwarven crossbow with additional mechanical components.", + "display_name": "Enhanced Dwarven Crossbow Schematic", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A handheld brass and glass device with a narrow nozzle, curved handle, and several small crystal chambers.", + "display_name": "Essence Extractor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A fine, pale-white powder made from crushed bones, stored in a small cloth pouch or paper wrapping.", + "display_name": "Finely Ground Bone Meal", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden crate marked with the Firebrand Wine logo, containing multiple dark glass wine bottles nestled in straw.", + "display_name": "Firebrand Wine Case", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A clear, faceted crystal with multiple geometric surfaces that tapers to a point at one end.", + "display_name": "Focusing Crystal", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged piece of ancient metal with Nordic engravings, appearing to be a broken section of a larger weapon.", + "display_name": "Fragment of Wuuthrad", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged piece of ancient metal with Nordic engravings, appearing to be a broken section of a larger weapon.", + "display_name": "Fragment of Wuuthrad", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged piece of ancient metal with Nordic carvings etched into its surface, appearing to be part of a larger weapon.", + "display_name": "Fragment of Wuuthrad", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged piece of ancient metal bearing Nordic engravings, clearly broken from a larger weapon or artifact.", + "display_name": "Fragment of Wuuthrad", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged piece of ancient metal with Nordic engravings, appearing to be a broken section of a larger ceremonial axe blade.", + "display_name": "Fragment of Wuuthrad", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged piece of ancient metal bearing Nordic engravings, clearly broken from a larger weapon or artifact.", + "display_name": "Fragment of Wuuthrad", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged piece of ancient metal with Nordic engravings, appearing to be a broken section of a larger ceremonial weapon.", + "display_name": "Fragment of Wuuthrad", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged piece of ancient metal with Nordic engravings, clearly broken from a larger weapon or artifact.", + "display_name": "Fragment of Wuuthrad", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged piece of ancient metal bearing Nordic engravings, clearly broken from a larger weapon or artifact.", + "display_name": "Fragment of Wuuthrad", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Ancient metal fragments with Nordic engravings and decorative patterns, broken pieces of what appears to be an axe head.", + "display_name": "Fragments of Wuuthrad", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A circular silver shield emblazoned with a raised full moon design and decorated with intricate lunar phase patterns along its rim.", + "display_name": "Full Moon Crest", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A severed human head with pale gray skin, matted dark hair, and distinctive ritual markings painted across the withered face.", + "display_name": "Glenmoril Witch Head", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small decorative ship crafted from polished gold, featuring detailed sails, rigging, and a curved hull mounted on a wooden base.", + "display_name": "Golden Ship Model", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished urn made of solid gold with a rounded body, flared rim, and ornate geometric engravings along its surface.", + "display_name": "Golden Urn", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered human skeleton wearing tattered remains of common clothing, found in a partially decayed state underwater.", + "display_name": "Habd's Remains", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crescent-shaped metal emblem with a polished silver finish and ornate engravings along its curved edge.", + "display_name": "Half Moon Crest", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark, crystalline stone with glowing red veins pulsing throughout its rough, ashen surface.", + "display_name": "Heart Stone", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark metal hilt fragment featuring jagged Daedric designs and four curved prongs where the blade would attach.", + "display_name": "Hilt of Mehrunes' Razor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rounded glass decanter with a narrow neck, flared base, and decorative etching bearing the Honningbrew meadery emblem.", + "display_name": "Honningbrew Decanter", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved ceremonial horn made of weathered gray bone with intricate Nordic carvings etched along its surface.", + "display_name": "Horn of Jurgen Windcaller", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A stack of weathered parchment scrolls bound with red ribbon and stamped with the Imperial dragon seal.", + "display_name": "Imperial Documents", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall, slender ceremonial vessel made of polished brass with a curved handle and narrow pouring spout.", + "display_name": "Initiate's Ewer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silver candlestick adorned with small colored gemstones around its base and stem, featuring a shallow cup at the top.", + "display_name": "Jeweled Candlestick", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silver drinking vessel adorned with small gemstones around its rim and base, featuring a curved handle and wide mouth.", + "display_name": "Jeweled Flagon", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silver drinking vessel with colored gemstones embedded around its rim and stem, featuring ornate metalwork patterns throughout.", + "display_name": "Jeweled Goblet", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall silver pitcher adorned with inlaid rubies and sapphires arranged in circular patterns around its curved body.", + "display_name": "Jeweled Pitcher", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small, hexagonal crystal gem with a crimson core that emits a faint reddish glow through its translucent surface.", + "display_name": "Kagrumez Resonance Gem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A massive, frost-encrusted skull with elongated tusks and thick horns, bearing the unmistakable features of a frost giant.", + "display_name": "Karstaag's Skull", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silver band adorned with small emeralds arranged in a delicate floral pattern around its circumference.", + "display_name": "Katarina's Ornamental Ring", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered leather satchel filled with basic provisions and supplies intended for delivery to High Hrothgar.", + "display_name": "Klimmek's Supplies", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large, flawless gemstone with milky white coloring and smooth facets, carved to resemble an anatomical eye.", + "display_name": "Left Eye of the Falmer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A cube-shaped bronze device covered in intricate Dwemer markings and geometric patterns, with a glowing blue crystalline center.", + "display_name": "Lexicon", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A fine, off-white powder made from ground mammoth tusks, stored in a small cloth pouch.", + "display_name": "Mammoth Tusk Powder", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered parchment map marked with multiple dragon skull symbols indicating burial sites across Skyrim's landscape.", + "display_name": "Map of Dragon Burials", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silver necklace with a heart-shaped pendant adorned with flowing curved lines and a pink gemstone in its center.", + "display_name": "Mark of Dibella", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved obsidian dagger with jagged red markings along its black blade and a twisted ebony handle adorned with spikes.", + "display_name": "Mehrunes' Razor Blade", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark crimson gemstone with sharp, angular facets that emits a faint reddish glow from its crystalline core.", + "display_name": "Mehrunes' Razor Gem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged obsidian handle fragment with angular red crystalline growths and dark metal bindings wrapped around its grip.", + "display_name": "Mehrunes' Razor Hilt", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark leather scabbard adorned with crimson daedric symbols and angular metal fittings designed to house Mehrunes' Razor dagger.", + "display_name": "Mehrunes' Razor Scabbard", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered parchment scroll marked with detailed drawings and notes outlining the layout of Irkngthand ruins.", + "display_name": "Mercer's Plans", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large, faceted crystal orb that glows with white light and features geometric patterns across its translucent surface.", + "display_name": "Meridia's Beacon", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A miniature wooden vessel with detailed sails, rigging, and a carved hull displayed on a rectangular base stand.", + "display_name": "Model Ship", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small glass bottle containing a cloudy white liquid with faint blue swirls suspended throughout the mixture.", + "display_name": "Nurelion's Mixture", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small bronze token marked with mystical symbols, worn smooth around its edges from years of handling.", + "display_name": "Olava's Token", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A round ceramic container with a narrow neck and clouded, non-transparent walls that completely obscure its contents.", + "display_name": "Opaque Vessel", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A solid clay container with an elongated neck, rounded body, and dark, non-transparent surface that conceals its contents.", + "display_name": "Opaque Vessel", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark, non-transparent container made of solid material with a rounded body and narrow neck for holding liquids.", + "display_name": "Opaque Vessel", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished animal horn adorned with intricate metalwork and decorative bands featuring Nordic knotwork patterns along its curved surface.", + "display_name": "Ornate Drinking Horn", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A yellowed human hip bone marked with dark stains and scratches, bearing an engraved inscription identifying it as Pelagius'.", + "display_name": "Pelagius' Hip Bone", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small green glass vial containing a cloudy liquid used to harm vermin and other small creatures.", + "display_name": "Pest Poison", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A silver band adorned with delicate floral engravings and a small polished moonstone set in its center.", + "display_name": "Pithi's Ornamental Ring", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark crimson gem carved with angular Daedric symbols, designed to fit the base of a dagger's handle.", + "display_name": "Pommel Stone of Mehrunes' Razor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered human skull with dark stains and ornate silver filigree decorating its surface and eye sockets.", + "display_name": "Potema's Skull", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Crystalline violet-black granules that emit a subtle purple glow and appear to shimmer with an otherworldly translucence.", + "display_name": "Purified Void Salts", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small decorative statue depicting a large bee with ornate wing patterns and a rounded, golden-striped body.", + "display_name": "Queen Bee Statue", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long white feather quill with intricate silver runes etched along its shaft and a finely-sharpened writing tip.", + "display_name": "Quill of Gemination", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged shard of dark crimson crystal that pulses with a faint internal glow.", + "display_name": "Reaper Gem Fragment", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged shard of translucent crimson crystal that pulses with a faint inner light and has rough, fractured edges.", + "display_name": "Reaper Gem Fragment", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged shard of translucent red crystal that pulses with a faint inner glow and has dark veins running through it.", + "display_name": "Reaper Gem Fragment", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small cubic device made of Dwemer metal with glowing blue runes etched across its geometric surfaces.", + "display_name": "Runed Lexicon", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered iron key with a rounded skull-shaped bow and jagged teeth along its shaft.", + "display_name": "Saerek's Skull Key", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small leather pouch containing crystalline white granules that shimmer faintly with a pearlescent, moon-like luster.", + "display_name": "Satchel of Moon Sugar", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark leather scabbard adorned with jagged crimson patterns and small ebony spikes along its curved length.", + "display_name": "Scabbard of Mehrunes' Razor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A rolled parchment bound tightly with a crimson ribbon and marked with an ornate wax seal.", + "display_name": "Sealed Scroll", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Sharp metallic fragments of a broken dagger, etched with intricate Daedric runes and emitting a faint crimson glow.", + "display_name": "Shards of Mehrunes' Razor", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A smooth, spherical black stone that pulses with swirling red-orange energy and floats slightly above any surface.", + "display_name": "Sigil Stone", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A worn leather journal bearing the silver hand emblem, its pages filled with tactical diagrams and battlefield sketches.", + "display_name": "Silver Hand Stratagem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered, grayish-brown werewolf hide with patches of coarse fur still clinging to the tanned leather surface.", + "display_name": "Sinding's Skin", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A gnarled, fibrous root segment with a dark brown surface that glistens with absorbed moisture.", + "display_name": "Soaked Taproot", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crystalline gem emitting a swirling purple glow from within its translucent, angular facets.", + "display_name": "Soul Essence Gem (Full)", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "Jagged crystalline fragments with a dull purple hue, scattered from what was once a complete soul gem.", + "display_name": "Soul Gem Shards", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small stone statuette depicting a nude female figure with flowing hair and upraised arms in a graceful pose.", + "display_name": "Statue of Dibella", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small stone statuette depicting a nude female figure with upraised arms and flowing, waist-length hair.", + "display_name": "Statue of Dibella", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small stone statuette depicting a nude female figure with flowing hair and upraised arms in a graceful pose.", + "display_name": "Statue of Dibella", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered parchment map marked with dark ink showing locations of ice-like Stalhrim deposits across Solstheim's snowy terrain.", + "display_name": "Stalhrim Source Map", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A collection of weathered parchment scrolls bearing the blue Stormcloak bear insignia and written orders in Nordic script.", + "display_name": "StormCloak Documents", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A well-worn leather satchel with brass buckles and multiple pockets, marked with the name \"Sylgja\" in faded Nordic script.", + "display_name": "Sylgja's Satchel", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A well-worn glass alembic with brass fittings and a curved spout, bearing the College of Winterhold's arcane seal.", + "display_name": "Tolfdir's Alembic", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A thick, curved neckband of ancient Nordic bronze featuring intricate spiral patterns and open ends that taper to decorative finials.", + "display_name": "Torc of Labyrinthian", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark iron key with a skull-shaped bow and intricate notches along its weathered shaft.", + "display_name": "Torsten's Skull Key", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large curved horn made from mammoth tusk, decorated with steel bands and Nordic knotwork patterns.", + "display_name": "Torygg's War Horn", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple silver band adorned with small engraved geometric patterns and a central blue gemstone setting.", + "display_name": "Treoy's Ornamental Ring", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small mound of pure white snow that maintains its crystalline form and refuses to liquefy despite ambient temperatures.", + "display_name": "Unmelting Snow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A palm-sized, multifaceted crystal that glows with a pink-red hue and has dark crimson inclusions throughout its translucent surface.", + "display_name": "Unusual Gem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A well-worn leather satchel with brass buckles and multiple compartments, marked with the name \"Verner\" along its weathered strap.", + "display_name": "Verner's Satchel", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark crystalline gem with irregular, twisted facets and a clouded interior that emits a faint purple glow.", + "display_name": "Warped Soul Gem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A distorted crystalline gem with an irregular, twisted shape and a clouded interior that emits a faint purple glow.", + "display_name": "Warped Soul Gem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A misshapen crystalline gem with an irregular, twisted form and dark purple-black coloration that seems to shift in the light.", + "display_name": "Warped Soul Gem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crystalline gem with a distorted, asymmetrical shape and clouded black interior that seems to twist in irregular patterns.", + "display_name": "Warped Soul Gem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crystalline gem with a distorted, asymmetrical shape and dark purple-black coloring that seems to shift and ripple.", + "display_name": "Warped Soul Gem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A misshapen crystalline gem with distorted facets and a dark purple hue, marked by irregular cracks throughout its surface.", + "display_name": "Warped Soul Gem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple gold band worn on the finger, crafted from polished precious metal with a smooth, unadorned surface.", + "display_name": "Wedding Ring", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A carved stone pillar depicting a snarling wolf's head with primitive markings etched along its weathered surface.", + "display_name": "Werewolf Totem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small crystalline orb mounted on a circular bronze base with carved Nordic patterns along its rim.", + "display_name": "Weystone Focus", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A simple wooden spoon with a long handle and shallow bowl, marked by several small scorch marks along its surface.", + "display_name": "Wylandriah's Spoon", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small crystalline gem with translucent facets and a clouded interior that glows faintly with a purple hue.", + "display_name": "Petty Soul Gem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A small crystalline gem with a faint purple glow emanating from its translucent, faceted surface.", + "display_name": "Petty Soul Gem (Filled)", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A palm-sized crystalline gem with translucent purple facets that emits a faint ethereal glow from within.", + "display_name": "Lesser Soul Gem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A palm-sized crystalline gem glowing with a faint purple light, its translucent faceted surface containing swirling mists within.", + "display_name": "Lesser Soul Gem (Filled)", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A palm-sized crystalline gem with translucent white surfaces that taper to angular points at both ends.", + "display_name": "Common Soul Gem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A palm-sized crystalline gem with a cloudy white glow pulsing steadily within its translucent, faceted surfaces.", + "display_name": "Common Soul Gem (Filled)", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crystalline gem roughly the size of an egg, with translucent purple facets and an angular, hexagonal structure.", + "display_name": "Greater Soul Gem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crystalline purple gem about the size of a chicken egg, glowing with swirling white energy trapped within its faceted surface.", + "display_name": "Greater Soul Gem (Filled)", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large crystalline gem with sharp faceted surfaces that glows with a faint purple-white luminescence from within.", + "display_name": "Grand Soul Gem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crystalline gem roughly the size of a fist, glowing with swirling purple energy trapped within its translucent facets.", + "display_name": "Grand Soul Gem (Filled)", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large crystalline soul gem shaped like a multi-pointed star with glowing white-blue facets and silver metallic edges.", + "display_name": "Azura's Star", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark crystalline gem with jagged facets that appears completely opaque and absorbs nearby light into its obsidian-like surface.", + "display_name": "Black Soul Gem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark crystalline gem glowing with a deep purple inner light, its jagged surface reflecting an imprisoned soul within.", + "display_name": "Black Soul Gem (Filled)", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A ripe red tomato that pulses with a faint purple glow and appears to shimmer with ethereal energy.", + "display_name": "Soul Tomato (Filled)", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark crystalline gem in the shape of a many-pointed star, glowing with a deep purple light from within.", + "display_name": "The Black Star", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crystalline gem with a clouded purple interior, wrapped partially in weathered leather straps and metallic bindings.", + "display_name": "Treated Soul Gem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crystalline gem with a deep purple hue, roughly the size of a plum, marked by faint arcane runes.", + "display_name": "Wylandriah's Soul Gem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crystalline gem with an irregular, twisted shape and a clouded interior that emits a faint purplish glow.", + "display_name": "Warped Soul Gem", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff topped with a glowing crystalline orb held in place by curved metal prongs.", + "display_name": "Staff of Magelight", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff carved with spiral patterns, topped by a green crystalline head that pulses with a faint glow.", + "display_name": "Staff of Paralysis", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark wooden staff carved with spiraling purple runes that converge at a black crystal mounted in the head.", + "display_name": "Staff of Banishing", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark wooden staff topped with a jagged, crimson crystal surrounded by curved black metal prongs that resemble claws.", + "display_name": "Staff of Daedric Command", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff topped with a dark metal head featuring two curved prongs that spiral outward from its center.", + "display_name": "Staff of Expulsion", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff carved with spiraling animal motifs and topped by a crystalline orb nestled in curved prongs.", + "display_name": "Staff of the Familiar", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff topped with a red-orange crystalline headpiece that appears to contain swirling flames within its faceted surface.", + "display_name": "Staff of the Flame Atronach", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff topped with a glowing orange crystal nestled within curved, flame-shaped metal prongs.", + "display_name": "Staff of the Flame Atronach", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall wooden staff topped with a crystalline blue orb encased in jagged, frost-like protrusions that radiate outward.", + "display_name": "Staff of the Frost Atronach", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff topped with a crystalline blue headpiece that resembles jagged ice formations arranged in a circular pattern.", + "display_name": "Staff of the Frost Atronach", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff topped with a crystalline purple orb surrounded by jagged metal prongs that curve upward like lightning bolts.", + "display_name": "Staff of the Storm Atronach", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff topped with a blackened skull surrounded by twisted metal bands and glowing purple crystals.", + "display_name": "Staff of Zombies", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A gnarled wooden staff topped with a cluster of purple crystals and wrapped with tattered dark leather bands along its length.", + "display_name": "Staff of Reanimation", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff topped with a purple crystalline orb held in place by curved metal prongs.", + "display_name": "Staff of Revenants", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark wooden staff topped with a skull-shaped head wrapped in tattered black cloth and adorned with small bone fragments.", + "display_name": "Staff of Dread Zombies", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff with dark purple crystal formations at its crown and black metal bindings along its length.", + "display_name": "Staff of Soul Trapping", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff topped with a carved dragon head that glows with an orange-red light at its crown.", + "display_name": "Staff of Flames", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff with reddish-orange crystals embedded along its length and a curved, flame-like head at its tip.", + "display_name": "Staff of Firebolts", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff carved with spiral grooves and topped by a red crystalline focus held in metal prongs.", + "display_name": "Staff of Firebolts", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff topped with a red crystalline orb held in place by curved metal prongs at its head.", + "display_name": "Staff of Fireballs", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff topped with a red crystalline orb held in place by curved metal prongs at its head.", + "display_name": "Staff of Fireballs", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff topped with a red crystalline orb held in place by curved metal prongs.", + "display_name": "Staff of Incineration", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff topped with a stylized bronze flame design and wrapped with red leather strips along its length.", + "display_name": "Staff of the Flame Wall", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff carved with spiral patterns and topped by a blue crystalline head emitting a faint, cold mist.", + "display_name": "Staff of Frostbite", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff topped with a crystalline head featuring jagged, translucent spikes radiating outward from its crown.", + "display_name": "Staff of Ice Spikes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff topped with a cluster of translucent, crystalline spikes radiating outward from its frost-covered head.", + "display_name": "Staff of Ice Spikes", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff topped with a crystalline head that appears to contain swirling patterns of frost and mist.", + "display_name": "Staff of Ice Storms", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff topped with a crystalline head that glows with a pale blue light and has frost-like patterns throughout.", + "display_name": "Staff of Ice Storms", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff carved with frost-like patterns, topped by a crystalline head shaped into sharp, spear-like points.", + "display_name": "Staff of Icy Spear", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff topped with a crystalline head featuring jagged ice-like protrusions and pale blue veins throughout.", + "display_name": "Staff of the Frost Wall", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff with jagged crystal formations at its head, wrapped in strips of dark leather along its length.", + "display_name": "Staff of Sparks", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff with twisted blue crystals embedded along its length, tapering to a forked, lightning-shaped head.", + "display_name": "Staff of Lightning Bolts", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff with twisted grooves along its length and a crystalline blue orb mounted at its crown.", + "display_name": "Staff of Lightning Bolts", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall wooden staff carved with spiral lightning patterns and topped by a glowing blue crystal sphere.", + "display_name": "Staff of Chain Lightning", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff topped with a branching metal headpiece that resembles forked lightning bolts emerging from a central crystal.", + "display_name": "Staff of Chain Lightning", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff with dark purple crystal clusters embedded along its length and crackling blue energy swirling around its tip.", + "display_name": "Staff of Thunderbolts", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall wooden staff carved with spiraling storm cloud patterns and tipped with a crystalline head that appears windswept.", + "display_name": "Staff of the Storm Wall", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark wooden staff carved with spiraling runes, topped by a gnarled head containing a purple crystal orb.", + "display_name": "Staff of Fear", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark wooden staff with a gnarled head featuring three curved prongs that spiral around a glowing purple crystal.", + "display_name": "Staff of Vanquishment", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff with a curved head adorned by red crystals and wrapped in dark leather strips along its length.", + "display_name": "Staff of Fury", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A gnarled wooden staff topped with a glowing pink crystal sphere held in place by twisted metal prongs.", + "display_name": "Staff of Frenzy", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff with a curved crystal orb nestled within twisting branches at its crown.", + "display_name": "Staff of Calm", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall wooden staff with spiral patterns carved along its length and a glowing pink crystal mounted at the top.", + "display_name": "Grand Staff of Charming", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff carved with spiraling Nordic patterns, topped with a stylized bronze wolf's head at its crown.", + "display_name": "Staff of Courage", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff carved with intricate spiraling patterns and topped with a crystalline orb that emits a faint glow.", + "display_name": "Staff of Inspiration", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall wooden staff with golden bands wrapping its length and a spherical crystal head emitting a soft yellow glow.", + "display_name": "Staff of the Healing Hand", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff with a gnarled head wrapped in white linen strips and adorned with small blue crystals.", + "display_name": "Staff of Mending", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff carved with spiral patterns and topped by a polished crystal sphere emitting a faint bluish glow.", + "display_name": "Minor Staff of Turning", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff carved with spiral patterns and topped by a polished skull encircled by metal bands.", + "display_name": "Staff of Turning", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall wooden staff with spiral patterns carved along its length and a curved, ornate head featuring intertwined branches.", + "display_name": "Grand Staff of Turning", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff carved with spiral patterns and topped by a dark crystal sphere held in curved prongs.", + "display_name": "Staff of Repulsion", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall wooden staff topped with an ornate silver headpiece containing a glowing blue crystal sphere.", + "display_name": "Grand Staff of Repulsion", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A crystalline staff featuring a translucent blue head that emits a faint glow, mounted on a pale metallic shaft.", + "display_name": "Aetherial Staff", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff topped with a stylized dragon's head carved in dark metal, featuring curved horns and open jaws.", + "display_name": "Dragon Priest Staff", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A gnarled wooden staff topped with a glowing green eye-shaped crystal nestled within twisted branches.", + "display_name": "Eye of Melka", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished wooden staff with spiral etchings along its length and a purple crystal mounted at the crown.", + "display_name": "Gadnor's Staff of Charming", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A gnarled wooden staff topped with a cluster of glowing blue crystals bound by twisted metal bands.", + "display_name": "Halldir's Staff", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark wooden staff topped with a stylized dragon skull adorned with curved horns and small green gemstones.", + "display_name": "Hevnoraak's Staff", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A twisted black staff adorned with writhing tentacles and topped with four curved prongs surrounding a glowing green orb.", + "display_name": "Miraak's Staff", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black and crimson Daedric staff topped with an ornate, thorned rose head that blooms from its twisted metal shaft.", + "display_name": "Sanguine Rose", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black wooden staff topped with a large, gnarled skull adorned with curved spikes and glowing purple crystals.", + "display_name": "Skull of Corruption", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A slender bronze staff adorned with spider-web patterns and topped with a glowing amber crystal sphere.", + "display_name": "Spider Control Rod", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A slender metal rod with glowing blue runes etched along its length and a curved handle at one end.", + "display_name": "Spider Control Rod", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall wooden staff topped with an ornate metal crown housing a glowing purple crystal at its center.", + "display_name": "Staff of Arcane Authority", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A gnarled wooden staff topped with a cluster of thorny branches wrapped around a glowing green crystal sphere.", + "display_name": "Staff of Hag's Wrath", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff with Nordic carvings along its length and a dark metal head featuring curved prongs.", + "display_name": "Staff of Jyrik Gauldurson", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall ornate staff with a glowing blue orb suspended between curved golden prongs at its head.", + "display_name": "Staff of Magnus", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall wooden staff with a curved head bearing three red crystalline formations arranged in a triangular pattern.", + "display_name": "Staff of Ruunvald", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff with a gnarled head adorned by three curved prongs that spiral around a central glowing orb.", + "display_name": "Staff of Tandil", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A twisted wooden staff topped with three screaming faces arranged vertically, featuring dark metal bands and purple crystal accents.", + "display_name": "Wabbajack", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff with a gnarled head wrapped in blue cloth strips and adorned with small crystalline fragments.", + "display_name": "Unenchanted Alteration Staff", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall wooden staff with a purple crystal mounted at its crown and dark leather wrappings along the grip.", + "display_name": "Unenchanted Conjuration Staff", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff with a curved top bearing a spherical crystal focus, adorned with leather wrappings along its length.", + "display_name": "Unenchanted Destruction Staff", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long wooden staff with a curved, spiral-carved shaft and a crystalline purple orb mounted at its crown.", + "display_name": "Unenchanted Illusion Staff", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden staff with a curved head bearing a circular design, adorned with leather wrappings along its smooth shaft.", + "display_name": "Unenchanted Restoration Staff", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A straight single-handed sword with a plain iron blade, simple crossguard, and dark leather-wrapped grip.", + "display_name": "Iron Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A straight double-edged sword with a steel blade, brown leather-wrapped grip, and a simple cross-guard of blackened metal.", + "display_name": "Steel Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark green-tinted blade with angular geometric patterns, curved serrations along its edge, and a heavy bronze-colored crossguard.", + "display_name": "Orcish Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored blade with geometric patterns etched along its curved length and an angular crossguard of Dwemer metal.", + "display_name": "Dwarven Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An ancient Nordic sword with a slender steel blade, curved quillons, and traditional Nordic knotwork patterns etched along its surface.", + "display_name": "Nord Hero Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved golden-bronze sword with sweeping quillons, an elongated grip, and leaf-shaped blade featuring elegant flowing patterns.", + "display_name": "Elven Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A gleaming sword crafted entirely from gold, featuring a straight double-edged blade and a simple cross-guard with matching pommel.", + "display_name": "Golden Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved steel sword with distinctive Nordic knotwork engravings along its broad blade and a leather-wrapped handle with bronze fittings.", + "display_name": "Nordic Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black iron sword with a jagged, asymmetrical blade and a curved crossguard decorated with sharp angular patterns.", + "display_name": "Dark Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A translucent green-tinted blade with curved, organic shapes flows from a gilded hilt wrapped in pale leather strips.", + "display_name": "Glass Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black sword with curved, angular patterns along its blade and an ornate crossguard featuring sharp, wing-like protrusions.", + "display_name": "Ebony Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pale blue crystalline sword carved from enchanted ice, featuring jagged edges and Nordic-style engravings along its translucent blade.", + "display_name": "Stalhrim Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black-and-crimson sword with jagged edges, curved barbs along its blade, and an angular guard resembling demonic wings.", + "display_name": "Daedric Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved, single-edged sword crafted from dark ebony metal, featuring a distinctive crescent-shaped blade and wrapped handle.", + "display_name": "Ebony Scimitar", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pale ivory-colored sword with a curved blade crafted from dragon bones and adorned with angular, scale-like patterns.", + "display_name": "Dragonbone Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A translucent golden-orange blade crafted from crystalline amber extends from a bronze hilt wrapped in leather strips.", + "display_name": "Amber Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged sword forged from dark green crystalline metal with an irregular blade pattern and spiky, asymmetrical crossguard.", + "display_name": "Madness Sword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A single-bladed iron axe with a curved cutting edge, wedge-shaped head, and wooden handle wrapped in leather strips.", + "display_name": "Iron War Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy single-bladed axe with dark green-tinted metal, curved serrations along its edge, and distinctive Orcish geometric patterns throughout.", + "display_name": "Orcish War Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored battle axe with angular geometric patterns etched into its broad, crescent-shaped head and sturdy metal handle.", + "display_name": "Dwarven War Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered iron war axe with ancient Nordic engravings along its curved blade and a leather-bound wooden handle.", + "display_name": "Nord Hero War Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished steel war axe with distinctive swirling patterns in its metal head and a sturdy wooden handle wrapped in leather strips.", + "display_name": "Skyforge Steel War Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved golden-bronze axe head with sweeping, wing-like edges mounted on a slender handle wrapped in pale leather.", + "display_name": "Elven War Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A single-bladed war axe with a broad, curved head and ornate handle forged entirely from polished gold-colored metal.", + "display_name": "Golden War Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A hefty single-bladed axe with curved Nordic engravings along its steel head and a wooden handle wrapped in leather strips.", + "display_name": "Nordic War Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A Dwemer-crafted war axe with a bronze-colored curved blade and geometric patterns etched into its metallic handle.", + "display_name": "Irkngthand War Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy war axe with a curved ebony-black blade and jagged edges, mounted on a dark leather-wrapped wooden handle.", + "display_name": "Dark War Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved axe featuring a translucent green-tinted blade with sharp crystalline edges mounted on a gilded metal handle.", + "display_name": "Glass War Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A single-bladed war axe with a curved, jet-black ebony head and a sturdy dark handle wrapped in leather strips.", + "display_name": "Ebony War Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A single-bladed war axe forged from pale blue stalhrim ice-crystal, with a curved head and nordic-style engravings along its handle.", + "display_name": "Stalhrim War Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black-and-crimson war axe with an angular ebony head, jagged red accents, and a curved handle adorned with sharp protrusions.", + "display_name": "Daedric War Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A hefty single-bladed war axe with a pale, bone-white head and curved dragon vertebrae forming the handle.", + "display_name": "Dragonbone War Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A single-bladed war axe with a translucent golden-orange head and curved wooden handle wrapped in leather strips.", + "display_name": "Amber War Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved war axe with an iridescent green-black blade featuring jagged, crystalline patterns along its sharpened edge and twisted metal handle.", + "display_name": "Madness War Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy iron club featuring a flanged metal head with six protruding spikes mounted on a sturdy wooden handle.", + "display_name": "Iron Mace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A steel mace with a heavy spiked head mounted on a leather-wrapped metal shaft.", + "display_name": "Steel Mace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A dark green-hued metallic mace with angular geometric patterns, featuring a heavy spiked head and thick reinforced handle.", + "display_name": "Orcish Mace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored mace with angular geometric patterns along its heavy spherical head and straight metal handle.", + "display_name": "Dwarven Mace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered iron mace with Nordic carvings along its heavy head and a leather-wrapped wooden handle.", + "display_name": "Nord Hero Mace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A slender golden mace with curved flanges radiating from its head and a delicately tapered handle wrapped in leather.", + "display_name": "Elven Mace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy flanged mace crafted from polished gold metal with a studded head and ornate geometric patterns along its handle.", + "display_name": "Golden Mace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy mace with a spiked steel head featuring traditional Nordic knotwork patterns and a leather-wrapped wooden handle.", + "display_name": "Nordic Mace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black iron mace with a heavy spiked head and short handle wrapped in weathered leather strips.", + "display_name": "Dark Mace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A translucent green-tinted mace with sweeping curved flanges and an ornate crystalline head mounted on a slender handle.", + "display_name": "Glass Mace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black mace crafted from ebony metal, featuring a heavy spiked head atop a ridged handle with dark leather wrappings.", + "display_name": "Ebony Mace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A mace forged from pale blue-white Stalhrim crystal, with a heavy spiked head and a wrapped leather grip.", + "display_name": "Stalhrim Mace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black spiked mace with twisted red-glowing ridges, featuring a heavy angular head and jagged protrusions along its handle.", + "display_name": "Daedric Mace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy black mace crafted from ebony metal, featuring a spiked head with multiple flanges radiating from its central shaft.", + "display_name": "Ebony Mace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy mace fashioned from pale dragon bone, featuring a spiked spherical head and a long wrapped handle.", + "display_name": "Dragonbone Mace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy flanged mace with a translucent amber head mounted on a polished wooden handle wrapped in leather strips.", + "display_name": "Amber Mace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged bronze-colored mace with twisted spikes radiating outward from its heavy spherical head and a dark leather grip.", + "display_name": "Madness Mace", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A short iron blade with a simple crossguard, dark leather-wrapped grip, and pointed tip for thrusting.", + "display_name": "Iron Dagger", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A compact steel blade with a pointed tip, crossguard, and dark leather-wrapped grip designed for close-quarters use.", + "display_name": "Steel Dagger", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A short, curved dagger with a dark green-gray blade and angular guard featuring distinctive Orcish geometric patterns and serrations.", + "display_name": "Orcish Dagger", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A golden-bronze dagger with angular geometric patterns along its short blade and a squared-off metallic crossguard.", + "display_name": "Dwarven Dagger", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A compact curved dagger with distinctive blue-gray steel blade and an ornate Nordic-style crossguard beneath its leather-wrapped grip.", + "display_name": "Skyforge Steel Dagger", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A short, ancient Nordic dagger with a curved steel blade and distinctive swirling patterns etched into its weathered handle.", + "display_name": "Nord Hero Dagger", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved dagger with a slender golden-hued blade and sweeping quillon guards that angle toward its pointed tip.", + "display_name": "Elven Dagger", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A short dagger with a pointed blade and ornate hilt crafted entirely from polished yellow-gold metal.", + "display_name": "Golden Dagger", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved dagger with a distinctive pointed blade, decorated with ancient Nordic knotwork patterns and wrapped in leather strips.", + "display_name": "Nordic Dagger", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A short dagger with a black-tinted steel blade and an ebony handle wrapped in dark leather strips.", + "display_name": "Dark Dagger", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A translucent green-tinted dagger with curved, crystalline edges and an ornate golden hilt featuring elaborate elven metalwork.", + "display_name": "Glass Dagger", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jet-black dagger with curved edges, an angular crossguard, and a short blade made from polished ebony metal.", + "display_name": "Ebony Dagger", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A compact dagger crafted from pale blue-white Stalhrim crystal, with a curved blade and Nordic-style carved handle.", + "display_name": "Stalhrim Dagger", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A jagged black-and-red dagger with curved, demonic protrusions along its blade and an angular, crystalline-textured handle.", + "display_name": "Daedric Dagger", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pale, curved dagger crafted from dragon bones, featuring a serrated edge and distinctive ridged patterns along its short blade.", + "display_name": "Dragonbone Dagger", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A short blade made of translucent golden amber with a curved guard and dark leather-wrapped handle.", + "display_name": "Amber Dagger", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved dagger with a jagged, crystalline blade made of iridescent green-purple metal and a twisted dark handle.", + "display_name": "Madness Dagger", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long two-handed sword with a plain iron blade, simple crossguard, and leather-wrapped wooden grip.", + "display_name": "Iron Greatsword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long two-handed sword with a broad steel blade, crossguard, and leather-wrapped grip ending in a rounded pommel.", + "display_name": "Steel Greatsword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A hefty two-handed sword with curved dark-green metal blades and jagged edges characteristic of Orcish metalworking traditions.", + "display_name": "Orcish Greatsword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A broad two-handed sword with distinctive golden-bronze metal construction and geometric Dwemer designs etched along its angular blade.", + "display_name": "Dwarven Greatsword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long two-handed sword with ancient Nordic engravings along its broad blade and a weathered iron crossguard wrapped in leather strips.", + "display_name": "Nord Hero Greatsword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long, two-handed greatsword with distinctive curved Nordic patterns etched into its polished steel blade and a leather-bound crossguard.", + "display_name": "Skyforge Steel Greatsword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long two-handed sword with curved golden-bronze blades that sweep outward from an ornate handle adorned with flowing elven metalwork.", + "display_name": "Elven Greatsword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long two-handed sword with curved Nordic-style engravings along its broad blade and distinctive antler-like prongs on its crossguard.", + "display_name": "Nordic Greatsword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long two-handed sword with a black-tinted blade, angular crossguard, and an ebony grip wrapped in dark leather.", + "display_name": "Dark Greatsword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A two-handed greatsword crafted from bright yellow-gold metal, featuring a broad blade and ornate crossguard with curved quillons.", + "display_name": "Golden Greatsword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A translucent green two-handed sword with curved, crystalline blades and golden metalwork along its lengthy hilt.", + "display_name": "Glass Greatsword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black two-handed sword forged from ebony metal, featuring a broad blade with curved edges and an angular crossguard.", + "display_name": "Ebony Greatsword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A two-handed sword forged from pale blue-white Stalhrim ice, with crystalline patterns running throughout its broad blade and frost-encrusted grip.", + "display_name": "Stalhrim Greatsword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A massive black-and-red two-handed sword with jagged edges, curved spikes along its blade, and an angular demonic-styled crossguard.", + "display_name": "Daedric Greatsword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A massive two-handed sword crafted from pale dragon bones, featuring a serrated blade edge and intricate carved Nordic patterns.", + "display_name": "Dragonbone Greatsword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large two-handed sword with a translucent golden-orange blade and dark metallic hilt wrapped in leather strips.", + "display_name": "Amber Greatsword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A massive two-handed sword with an irregular crystalline blade of green-black metal and jagged, thorn-like protrusions along its edges.", + "display_name": "Madness Greatsword", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy two-handed axe with a wide crescent-shaped iron head and long wooden handle wrapped in leather strips.", + "display_name": "Iron Battleaxe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A hefty double-bladed axe with curved steel heads mounted on opposite sides of a long wooden shaft wrapped in leather strips.", + "display_name": "Steel Battleaxe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy double-headed axe with curved green-tinted blades and jagged protrusions along its dark metallic handle.", + "display_name": "Orcish Battleaxe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A double-headed bronze-colored axe with angular geometric patterns etched into its broad metal blades and sturdy bronze handle.", + "display_name": "Dwarven Battleaxe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered battle axe with a broad, curved steel head and ancient Nordic engravings along its sturdy wooden handle.", + "display_name": "Nord Hero Battle Axe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A double-headed battleaxe with curved steel blades, distinctive cloud-like patterns in the metal, and a long wooden handle wrapped in leather.", + "display_name": "Skyforge Steel Battleaxe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved golden-bronze battleaxe with twin crescent-shaped blades and an elongated haft wrapped in pale leather strips.", + "display_name": "Elven Battleaxe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large double-headed axe with curved steel blades, ancient Nordic engravings, and a long wooden handle wrapped in leather strips.", + "display_name": "Nordic Battleaxe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black double-headed battleaxe with curved blades and a long wooden shaft wrapped in dark leather strips.", + "display_name": "Dark Battleaxe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A double-headed battleaxe with gleaming gold-colored metal blades and a sturdy wooden shaft wrapped in leather strips.", + "display_name": "Golden Battleaxe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A translucent green-tinted battleaxe with curved blades of crystalline material and an ornate golden handle featuring flowing elven designs.", + "display_name": "Glass Battleaxe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A double-headed battleaxe crafted from dark ebony metal, featuring curved blades and intricate geometric patterns along its lengthy shaft.", + "display_name": "Ebony Battleaxe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A double-headed battleaxe crafted from pale blue-white Stalhrim ice, with Nordic-style engravings along its crystalline surfaces and wrapped handle.", + "display_name": "Stalhrim Battleaxe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A massive double-headed battleaxe with jagged black-metal blades and sharp crimson edges adorned with angular Daedric designs.", + "display_name": "Daedric Battleaxe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A massive double-headed battleaxe crafted from pale dragon bones, featuring curved blades and ancient Nordic carvings along its handle.", + "display_name": "Dragonbone Battleaxe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A double-bladed battleaxe with an irregular crystalline head in mottled green and bronze, mounted on a twisted dark metal shaft.", + "display_name": "Madness Battleaxe", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy iron hammer with a large rectangular striking head mounted on a long wooden shaft wrapped in leather strips.", + "display_name": "Iron Warhammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A weathered stone warhammer with Nordic carvings along its massive head and a leather-wrapped wooden shaft showing centuries of age.", + "display_name": "Ancient Nord Warhammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy two-handed hammer with a dark green-gray metallic head featuring angular geometric patterns and spikes mounted on a leather-bound shaft.", + "display_name": "Orcish Warhammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy two-handed warhammer with a polished steel head and distinctive sun emblems etched into its sturdy wooden handle.", + "display_name": "Dawnguard Warhammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy bronze-colored warhammer with an angular geometric head and thick metal shaft adorned with Dwemer architectural patterns.", + "display_name": "Dwarven Warhammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A hefty double-headed warhammer with ancient Nordic engravings along its steel heads and a leather-wrapped wooden handle.", + "display_name": "Nord Hero Warhammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long-handled stone hammer with Nordic carvings along its weathered shaft and a heavy, angular striking head.", + "display_name": "Honed Ancient Nord Warhammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A golden-hued warhammer with sweeping curved flanges and an elongated head featuring delicate, leaf-like engravings characteristic of elven metalwork.", + "display_name": "Elven Warhammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy ebony warhammer with a rectangular striking head and long black handle wrapped in dark leather strips.", + "display_name": "Dark Warhammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy warhammer with an angular steel head adorned with Nordic knotwork patterns and mounted on a leather-wrapped wooden shaft.", + "display_name": "Nordic Warhammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy warhammer with a polished gold-colored head mounted on a sturdy wooden shaft wrapped in leather strips.", + "display_name": "Golden Warhammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A long-handled warhammer featuring a translucent green crystalline head with curved spikes and pale gold metallic fittings.", + "display_name": "Glass Warhammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy two-handed warhammer with a dark, crystalline ebony head and long wooden shaft wrapped in leather strips.", + "display_name": "Ebony Warhammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A hefty warhammer crafted from pale blue-white Stalhrim ice, with a crystalline head and a leather-wrapped wooden handle.", + "display_name": "Stalhrim Warhammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A massive black-metal warhammer with jagged red-glowing edges and sharp angular spikes protruding from its double-headed striking surface.", + "display_name": "Daedric Warhammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A massive two-handed hammer crafted from pale dragon bones, featuring a heavy striking head and lengthy bone-wrapped handle.", + "display_name": "Dragonbone Warhammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy warhammer with a large striking head made of translucent golden amber mounted on a sturdy wooden shaft.", + "display_name": "Amber Warhammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A massive two-handed warhammer forged from dark crystalline metal with jagged, asymmetrical protrusions along its striking head.", + "display_name": "Madness Warhammer", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A tall wooden bow with curved limbs, a central grip wrapped in leather, and a taut bowstring spanning its length.", + "display_name": "Long Bow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved wooden bow with simple leather wrapping on the grip and taut bowstring stretched between its flexible limbs.", + "display_name": "Hunting Bow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A robust recurve bow crafted from dark green-tinted metal with angular geometric patterns and curved, spiked limb tips.", + "display_name": "Orcish Bow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "An ancient Nordic hunting bow with weathered gray wood, steel reinforcements, and distinctive curved limbs adorned with traditional Nordic knotwork patterns.", + "display_name": "Nord Hero Bow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A recurve bow crafted from polished gold-colored metal with ornate scrollwork etched along its curved limbs.", + "display_name": "Golden Bow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A golden-bronze recurve bow with geometric patterns etched into its metal limbs and a mechanically intricate riser section.", + "display_name": "Dwarven Bow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved golden bow with sweeping, organic lines and delicate leaf-like engravings along its polished metal limbs.", + "display_name": "Elven Bow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved hunting bow crafted from pale wood and steel, decorated with traditional Nordic knotwork patterns along its limbs.", + "display_name": "Nordic Bow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black recurve bow with a slender curved profile and taut bowstring made from darkened wood and sinew.", + "display_name": "Dark Bow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved bow crafted from translucent green-tinted glass and pale gold metals with sweeping, organic-looking designs throughout its frame.", + "display_name": "Glass Bow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A sleek black bow crafted from ebony metal, featuring curved limbs with sharp angular designs and silver-traced edges.", + "display_name": "Ebony Bow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A frost-encrusted bow crafted from pale blue Stalhrim crystal, with angular geometric patterns along its curved limbs.", + "display_name": "Stalhrim Bow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black and crimson recurve bow with jagged, wing-like limbs and sharp metallic protrusions along its twisted frame.", + "display_name": "Daedric Bow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A pale ivory bow crafted from curved dragon bones, featuring intricate carvings and wrapped leather grips at its center.", + "display_name": "Dragonbone Bow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved hunting bow carved from golden-hued amber with translucent limbs that catch and refract light.", + "display_name": "Amber Bow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A curved bow made of dark, twisted metal with jagged protrusions and an iridescent green-purple sheen along its limbs.", + "display_name": "Madness Bow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A wooden and steel ranged weapon with a horizontal bow mounted perpendicular to a grooved stock for firing bolts.", + "display_name": "Crossbow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A reinforced crossbow with steel plating along its limbs, additional gears, and a more sophisticated firing mechanism.", + "display_name": "Enhanced Crossbow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished steel crossbow with Imperial Legion markings, reinforced limbs, and an integrated crank mechanism for drawing the string.", + "display_name": "Enhanced Imperial Crossbow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A polished silver crossbow with ornate metalwork along its limbs and a reinforced wooden stock inlaid with steel bands.", + "display_name": "Enhanced Silver Crossbow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored mechanical bow with ornate Dwemer metalwork, featuring a horizontal stock and complex firing mechanism with visible gears.", + "display_name": "Dwarven Crossbow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A bronze-colored crossbow with ornate Dwemer engravings and additional mechanical components mounted along its reinforced frame and limbs.", + "display_name": "Enhanced Dwarven Crossbow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A heavy crossbow crafted from Nordic steel and dark wood, featuring intricate knotwork patterns and a reinforced metal limb assembly.", + "display_name": "Enhanced Nordic Crossbow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black crossbow crafted from ebony metal, featuring angular geometric patterns and curved limbs with silver-trimmed details along its stock.", + "display_name": "Ebony Crossbow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black crossbow crafted from ebony metal, featuring ornate angular designs and a reinforced steel firing mechanism.", + "display_name": "Enhanced Ebony Crossbow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A translucent green crossbow with crystalline limbs and silver fittings, featuring an integrated scope and reinforced firing mechanism.", + "display_name": "Enhanced Glass Crossbow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A black and crimson crossbow with sharp angular designs, ornate daedric engravings, and twin steel bolt guides along the upper limb.", + "display_name": "Enhanced Daedric Crossbow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + }, + { + "always_inject": false, + "condition_expr": "", + "content": "A large crossbow crafted from pale dragon bones, featuring intricate carved designs and reinforced metal limbs with an advanced loading mechanism.", + "display_name": "Enhanced Dragonbone Crossbow", + "emotion": "", + "importance": 0.5, + "location": "", + "tags": [], + "type": "KNOWLEDGE" + } + ], + "entry_count": 1151, + "exported_at": "2026-04-13T19:15:54Z", + "format_version": 1, + "name": "Oghma - Visual Descriptions", + "npc_groups": [], + "version": "1.0.0" + } +} \ No newline at end of file diff --git a/oghma-sknpack/README.md b/oghma-sknpack/README.md new file mode 100644 index 0000000..b84a33c --- /dev/null +++ b/oghma-sknpack/README.md @@ -0,0 +1,57 @@ +# sknpack — Oghma Knowledge Packs for SkyrimNet + +SkyrimNet Knowledge Packs (`.sknpack`) generated from CHIM's Oghma Infinium lore. +Drop-in importable via the SkyrimNet beta Web UI (Knowledge Packs → Import). + +## What's here + +20 packs, ~5,000 Tamrielic lore entries, ~3.2 MB total. + +| Pack family | Files | Scope | Entry `type` | +|---|---|---|---| +| Content | `Oghma_-_{Figures_Gods,Artifacts,Armor_Weapons,Items,Groups_Books,Creatures,Dynamic}.sknpack` | Everyone | KNOWLEDGE | +| Spells | `Oghma_-_Spells.sknpack` | Everyone | SKILL | +| Locations | `Oghma_-_Locations_-_{Whiterun,Rift,Solstheim,Reach,Eastmarch,Falkreath,Haafingar,Pale,Winterhold,Hjaalmarch,Other}.sknpack` | `location` field set to hold name | LOCATION | +| Visual | `Oghma_-_Visual_Descriptions.sknpack` | Everyone, for Omnisight perception | KNOWLEDGE | + +Each entry carries an `importance` score: `0.75` for the deeper lore variant (scholars), `0.40` for the common-knowledge variant (commoners), `0.50` for visual descriptions. Same topic often appears twice at different depths — SkyrimNet's ranking picks the right one for the NPC. + +## Pipeline + +``` +CHIM Oghma Infinium Google Sheet + │ oghma-ingest + ▼ +ChromaDB @ iris-dev.eachpath.local:35000 + (oghma_lore | oghma_basic | oghma_visual) + │ oghma-export-packs + ▼ +/home/dafit/nimmerverse/nimmersky/sknpack/*.sknpack + │ SkyrimNet UI → Import + ▼ +In-game NPC knowledge +``` + +## Regenerate + +```bash +cd /home/dafit/nimmerverse/nimmersky/oghma-proxy +python3 -m oghma_proxy.export_packs +``` + +Overwrites everything in this directory. Also available as `oghma-export-packs` once the package is installed (`pip install -e .`). + +Options: `--host`, `--port`, `--output-dir`, `--dry-run`. + +## Format + +SkyrimNet beta `format_version: 1`. See exporter source for the full envelope: +`oghma-proxy/src/oghma_proxy/export_packs.py`. + +## Phase 2 (not yet shipped) + +The `tags: []` and `condition_expr: ""` fields are intentionally empty — Phase 1 exports the raw knowledge with safe defaults. Phase 2 will use the Qwen3.5-27B teacher on theia to enrich each entry with tags (spell-school, armor-class, faction-affinity) and conditional expressions (quest-gated visibility). Phase 2 will bump pack `version` from `1.0.0` → `1.1.0`. + +--- + +**Version:** 1.0 | **Created:** 2026-04-13 | **Updated:** 2026-04-13