38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
|
|
//! Locations for the Baker family
|
||
|
|
//!
|
||
|
|
//! Demonstrates:
|
||
|
|
//! - Location declarations with fields
|
||
|
|
//! - Prose descriptions for narrative context
|
||
|
|
//! - Locations referenced by schedules and characters
|
||
|
|
|
||
|
|
location MarthasBakery {
|
||
|
|
capacity: 30
|
||
|
|
type: "shop"
|
||
|
|
open_hours: "04:00-14:00"
|
||
|
|
|
||
|
|
---description
|
||
|
|
A warm, stone-walled bakery on the corner of Main Street. The front
|
||
|
|
room has a long wooden counter built from reclaimed oak, with glass
|
||
|
|
display cases showing the day's offerings. Behind it, the kitchen
|
||
|
|
holds two large brick ovens, a prep area with marble counters, and
|
||
|
|
shelves lined with flour, sugar, and spices.
|
||
|
|
|
||
|
|
The smell of fresh bread seeps out through the door from before dawn,
|
||
|
|
drawing the earliest risers. A small chalkboard by the entrance lists
|
||
|
|
the day's specials in Jane's elegant handwriting.
|
||
|
|
---
|
||
|
|
}
|
||
|
|
|
||
|
|
location MainStreet {
|
||
|
|
type: "road"
|
||
|
|
foot_traffic: 0.8
|
||
|
|
|
||
|
|
---description
|
||
|
|
The main thoroughfare of the town, lined with shops and homes. The
|
||
|
|
bakery sits at the busiest corner, where the road from the market
|
||
|
|
square meets the lane leading to the school. On market days, stalls
|
||
|
|
extend down the street and the air fills with the sounds of haggling
|
||
|
|
and laughter.
|
||
|
|
---
|
||
|
|
}
|