79 lines
1.4 KiB
Plaintext
79 lines
1.4 KiB
Plaintext
|
|
//! Child behaviors — Emma's school week, science fair, and bakery life
|
||
|
|
|
||
|
|
// Child template behaviors
|
||
|
|
behavior PlayBehavior {
|
||
|
|
choose {
|
||
|
|
play_outside
|
||
|
|
play_with_toys
|
||
|
|
draw_pictures
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
behavior LearnBehavior {
|
||
|
|
then {
|
||
|
|
attend_school
|
||
|
|
do_homework
|
||
|
|
read_books
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// School schedule behaviors
|
||
|
|
behavior SchoolDay {
|
||
|
|
then {
|
||
|
|
travel_to_school
|
||
|
|
attend_classes
|
||
|
|
eat_lunch
|
||
|
|
attend_afternoon_classes
|
||
|
|
travel_home
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
behavior DoHomework {
|
||
|
|
then {
|
||
|
|
organize_assignments
|
||
|
|
study
|
||
|
|
complete_homework
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// After-school help at the bakery
|
||
|
|
behavior HelpInBakery {
|
||
|
|
then {
|
||
|
|
package_goods
|
||
|
|
wipe_counters
|
||
|
|
chat_with_customers
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// Thursday: Emma prepares her science fair project on fermentation
|
||
|
|
behavior PrepareScienceFair {
|
||
|
|
then {
|
||
|
|
collect_fermentation_samples
|
||
|
|
examine_under_microscope
|
||
|
|
update_data_charts
|
||
|
|
rehearse_presentation
|
||
|
|
arrange_poster_board
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// Friday: Emma presents at the science fair
|
||
|
|
behavior ScienceFairPresentation {
|
||
|
|
then {
|
||
|
|
setup_display
|
||
|
|
present_findings
|
||
|
|
answer_questions
|
||
|
|
receive_feedback
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// Saturday: Emma helps her parents at the competition venue
|
||
|
|
behavior HelpAtCompetition {
|
||
|
|
then {
|
||
|
|
carry_supplies
|
||
|
|
setup_station
|
||
|
|
fetch_water
|
||
|
|
watch_competition
|
||
|
|
cheer_for_parents
|
||
|
|
}
|
||
|
|
}
|