30 lines
923 B
Plaintext
30 lines
923 B
Plaintext
|
|
//! Henry - Loyal customer and retired teacher
|
||
|
|
//!
|
||
|
|
//! Demonstrates:
|
||
|
|
//! - Non-family character in the community
|
||
|
|
//! - Minimal template usage (Person, no work schedule)
|
||
|
|
//! - Community connection through the bakery
|
||
|
|
|
||
|
|
use schema::templates::Person;
|
||
|
|
|
||
|
|
character Henry from Person {
|
||
|
|
// Personal details
|
||
|
|
age: 68
|
||
|
|
|
||
|
|
// General traits
|
||
|
|
energy: 0.5
|
||
|
|
mood: 0.75
|
||
|
|
|
||
|
|
---backstory
|
||
|
|
Henry taught history at the local school for over forty years before
|
||
|
|
retiring. He has been a daily customer at the bakery since Martha
|
||
|
|
first opened its doors. Every morning at precisely seven o'clock,
|
||
|
|
he arrives for a sourdough loaf and a chat.
|
||
|
|
|
||
|
|
He watched Emma grow up and occasionally helps her with her homework
|
||
|
|
when he stops by. The bakery is his anchor to the community now that
|
||
|
|
he no longer teaches. Martha always sets aside his favorite loaf,
|
||
|
|
and Jane saves him a croissant on Saturdays.
|
||
|
|
---
|
||
|
|
}
|