@@ -280,7 +280,6 @@ App.Facilities.Nursery.childrenReport = function childrenReport() {
...
@@ -280,7 +280,6 @@ App.Facilities.Nursery.childrenReport = function childrenReport() {
// MARK: Miscellaneous Functions
// MARK: Miscellaneous Functions
// TODO: add relation checks
functionchildFriendshipRivalries(child){
functionchildFriendshipRivalries(child){
const
const
becomeFriends=()=>`${child.slaveName} and ${target.slaveName} have realized that they have more in common that they originally thought, and have become friends.`,
becomeFriends=()=>`${child.slaveName} and ${target.slaveName} have realized that they have more in common that they originally thought, and have become friends.`,
...
@@ -322,6 +321,30 @@ App.Facilities.Nursery.childrenReport = function childrenReport() {
...
@@ -322,6 +321,30 @@ App.Facilities.Nursery.childrenReport = function childrenReport() {
rival++;
rival++;
}
}
if (areRelated(slave,target)||areCousins(slave,target)){
if (areRelated(slave,target)){
if (rival){
div.append(`${child.slaveName} and ${target.slaveName} are siblings, and find it difficult to really stay mad at each other, and they make up their differences somewhat.`);
friend+=2;
}else{
div.append(`${child.slaveName} and ${target.slaveName} are siblings, a fact that draws them closer together.`);
friend+=2;
}
}else{
if (rival){
div.append(`${child.slaveName} and ${target.slaveName} are cousins, and find it difficult to really stay mad at each other, and they make up their differences somewhat.`);
friend++;
}else{
div.append(`${child.slaveName} and ${target.slaveName} are cousins, a fact that draws them closer together.`);
friend++;
}
}
}
if (friend){
if (friend){
if (rival){
if (rival){
if (friend>rival&&child.relationshipTarget!==target.ID){
if (friend>rival&&child.relationshipTarget!==target.ID){