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).
48 lines
1.6 KiB
Plaintext
48 lines
1.6 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: RyeBread
|
|
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.
|
|
Last year, he won the Harvest Baking Competition with a dark rye that
|
|
the judges called "revelatory" — the first time in three years that
|
|
Martha did not take the title. He intends to defend his championship.
|
|
|
|
He has been experimenting with a new fermented rye technique, using a
|
|
wild starter he cultivated from grain husks foraged in the hills. The
|
|
results are promising but inconsistent, and he has been running test
|
|
bakes every other evening. He hired Thomas, Martha's former apprentice,
|
|
last spring — a move that was practical (he needed the help) but that
|
|
Martha took as a personal betrayal.
|
|
|
|
Roland respects Martha's skill more than he would ever admit. After
|
|
too much ale at last year's harvest festival, he told Henry that
|
|
Martha's sourdough was better than his own. He regretted saying it
|
|
immediately, and has been trying to prove himself wrong ever since.
|
|
---
|
|
}
|