2026-02-13 21:52:03 +00:00
|
|
|
//! 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
|
2026-02-14 15:49:17 +00:00
|
|
|
skill_tier: Journeyman
|
2026-02-13 21:52:03 +00:00
|
|
|
|
|
|
|
|
// General traits
|
|
|
|
|
energy: 0.75
|
|
|
|
|
mood: 0.85
|
|
|
|
|
|
|
|
|
|
// Work ethic
|
|
|
|
|
work_ethic: 0.90
|
|
|
|
|
occupation: "pastry chef"
|
|
|
|
|
|
|
|
|
|
---backstory
|
|
|
|
|
Jane trained at a culinary school in the capital before returning
|
2026-02-14 15:49:17 +00:00
|
|
|
to her hometown and meeting Martha. Her specialty is delicate
|
2026-02-13 21:52:03 +00:00
|
|
|
pastries and elaborate wedding cakes. While Martha handles the
|
|
|
|
|
bread and business, Jane focuses on the artistic creations that
|
|
|
|
|
draw customers from neighboring towns.
|
|
|
|
|
|
2026-02-14 15:49:17 +00:00
|
|
|
She is more of a night owl by nature, but has adapted to the baker's
|
|
|
|
|
early schedule over the years. Her croissants are legendary.
|
2026-02-13 21:52:03 +00:00
|
|
|
---
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Note: Jane also inherits:
|
|
|
|
|
// - All behaviors from Baker template chain
|
|
|
|
|
// - BakerSchedule (same early mornings as Martha)
|
|
|
|
|
// - All fields with ranges have specific values
|