Added comprehensive v0.3.0 feature demonstration: Characters (5 total): - Martha & Jane (married lesbian couple, co-owners of bakery) - Emma (their daughter, apprentice baker) - Henry (loyal customer, retired teacher) - Roland (competing baker) New declarations: - 6 relationships with asymmetric perspectives (Marriage, ParentChild×2, BusinessPartnership, CustomerRelationship, Competition) - Locations with prose (MarthasBakery, MainStreet) - Institution (BakersGuild) - Life arcs (MarriageQuality, BusinessGrowth) Features demonstrated: - Concept comparison usage (skill_tier: Master/Journeyman) - Life arc applied to relationship - Asymmetric participant perspectives - Family coherence across files
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
//! Locations for the Baker family
|
|
//!
|
|
//! Demonstrates:
|
|
//! - Location declarations with fields
|
|
//! - Prose descriptions for narrative context
|
|
//! - Locations referenced by schedules and characters
|
|
|
|
location MarthasBakery {
|
|
capacity: 30
|
|
type: "shop"
|
|
open_hours: "04:00-14:00"
|
|
|
|
---description
|
|
A warm, stone-walled bakery on the corner of Main Street. The front
|
|
room has a long wooden counter built from reclaimed oak, with glass
|
|
display cases showing the day's offerings. Behind it, the kitchen
|
|
holds two large brick ovens, a prep area with marble counters, and
|
|
shelves lined with flour, sugar, and spices.
|
|
|
|
The smell of fresh bread seeps out through the door from before dawn,
|
|
drawing the earliest risers. A small chalkboard by the entrance lists
|
|
the day's specials in Jane's elegant handwriting.
|
|
---
|
|
}
|
|
|
|
location MainStreet {
|
|
type: "road"
|
|
foot_traffic: 0.8
|
|
|
|
---description
|
|
The main thoroughfare of the town, lined with shops and homes. The
|
|
bakery sits at the busiest corner, where the road from the market
|
|
square meets the lane leading to the school. On market days, stalls
|
|
extend down the street and the air fills with the sounds of haggling
|
|
and laughter.
|
|
---
|
|
}
|