diff --git a/src/js/nurseryWidgets.js b/src/js/nurseryWidgets.js index 8f56a3ec82a7a743b5e22ade94c9ce73820fb153..b46d0f681cd7fb2fa98047d4b64ceec95649755b 100644 --- a/src/js/nurseryWidgets.js +++ b/src/js/nurseryWidgets.js @@ -1,4 +1,3 @@ -/* eslint-disable camelcase */ App.Facilities.Nursery.ChildSummary = function(child) { "use strict"; const V = State.variables; @@ -905,7 +904,7 @@ App.Facilities.Nursery.ChildSummary = function(child) { r += `<strong>CC</strong>`; } else if (child.preg === 0 && (child.ovaries === 1 || child.mpreg === 1)) { r += `<strong>Fert+</strong>`; - //} else if (((child.preg < child.pregData.normalBirth / 10) && (child.preg > 0) && child.pregKnown === 0) || child.pregWeek === 1) { + // } else if (((child.preg < child.pregData.normalBirth / 10) && (child.preg > 0) && child.pregKnown === 0) || child.pregWeek === 1) { // r += `<strong>Preg?</strong>`; } else if ((child.preg >= 36) && (child.broodmother > 0)) { r += `<strong>Perm preg</strong>`; @@ -4989,7 +4988,50 @@ App.Facilities.Nursery.LongChildDescription = function(child) { r += ` is a <strong><span class="coral">${SlaveTitle(child)}.</span></strong> `; - // r += App.Desc.devotionAndTrust(child); TODO: + if (slave.devotion < -95) { + r += `a <span class="darkviolet">hate-filled,</span>`; + } else if (slave.devotion < -50) { + r += `a <span class="darkviolet">hateful,</span>`; + } else if (slave.devotion < -20) { + r += `a <span class="mediumorchid">reluctant,</span>`; + } else if (slave.devotion <= 20) { + r += `a <span class="yellow">hesitant,</span>`; + } else if (slave.devotion <= 50) { + r += `an <span class="hotpink">accepting,</span>`; + } else if (slave.devotion <= 95) { + r += `a <span class="deeppink">devoted,</span>`; + } else { + r += `a <span class="magenta">worshipful,</span>`; + } + + if (slave.trust < -95) { + r += `<span class="goldenrod">abjectly terrified</span>`; + } else if (slave.devotion < -50) { + r += `<span class="goldenrod">terrified</span>`; + } else if (slave.devotion < -20) { + r += `<span class="gold">frightened</span>`; + } else if (slave.devotion <= 20) { + r += `<span class="yellow">fearful</span>`; + } else if (slave.devotion <= 50) { + if (slave.devotion < -20) { + r += `<span class="orange">careful</span>`; + } else { + r += `<span class="mediumaquamarine">careful</span>`; + } + } else if (slave.devotion <= 95) { + if (slave.devotion < -20) { + r += `<span class="orangered">bold</span>`; + } else { + r += `<span class="mediumseagreen">trusting</span>`; + } + } else { + if (slave.devotion < -20) { + r += `<span class="darkred">defiant</span>`; + } else { + r += `<span class="seagreen">profoundly trusting</span>`; + } + } + // r += App.Desc.ageAndHealth(child); @@ -5158,7 +5200,465 @@ App.Facilities.Nursery.LongChildDescription = function(child) { r += `However, <span class="coral">${his} mind is fundamentally broken;</span> everything ${he} experiences will quickly be forgotten. `; } - // r += App.Desc.fetish(child); TODO: + switch (child.behavioralFlaw) { + case "arrogant": + if (child.devotion < -20 && child.trust >= -20) { + r += `${He} is still <span class="red">arrogant</span> at heart, but does ${his} best to hide it out of fear. `; + } else if (child.devotion < -20) { + r += `${He} is <span class="red">arrogant</span> and seems to think slavery beneath ${him}. `; + } else if (child.devotion <= 20) { + r += `Despite being well broken, ${he} seems to retain hints of <span class="red">arrogance.</span> `; + } else { + r += `${He} is <span class="red">bitchy</span> and insults you every chance ${he} gets. `; + } + break; + case "bitchy": + if (child.devotion < -20 && child.trust >= -20) { + r += `${He} is still <span class="red">bitchy</span> at times, but does ${his} best to keep quiet out of fear. `; + } else if (child.devotion < -20) { + r += `${He} is <span class="red">bitchy</span> and constantly tries to get a word in edgewise. `; + } else if (child.devotion <= 20) { + r += `Since ${he} is well broken, ${he} tries to confine ${his} <span class="red">bitchy</span> remarks to your other slaves. `; + } else { + r += `${He} strongly believes that <span class="red">slavery is wrong,</span> and resists it as best ${he} can. `; + } + break; + case "liberated": + if (child.devotion < -20 && child.trust >= -20) { + r += `${He} strongly believes that <span class="red">slavery is wrong,</span> but usually keeps quiet out of fear. `; + } else if (child.devotion < -20) { + r += `${He} strongly believes that <span class="red">slavery is wrong,</span> and rarely misses a chance to complain about it. `; + } else if (child.devotion <= 20) { + r += `${He} strongly believes that <span class="red">slavery is wrong,</span> but has learned to keep it to ${himself}. `; + } else { + r += `${He} is <span class="red">devoutly religious,</span> `; + } + break; + case "devout": + if (child.devotion < -20 && child.trust >= -20) { + r += `and uses ${his} faith as a wellspring of resistance. `; + } else if (child.devotion < -20) { + r += `and uses ${his} faith as a place of refuge. `; + } else if (child.devotion <= 20) { + r += `and uses ${his} faith as a private place within ${himself}. `; + } else { + r += `but has learned to keep ${his} faith private. `; + } + break; + case "odd": + r += `${He} behaves <span class="red">oddly,</span> saying and doing random things. `; + break; + case "hates men": + r += `${He} <span class="red">strongly dislikes</span> being around `; + if (child.attrXY >= 85 && child.energy >= 40) { + r += `men; since ${he} loves the dick, ${he}'s forced to put up with them. `; + } else if (child.attrXY >= 65 && child.energy >= 40) { + r += `men; since ${he} likes the dick, ${he} reluctantly puts up with them. `; + } else { + r += `men. `; + } + break; + case "hates women": + r += `${He} <span class="red">strongly dislikes</span> being around `; + if (child.attrXX >= 85 && child.energy >= 40) { + r += `women; since ${he} loves pussy, ${he}'s forced to put up with them. `; + } else if (child.attrXX >= 65 && child.energy >= 40) { + r += `women; since ${he} likes pussy, ${he} reluctantly puts up with them. `; + } else { + r += `women. `; + } + break; + case "anorexic": + r += `${He} suffers from <span class="red">anorexia.</span> `; + break; + case "gluttonous": + r += `${He} <span class="red">tends to overeat</span> whenever ${he} can, reacting to the rigors of sexual slavery with overeating. `; + break; + } + + switch (child.behavioralQuirk) { + case "confident": + r += `${He}'s <span class="green">confident,</span> and believes that ${he} has something of value to offer, even as a slave. `; + break; + case "cutting": + r += `${He} often has a witty or <span class="green">cutting</span> remark ready, but knows when to keep them to ${himself}. `; + break; + case "funny": + r += `${He}'s <span class="green">funny,</span> often providing a little comic relief. `; + break; + case "adores men": + r += `${He} <span class="green">adores women,</span> and loves spending time with them. `; + break; + case "adores women": + r += `${He} <span class="green">adores men,</span> and loves spending time with them. `; + break; + case "fitness": + r += `${He}'s a <span class="green">fitness fanatic,</span> and almost gets off to a hard workout. `; + break; + case "insecure": + r += `${He}'s <span class="green">insecure,</span> defining ${his} self worth by how much others want to fuck ${him}. `; + break; + case "sinful": + if (arcology.FSChattelRelionist === "unset") { + r += `${He}'s delightfully <span class="green">sinful,</span> taking real pleasure in breaking cultural mores. `; + } else { + r += `${He}'s a devout Chattel Religionist, and is aggressively <span class="green">sinful</span> against old world faiths. ${He} is enthusiastic about slutty religious clothing, and excited by intentional sacrilege like openly using old world religious icons as sex toys or having orgies on altars. `; + } + break; + case "advocate": + r += `${He}'s an <span class="green">advocate</span> for slavery, and can articulate what it's done for ${him}. `; + break; + } + + switch (child.sexualFlaw) { + case "hates oral": + r += `${He} <span class="red">hates</span> oral sex and tries to avoid it. `; + break; + case "hates anal": + r += `${He} <span class="red">hates</span> anal sex and tries to avoid it. `; + break; + case "hates penetration": + r += `${He} <span class="red">hates</span> penetration and tries to avoid it. `; + break; + case "repressed": + r += `${He} is <span class="red">sexually repressed,</span> retaining a fundamental distaste for sex from ${his} upbringing. `; + break; + case "idealistic": + r += `${He} is <span class="red">sexually idealistic,</span> retaining a belief that sex should be based on love and consent. `; + break; + case "shamefast": + r += `${He} is <span class="red">shamefast,</span> suffering crippling anxiety when naked. `; + break; + case "apathetic": + r += `${He} is <span class="red">sexually apathetic,</span> often slipping into inertness during sex. `; + break; + case "crude": + r += `${He} is <span class="red">sexually crude,</span> and has little sense of what partners find disgusting during sex. `; + break; + case "judgemental": + r += `${He} is <span class="red">sexually judgemental,</span> and often denigrates ${his} sexual partners' performance. `; + break; + case "cum addict": + r += `${He}'s a <span class="yellow">cum addict:</span> ${he} has a deep psychological addiction to ${PC.dick ? `semen` : PC.dick && PC.vagina ? ` and ` : PC.vagina ? `pussyjuice` : ``} and becomes anxious if ${he} goes for a few hours without drinking any. `; + break; + case "anal addict": + r += `${He}'s an <span class="yellow">anal addict:</span> ${he} has a deep psychological need to be fucked in the ass and becomes anxious if ${he} goes for a few hours without anal. `; + break; + case "attention whore": + r += `${He}'s an <span class="yellow">attention whore:</span> shocking and titillating spectators is more important to ${him} than the actual pleasure of sex. `; + break; + case "breast growth": + r += `${He} has a <span class="yellow">breast growth obsession:</span> ${he}'s nearly incapable of believing that ${his} breasts are big enough. `; + break; + case "abusive": + r += `${He}'s sexually <span class="yellow">abusive:</span> ${he} prefers taking sexual pleasure by force to having it offered to ${him}. `; + break; + case "malicious": + r += `${He}'s sexually <span class="yellow">malicious:</span> ${he} gets off on others' anguish. `; + break; + case "self hating": + r += `${He}'s filled with <span class="yellow">self hatred,</span> and is disturbingly willing to comply with things that might hurt ${him}. `; + break; + case "neglectful": + r += `${He}'s sexually <span class="yellow">self neglectful,</span> and often shows no interest in getting off ${himself}. `; + break; + case "breeder": + r += `${He}'s <span class="yellow">obsessed with being bred</span> to the point of fetishizing pregnancy itself as much as any act that leads to it. `; + break; + } + + switch (child.sexualQuirk) { + case "gagfuck queen": + r += `${He}'s a <span class="green">gagfuck queen:</span> ${he}'s able to safely take a rough facefuck. `; + break; + case "painal queen": + r += `${He}'s a <span class="green">painal queen:</span> ${he} knows exactly how much ${he} can take without getting hurt. `; + break; + case "strugglefuck queen": + r += `${He}'s a <span class="green">strugglefuck queen:</span> ${he} can gauge exactly how much resistance ${his} partners want. `; + break; + case "tease": + r += `${He}'s a <span class="green">tease,</span> and often displays a little flash of ${himself} followed by a blush. `; + break; + case "romantic": + r += `${He}'s a <span class="green">romantic,</span> and persists in innocent pleasure in the closeness of sex. `; + break; + case "perverted": + r += `${He}'s <span class="green">perverted,</span> and enjoys breaking sexual boundaries. `; + break; + case "caring": + r += `${He}'s <span class="green">caring,</span> and enjoys bringing partners pleasure more than getting off ${himself}. `; + break; + case "unflinching": + r += `${He}'s <span class="green">unflinching,</span> willing to do anything, even by the standards of sex slaves. `; + break; + case "size queen": + r += `${He}'s <span class="green">a size queen;</span> preferring big cock is almost ${his} trademark. `; + break; + } + + if (child.fetishKnown) { + switch (child.fetish) { + case "submissive": + if (child.sexualFlaw === "apathetic") { + r += `This sexual apathy plays into ${his} preference for <span class="lightcoral">submission.</span> `; + } else if (child.behavioralFlaw === "arrogant") { + r += `${His} arrogance is really just a thin shell to protect ${his} true need to <span class="lightcoral">submit.</span> `; + } else if (child.fetishStrength > 95) { + r += `${He}'s an extreme <span class="lightcoral">submissive,</span> and relishes the strictures of slavery. `; + } else if (child.fetishStrength > 60) { + r += `${He}'s a confirmed <span class="lightcoral">submissive,</span> and enjoys the strictures of slavery. `; + } else { + r += `${He} has <span class="lightcoral">submissive</span> tendencies, and likes the strictures of slavery. `; + } + break; + case "cumslut": + if (child.sexualFlaw === "hates oral") { + r += `${He}'s torn between ${his} <span class="lightcoral">love of semen</span> and ${his} dislike of having cocks in ${his} mouth. `; + } else if (child.fetishStrength > 95) { + r += `${He}'s a <span class="lightcoral">cumslut,</span> and loves giving blowjobs and receiving facials. `; + } else if (child.fetishStrength > 60) { + r += `${He} <span class="lightcoral">prefers giving oral,</span> and enjoys sucking dick and receiving facials. `; + } else { + r += `${He} has an <span class="lightcoral">oral fixation,</span> and likes giving blowjobs and receiving facials. `; + } + break; + case "humiliation": + if (child.behavioralFlaw === "bitchy") { + r += `${His} bitchiness is really just an expression of ${his} deep need to be <span class="lightcoral">humiliated</span> ${himself}. `; + } else if (child.sexualFlaw === "shamefast") { + r += `${His} shame is genuine, and it is with real self-loathing that ${he} <span class="lightcoral">gets off on humiliation.</span> `; + } else if (child.fetishStrength > 95) { + r += `${He}'s a slut for <span class="lightcoral">humiliation,</span> and gets off on having others see ${his} enslavement. `; + } else if (child.fetishStrength > 60) { + r += `${He} enjoys <span class="lightcoral">humiliating</span> sex. `; + } else { + r += `${He} likes <span class="lightcoral">embarrassing</span> sex. `; + } + break; + case "buttslut": + if (child.sexualFlaw === "hates anal") { + r += `${His} hatred is just pretense to cover ${his} shame about how much ${he} really loves getting <span class="lightcoral">fucked in the butt.</span> `; + } else if (child.fetishStrength > 95) { + r += `${He}'s a <span class="lightcoral">buttslut,</span> happy to have anyone put anything up ${his} ass. `; + } else if (child.fetishStrength > 60) { + r += `${He} <span class="lightcoral">prefers anal.</span> `; + } else { + r += `${He} has an <span class="lightcoral">anal fixation.</span> `; + } + break; + case "boobs": + if (child.fetishStrength > 95) { + r += `${He} <span class="lightcoral">prefers mammary intercourse</span> to any other kind of sex, and readily climaxes to nipple stimulation. `; + } else if (child.fetishStrength > 60) { + r += `${He} enjoys <span class="lightcoral">breast play,</span> and is rapidly aroused by nipple stimulation. `; + } else { + r += `${He} <span class="lightcoral">really likes boobs,</span> ${hers} and others. `; + } + break; + case "pregnancy": + if (child.fetishStrength > 95) { + r += `${He} has a <span class="lightcoral">pregnancy fetish,</span> and finds anything related to reproduction sexy. `; + } else if (child.fetishStrength > 60) { + r += `${He} has an <span class="lightcoral">impregnation fantasy,</span> and enjoys bareback sex. `; + } else { + r += `${He} has a recurring <span class="lightcoral">impregnation fantasy.</span> `; + } + break; + case "dom": + if (child.sexualFlaw === "apathetic") { + r += `${He} is at war with ${himself}, since ${his} habitual apathy during sex barely masks a desire to <span class="lightcoral">dominate.</span> `; + } else if (child.fetishStrength > 95) { + r += `${He} is a <span class="lightcoral">complete dom;</span> with other slaves this is expressed as a strong preference to top, and with ${his} betters ${he}'s an almost competitive lover. `; + } else if (child.fetishStrength > 60) { + r += `${He} likes to take an active, powerful role in sex; with other slaves this is expressed as <span class="lightcoral">dominance,</span> and with ${his} betters ${he}'s a very energetic lover. `; + } else { + r += `${He} prefers to take a <span class="lightcoral">dominant</span> sexual role. `; + } + break; + case "sadist": + if (child.fetishStrength > 95) { + r += `${He} is an <span class="lightcoral">aggressive sadist;</span> ${he}'s constantly plotting to control, abuse, and hurt other slaves. `; + } else if (child.fetishStrength > 60) { + r += `${He} has <span class="lightcoral">sadistic tendencies;</span> ${he} enjoys watching other slaves in pain, but truly loves causing pain ${himself}. `; + } else { + r += `${He} gets off on <span class="lightcoral">the suffering of others;</span> ${he} enjoys watching other slaves in pain. `; + } + break; + case "masochist": + if (child.fetishStrength > 95) { + r += `${He} is a <span class="lightcoral">pain slut.</span> `; + } else if (child.fetishStrength > 60) { + r += `${He} <span class="lightcoral">gets off on pain,</span> showing strong masochistic tendencies. `; + } else { + r += `${He} <span class="lightcoral">doesn't mind pain,</span> and shows some masochistic tendencies. `; + } + break; + default: + r += `${His} sexual tastes are <span class="pink">quite normal.</span> `; + break; + } + } else { + r += `${His} fetishes, if any, are not known to you. `; + } + + if (child.attrKnown) { + if (child.energy > 95) { + r += `${He}'s a <span class="green">nymphomaniac.</span> `; + } else if (child.energy > 80) { + r += `${He}'s a <span class="green">sex addict.</span> `; + } else if (child.energy > 60) { + r += `${He} has a <span class="green">powerful appetite for sex.</span> `; + } else if (child.energy > 40) { + r += `${He} has a <span class="yellow">healthy sex drive.</span> `; + } else if (child.energy > 20) { + r += `${He} has a <span class="red">weak sex drive.</span> `; + } else { + r += `${He}'s <span class="red">frigid,</span> with little interest in sex. `; + } + + if (child.attrXY <= 5) { + if (child.attrXX <= 5) { + r += `${He}'s a <span class="green">nymphomaniac.</span> `; + } else { + r += `${He}'s a <span class="green">sex addict.</span> `; + if (child.attrXX <= 15) { + r += `${He} has a <span class="green">powerful appetite for sex.</span> `; + } else if (child.attrXX <= 35) { + r += `${He} has a <span class="yellow">healthy sex drive.</span> `; + } else if (child.attrXX <= 65) { + r += `${He} has a <span class="red">weak sex drive.</span> `; + } else if (child.attrXX <= 85) { + r += `${He}'s <span class="red">frigid,</span> with little interest in sex. `; + } else if (child.attrXX <= 95) { + r += `${He} <span class="red">finds both men's and women's intimate areas quite repulsive,</span> an unfortunate state of affairs! `; + } else { + r += `${He} <span class="red">finds men sexually disgusting,</span> `; + } + } + } else if (child.attrXY <= 15) { + r += `${He} <span class="red">considers men's bodies a turnoff,</span> `; + if (child.attrXX <= 5) { + r += `and is <span class="red">actually disgusted by women's.</span> `; + } else if (child.attrXX <= 15) { + r += `and <span class="red">feels the same about women's.</span> `; + } else if (child.attrXX <= 35) { + r += `and is <span class="red">unenthusiastic about women.</span> `; + } else if (child.attrXX <= 65) { + r += `and ${he} is indifferent to women. `; + } else if (child.attrXX <= 85) { + r += `but <span class="green">is attracted to women.</span> `; + } else if (child.attrXX <= 95) { + r += `<span class="green">strongly preferring women.</span> `; + } else { + r += `but is <span class="green">passionate about women.</span> `; + } + } else if (child.attrXY <= 35) { + r += `${He} is <span class="red">finds most men unattractive,</span> `; + if (child.attrXX <= 5) { + r += `and is <span class="red">disgusted by the idea of intimacy with a woman.</span> `; + } else if (child.attrXX <= 15) { + r += `and is <span class="red">turned off by women.</span> `; + } else if (child.attrXX <= 35) { + r += `and is <span class="red">unenthusiastic about women.</span> `; + } else if (child.attrXX <= 65) { + r += `and ${he} is indifferent to women. `; + } else if (child.attrXX <= 85) { + r += `but <span class="green">is attracted to women.</span> `; + } else if (child.attrXX <= 95) { + r += `<span class="green">strongly preferring women.</span> `; + } else { + r += `but is <span class="green">passionate about women.</span> `; + } + } else if (child.attrXY <= 65) { + r += `${He}'s indifferent to sex with men, `; + if (child.attrXX <= 5) { + r += `but is <span class="red">disgusted by the idea of intimacy with a woman.</span> `; + } else if (child.attrXX <= 15) { + r += `but is <span class="red">turned off by women.</span> `; + } else if (child.attrXX <= 35) { + r += `but is <span class="red">actually unenthusiastic about women.</span> `; + } else if (child.attrXX <= 65) { + r += `and feels the same about women, too. `; + } else if (child.attrXX <= 85) { + r += `but <span class="green">is attracted to women.</span> `; + } else if (child.attrXX <= 95) { + r += `<span class="green">strongly preferring women.</span> `; + } else { + r += `but is <span class="green">passionate about women.</span> `; + } + } else if (child.attrXY <= 85) { + r += `${He} <span class="green">finds men attractive,</span> `; + if (child.attrXX <= 5) { + r += `but is <span class="red">disgusted by the idea of intimacy with a woman.</span> `; + } else if (child.attrXX <= 15) { + r += `but is <span class="red">turned off by women.</span> `; + } else if (child.attrXX <= 35) { + r += `but is <span class="red">unenthusiastic about women.</span> `; + } else if (child.attrXX <= 65) { + r += `but is indifferent to women. `; + } else if (child.attrXX <= 85) { + r += `and <span class="green">likes women too.</span> `; + } else if (child.attrXX <= 95) { + r += `but <span class="green">likes women even more.</span> `; + } else { + r += `but is really <span class="green">passionate about women.</span> `; + } + } else if (child.attrXY <= 95) { + r += `${He} <span class="green">is aroused by most men,</span> `; + if (child.attrXX <= 5) { + r += `but is <span class="red">disgusted by the idea of intimacy with a woman.</span> `; + } else if (child.attrXX <= 15) { + r += `but is <span class="red">turned off by women.</span> `; + } else if (child.attrXX <= 35) { + r += `but is <span class="red">unenthusiastic about women.</span> `; + } else if (child.attrXX <= 65) { + r += `but is indifferent to women. `; + } else if (child.attrXX <= 85) { + r += `and <span class="green">likes women too.</span> `; + } else if (child.attrXX <= 95) { + r += `and <span class="green">thinks most women are hot,</span> too. `; + } else { + r += `but is most <span class="green">passionate about women.</span> `; + } + } else { + r += `${He}'s <span class="green">omnisexual,</span> and is passionately attracted to nearly everyone. `; + if (child.attrXX > 95) { + r += `${He}'s <span class="green">omnisexual,</span> and is passionately attracted to nearly everyone. `; + } else { + r += `${He}'s <span class="green">passionate about men,</span> `; + if (child.attrXX <= 5) { + r += `${He}'s <span class="green">passionate about men,</span> `; + } else if (child.attrXX <= 15) { + r += `but is <span class="red">disgusted by the idea of intimacy with a woman.</span> `; + } else if (child.attrXX <= 35) { + r += `but is <span class="red">turned off by women.</span> `; + } else if (child.attrXX <= 65) { + r += `but is <span class="red">unenthusiastic about women.</span> `; + } else if (child.attrXX <= 85) { + r += `but is indifferent to women. `; + } else if (child.attrXX <= 95) { + r += `but also <span class="green">likes women,</span> too. `; + } else { + r += `but also <span class="green">thinks most women are hot,</span> too. `; + } + } + } + } else { + r += `You do not understand ${his} sexuality very well. `; + } + + if (!V.saleDescription && !V.eventDescription) { + if (canSee(child) && child.attrKnown) { + if (child.attrXX > 85 && PC.boobs) { + r += `${His} attraction to women is obvious: ${he} can't seem to stop staring at your breasts. `; + } else if (child.attrXY > 85 && PC.dick) { + r += `${His} attraction to men is obvious: ${he} can't seem to stop glancing down at your package. `; + } else if (child.attrXY > 85 && !PC.boobs) { + r += `${His} attraction to men is obvious: ${he} can't seem to stop checking out your broad chest. `; + } + } + } switch (child.behavioralFlaw) { case "arrogant":