44 lines
885 B
Plaintext
44 lines
885 B
Plaintext
|
|
//! Family relationships — marriage and parent/child bonds
|
||
|
|
|
||
|
|
// Marriage between Martha and Jane
|
||
|
|
relationship Marriage {
|
||
|
|
Martha as wife {
|
||
|
|
commitment: 0.95
|
||
|
|
role_in_bakery: BusinessAndBread
|
||
|
|
}
|
||
|
|
|
||
|
|
Jane as wife {
|
||
|
|
commitment: 0.95
|
||
|
|
role_in_bakery: PastriesAndCakes
|
||
|
|
}
|
||
|
|
|
||
|
|
years_together: 14
|
||
|
|
relationship_quality: 0.90
|
||
|
|
}
|
||
|
|
|
||
|
|
// Martha and Emma - parent/child
|
||
|
|
relationship ParentChild_MarthaEmma {
|
||
|
|
Martha as parent {
|
||
|
|
parenting_style: Encouraging
|
||
|
|
teaches: BakingFundamentals
|
||
|
|
}
|
||
|
|
|
||
|
|
Emma as child {
|
||
|
|
admiration: 0.9
|
||
|
|
learns_from: BakingScience
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// Jane and Emma - parent/child
|
||
|
|
relationship ParentChild_JaneEmma {
|
||
|
|
Jane as parent {
|
||
|
|
parenting_style: Creative
|
||
|
|
teaches: PastryDecoration
|
||
|
|
}
|
||
|
|
|
||
|
|
Emma as child {
|
||
|
|
admiration: 0.85
|
||
|
|
learns_from: ArtisticExpression
|
||
|
|
}
|
||
|
|
}
|