Rewrote the baker-family example around a unified story: the annual Harvest Baking Competition is Saturday. Martha's sourdough starter Old Maggie is sluggish from a cold snap, Jane is secretly entering the FreeStyle category, Emma's science fair project is "The Chemistry of Fermentation", Henry is judging for the first time and worried about impartiality, and Roland is defending last year's title. The week's schedules (Mon guild meeting → Tue test bakes → Wed sourcing → Thu dough prep → Fri science fair → Sat competition → Sun recovery) are now fully populated with narrative-specific actions. Files split for composability: - behaviors/baker_behaviors.sb → 5 focused files by character/domain - schema/types.sb → 4 files (core, baking, world, social) - schedules/work_schedules.sb → 4 files (one per schedule) - relationships/baker_family_relationships.sb → family + bakery Strong typing: replaced all enumerable string fields with concepts (BakerSpecialty, Occupation, LocationType, InstitutionType, ParentingStyle, Intensity, BakeryDomain, BakingDiscipline, ManagementDomain, CompetitiveAdvantage). Remove new-syntax-demo.sb (superseded by baker-family example).
55 lines
1.8 KiB
Plaintext
55 lines
1.8 KiB
Plaintext
//! Jane - Pastry specialist and Martha's wife
|
|
//!
|
|
//! Demonstrates:
|
|
//! - Another character using the same Baker template
|
|
//! - Different field values showcasing template flexibility
|
|
//! - Resource inheritance working across multiple characters
|
|
|
|
use schema::templates::Baker;
|
|
|
|
character Jane from Baker {
|
|
// Personal details
|
|
age: 36
|
|
|
|
// Baker-specific traits
|
|
specialty: Pastries
|
|
baking_skill: 0.85
|
|
customer_relations: 0.80
|
|
skill_tier: Journeyman
|
|
|
|
// General traits
|
|
energy: 0.75
|
|
mood: 0.85
|
|
|
|
// Work ethic
|
|
work_ethic: 0.90
|
|
occupation: PastryChef
|
|
|
|
---backstory
|
|
Jane trained at a culinary school in the capital before returning
|
|
to her hometown and meeting Martha. Her croissants are legendary —
|
|
people drive from three towns over for the Saturday batch. While
|
|
Martha handles bread and business, Jane creates the artistic
|
|
pastries that fill the display cases.
|
|
|
|
This year, for the first time, Jane is entering the Harvest Baking
|
|
Competition herself, in the FreeStyle category. She has been
|
|
secretly practicing an ambitious croquembouche after Emma's
|
|
bedtime: a tower of cream puffs held together with spun caramel,
|
|
decorated with candied violets from their garden. Martha does not
|
|
know the full scope of what Jane is planning — Jane wants to
|
|
surprise her.
|
|
|
|
She is nervous. She has always been the support crew on competition
|
|
day, packing Martha's tools and keeping the workspace organized.
|
|
Stepping out from behind the scenes feels like a risk, but Emma
|
|
keeps telling her she should, and Martha has been encouraging her
|
|
for years.
|
|
---
|
|
}
|
|
|
|
// Note: Jane also inherits:
|
|
// - All behaviors from Baker template chain
|
|
// - BakerSchedule (same early mornings as Martha)
|
|
// - All fields with ranges have specific values
|