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
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
//! Roland - Competing baker from the next town
|
|
//!
|
|
//! Demonstrates:
|
|
//! - Rival/competitor character
|
|
//! - Same template (Baker) with different values
|
|
//! - Concept comparison usage with skill_tier
|
|
|
|
use schema::templates::Baker;
|
|
|
|
character Roland from Baker {
|
|
// Personal details
|
|
age: 42
|
|
|
|
// Baker-specific traits
|
|
specialty: "rye bread"
|
|
baking_skill: 0.75
|
|
customer_relations: 0.60
|
|
skill_tier: Journeyman
|
|
|
|
// General traits
|
|
energy: 0.80
|
|
mood: 0.65
|
|
|
|
// Work ethic
|
|
work_ethic: 0.80
|
|
occupation: "baker"
|
|
|
|
---backstory
|
|
Roland runs a bakery in the neighboring town. He learned baking from
|
|
his father and considers himself the rightful best baker in the region.
|
|
His rye bread is excellent, but he lacks Martha's warmth with customers
|
|
and Jane's artistic flair.
|
|
|
|
He sees Martha's bakery as his chief competition and often tries to
|
|
undercut her prices at the market. Despite the rivalry, there is a
|
|
grudging respect between them. Roland once admitted, after too much
|
|
ale at the harvest festival, that Martha's sourdough was better than
|
|
his own.
|
|
---
|
|
}
|