8.0 KiB
8.0 KiB
Date, Session_Name, Tags
| Date | Session_Name | Tags | ||
|---|---|---|---|---|
| 2025-10-08 | Session 10 - Wined, Dined and Influenced |
|
Session 10 - Wined, Dined and Influenced
Date:
= this.Date• Name:= this.Session_Name
📄 Session Summary (auto)
Over dinner at Deidre Gille's Starlight Ridge winery, the party ran a social Influence encounter that secured broad goodwill, unlocked a licensure lead from Iniana Asase, and gained extra sway with Amity Cornwallis after a spat with Ronan Elidari soured moods a bit.
name ✍️ Generate AI Summary
type command
action Templater: Insert Generate Session Summary
🧭 Where / When
-
Region / Location:
- Starlight Ridge, a Winery owned by Deidre Gille
-
In-game Date / Time:
-
Weather / Conditions:
👥 PCs Present / Absent
- Present:
- Kite
- Calen
- Faylen Valora
- Val
- Metternich
- Absent:
⭐ Highlights (feed the auto-summary)
Add one or more
Highlight::lines. The button will build a summary from these.
-
Highlight::
-
Highlight::
-
Highlight::
🎯 Quests & Progress
-
Active Objectives:
- Influence the Partygoers
-
Progress / Resolutions:
🗣️ NPCs Met / Factions
-
NPCs:
-
Factions Touched:
⚔️ Encounters
-
Social / Exploration:
- Influence Encounter at the Winery
- Deidre Gille calls for dinner, proffering everyone to sit where they like.
- Val and Calen sit down with Iniana Asase for dinner.
- Round 1
- Val joins in conversation to also try and perform Discovery on Iniana Asase
- Val inquires as to how she got started - and it was as simple as spending time in the Drenches to see the conditions. One of her house servants had lived in the Drenches - and she would go to the Drenches to explore, and as she grew older she witness the instability.
- Calen inquires as to how to better things in the city. Iniana Asase advises the we take a more official capacity
- Specifically Iniana Asase advises that we seek licensure so that we're operating in a more official capacity.
- They converse specifically about how to best provide aid to the downtrodden and her experience in dealing with the Thin Wisps with her Soup Kitchen being in the Drenches.
- Specifically Iniana Asase advises that we seek licensure so that we're operating in a more official capacity.
- Round 2
- Val brings up the conversation between Faylen Valora and Ronan Elidari.
- Calen and Val chat with Iniana Asase about meekness around confronting and speaking about how the situation could improve in Y'athry.
- Round 1
- Faylen Valora and Metternich sit with Ronan Elidari, Amity Cornwallis and Deidre Gille for dinner.
- Round 1
- Faylen Valora makes a speech thanking those who have dedicated so much time and energy to the care and well-being of the city.
- Reactions
- Deidre Gille offers a kind nod.
- Iniana Asase is slightly embarrased by the speech.
- Ronan Elidari thinks Faylen is making a spectacle.
- Laughlin says "Well Said!"
- Elthea Rinvale is comtemplative regarding it.
- Reactions
- Faylen Valora successfully gains us at least one influence with each notable at the party.
- Metternich chats with Deidre Gille
- Chats about the Vineyard, success of operations and a bit about Faylen Valora.
- Metternich also expresses an interest in learning about making wine.
- Despite his conversation with her, Metternich is unable to learn any additional information.
- Faylen Valora makes a speech thanking those who have dedicated so much time and energy to the care and well-being of the city.
- Round 2
- Faylen Valora talks with the group again and regales her experience of dealing with the Fey. Expresses the superiority of magics of Fey and Rhodesian Magics.
- Faylen Valora shares that the Alsatians have free share and exchange of knowledge. Shares the martial superiority of them in comparison to the E'in.
- Faylen Valora and Ronan Elidari bickering nets us a influence point with Amity Cornwallis
- Metternich and Amity Cornwallis sneak away after the argument is over and enjoy a quiet moment.
- They discuss the high houses being so focused on fending for themselves, and both Amity and Metternich express sentiment for "the new boss being the same as the old boss" and ruling powers viewing themselves as unassailable with their measure of power.
- Amity Cornwallis makes an argument that it's only right that those in power keep some measure for themselves.
- Metternich makes an argument that it needs to be seen that everyone survives the winter, so to speak.
- Amity counters with asking if chieftains of the trackless would've embettered themselves through the nature of their position.
- Amity Cornwallis says that all people act in their own self interest - even egalitarian systems will only last the lifetime of the person who established it.
- Round 1
- Kite sits with Elthea Rinvale for dinner.
- Round 1
- Kite asks her opinion or Faylen Valora's speech, but Elthea Rinvale doesn't say much beyond saying that Faylen Valora is well-spoken.
- They talk a bit about Ronan Elidari and Elthea Rinvale expresses some appreciation for his direct-ness.
- Kite inquires as to her presences -- and Elthea Rinvale is there for pleasure, but is in town for business.
- Y'ahtyr, serves as her homebase in the E'in, giving it's westerly location and occasional encroachments by the Trackless Territories.
- They talk a bit about Valentia and Kite's time in Castore - and why he left.
- Per Kite this is due to feeling "roots" set in.
- They additionally talk about Faylen Valora and the rest of the part trying to bring change to the city.
- Kite inquires as to alternative employments that will serve the city at large.
- The Consortium is always looking for mercenaries to help secure the border.
- Round 2
- Kite and Elthea Rinvale talk about Trackless vs. E'in Society.
- Round 1
- Influence Encounter at the Winery
-
Combat:
-
Outcome / Loot:
🧠 Intel Captured (auto)
const THIS = dv.current();
const sessName = THIS.file.name;
const sessDate = THIS.Date ?? dv.current().file.frontmatter?.Date ?? "";
const sessLC = sessName.toLowerCase();
const pages = dv.pages("#npc or #faction").where(p => p.Intel);
function matchesSessionField(sessionField) {
const list = Array.isArray(sessionField) ? sessionField : [sessionField];
for (const s of list) {
if (!s) continue;
if (typeof s === "object" && s.path) {
const base = s.path.split("/").pop().replace(/\.md$/i,"");
if (base.toLowerCase() === sessLC) return true;
} else {
const text = String(s);
if (text.includes(`[[${sessName}]]`)) return true;
if (text.toLowerCase() === sessLC) return true;
}
}
return false;
}
const rows = [];
for (const p of pages) {
for (const it of p.Intel) {
let ok = false;
if (it.session) ok = matchesSessionField(it.session);
if (!ok && sessDate && it.date) ok = String(it.date) === String(sessDate); // fallback
if (ok) {
rows.push({
from: p.file.link,
date: it.date ?? "",
type: it.type ?? "",
summary: String(it.summary ?? ""),
source: it.source ?? "",
rel: it.reliability ?? "",
cred: it.credibility ?? "",
tags: Array.isArray(it.tags) ? it.tags.join(", ") : (it.tags ?? "")
});
}
}
}
rows.sort((a,b)=> String(b.date).localeCompare(String(a.date)));
if (!rows.length) {
dv.paragraph("_No intel captured for this session yet._");
} else {
dv.table(
["From", "Date", "Type", "Summary", "Source", "Rel", "Cred", "Tags"],
rows.map(r => [r.from, r.date, r.type, r.summary, r.source, r.rel, r.cred, r.tags])
);
}
📦 Treasure & Rewards
-
Items:
-
Coin:
-
XP / Milestones:
🔜 Next Hooks / To-Dos
-
[