22 lines
675 B
Plaintext
22 lines
675 B
Plaintext
|
|
//! Henry's retired schedule — daily routine and judging week
|
||
|
|
|
||
|
|
schedule RetiredSchedule modifies WorkWeek {
|
||
|
|
override work {
|
||
|
|
07:00 -> 07:30
|
||
|
|
action:BakeryVisit
|
||
|
|
}
|
||
|
|
|
||
|
|
block morning_walk { 08:00 -> 09:00, action:MorningWalk }
|
||
|
|
block reading { 10:00 -> 12:00, action:ReadingTime }
|
||
|
|
|
||
|
|
// Friday: Review judging criteria before Saturday's competition
|
||
|
|
recurrence JudgingPrep on Friday {
|
||
|
|
block review_criteria { 14:00 -> 16:00, action:ReviewJudgingCriteria }
|
||
|
|
}
|
||
|
|
|
||
|
|
// Saturday: Judge the Harvest Baking Competition
|
||
|
|
recurrence CompetitionJudge on Saturday {
|
||
|
|
block judging { 08:00 -> 16:00, action:JudgeCompetition }
|
||
|
|
}
|
||
|
|
}
|