diff --git a/src/endWeek/reports/childrenReport.js b/src/endWeek/reports/childrenReport.js index dfe6c138b9190764996dfbf6940edef65246a9c7..5b55d58c14a505c8d40df5f26ae3a14c3da7c2a0 100644 --- a/src/endWeek/reports/childrenReport.js +++ b/src/endWeek/reports/childrenReport.js @@ -280,7 +280,6 @@ App.Facilities.Nursery.childrenReport = function childrenReport() { // MARK: Miscellaneous Functions - // TODO: add relation checks function childFriendshipRivalries(child) { const 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() { 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 (rival) { if (friend > rival && child.relationshipTarget !== target.ID) {