@@ -92,9 +92,15 @@ App.Facilities.Nursery.childrenReport = function childrenReport() {
return`Though ${Matron.slaveName} has had little to no formal education, ${his} natural brilliance allows ${him} to teach ${theChildren} quite effectively, and so ${CL>1?`they grow`:`${child.slaveName} grows`} a bit smarter. `;
}else{
child.intelligenceImplant++;
const
totalSpan=App.UI.DOM.makeElement("span",`${Matron.slaveName} isn't the brightest and not well educated, `),
damageSpan=App.UI.DOM.makeElement("span",`damaging the amount of real education ${theChildren} receive. `,"red");
child.intelligenceImplant--;
return`${Matron.slaveName} isn't the brightest and is only somewhat effective at teaching, so ${theChildren}${CL>1?`grow`:`grows`} just a little bit smarter. `;
totalSpan.appendChild(damageSpan);
returntotalSpan;
}
}
...
...
@@ -128,6 +134,7 @@ App.Facilities.Nursery.childrenReport = function childrenReport() {
}
functionnannyEducationEffects(child){
// TODO: redo this entire section
// TODO: expand this
const
firstNanny=nannies[0],
...
...
@@ -289,8 +296,8 @@ App.Facilities.Nursery.childrenReport = function childrenReport() {
becomeFriends=()=>`${child.slaveName} and ${target.slaveName} have realized that they have more in common that they originally thought, and have become friends. `,
becomeRivals=()=>`${child.slaveName} and ${target.slaveName} have more differences between them than they could put aside and have become rivals. `,