Skip to content
Snippets Groups Projects
Commit cbf21702 authored by brickode's avatar brickode
Browse files

Added simple relation check to childFriendshipRivalries()

parent 0152be5d
No related branches found
No related tags found
1 merge request!7243Children Report Rework
...@@ -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
function childFriendshipRivalries(child) { function childFriendshipRivalries(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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment