Skip to content
Snippets Groups Projects
Commit 9a875598 authored by lowercasedonkey's avatar lowercasedonkey
Browse files

incest rivals

parent 11a4d74a
No related branches found
No related tags found
1 merge request!7011Long slave to JS: arms/legs height/weight
/**
* @param {App.Entity.SlaveState} slave
* @returns {string}
*/
App.Desc.relationRival = function(slave) {
const r = [];
const {
his, He
} = getPronouns(slave);
r.push(relative());
r.push(rival());
return r.join(" ");
function relative() {
if (slave.relationship >= 3 && totalRelatives(slave) > 0) {
const lover = getSlave(slave.relationshipTarget);
if (lover) {
if (relativeTerm(slave, lover) !== null) {
return `${He} is in an <span class="lightgreen">incestuous relationship with ${his} ${relativeTerm(slave, lover)}, ${SlaveFullName(lover)}.</span>`;
}
}
} else if (slave.relationship <= -2) {
if (relativeTerm(slave, V.PC) !== null) {
return `${He} is in an <span class="lightgreen">incestuous relationship with ${his} ${relativeTerm(slave, V.PC)}, you.</span>`;
}
}
}
function rival() {
if (slave.rivalry !== 0) {
if (getSlave(slave.rivalryTarget)) {
if (slave.rivalry <= 1) {
return `${He} <span class="lightsalmon">dislikes</span> ${SlaveFullName(getSlave(slave.rivalryTarget))}.`;
} else if (slave.rivalry <= 2) {
return `${He} is ${SlaveFullName(getSlave(slave.rivalryTarget))}'s <span class="lightsalmon">rival.</span>`;
} else {
return `${He} <span class="lightsalmon">bitterly hates</span> ${SlaveFullName(getSlave(slave.rivalryTarget))}.`;
}
}
}
}
};
...@@ -126,34 +126,7 @@ is ...@@ -126,34 +126,7 @@ is
<<= App.Desc.family($activeSlave)>> <<= App.Desc.family($activeSlave)>>
<<if $activeSlave.relationship >= 3 && totalRelatives($activeSlave) > 0>> <<= App.Desc.relationRival($activeSlave)>>
<<set _lover = getSlave($activeSlave.relationshipTarget)>>
<<if def _lover>>
<<set _relTerm = relativeTerm($activeSlave, _lover)>>
<<if _relTerm !== null>>
$He is in an <span class="lightgreen">incestuous relationship with $his _relTerm, <<= SlaveFullName(_lover)>>.</span>
<</if>>
<</if>>
<<elseif $activeSlave.relationship <= -2>>
<<set _relTerm = relativeTerm($activeSlave, $PC)>>
<<if _relTerm !== null>>
$He is in an <span class="lightgreen">incestuous relationship with $his _relTerm, you.</span>
<</if>>
<</if>>
<<if $activeSlave.rivalry != 0>>
<<set _lsd = $slaveIndices[$activeSlave.rivalryTarget]>>
<<if def _lsd>>
$He
<<if $activeSlave.rivalry <= 1>>
<span class="lightsalmon">dislikes</span> <<= SlaveFullName($slaves[_lsd])>>.
<<elseif $activeSlave.rivalry <= 2>>
is <<= SlaveFullName($slaves[_lsd])>>'s <span class="lightsalmon">rival.</span>
<<else>>
<span class="lightsalmon">bitterly hates</span> <<= SlaveFullName($slaves[_lsd])>>.
<</if>>
<</if>>
<</if>>
<<if $activeSlave.bodySwap > 0>> <<if $activeSlave.bodySwap > 0>>
<<if $activeSlave.origBodyOwner !== "">> <<if $activeSlave.origBodyOwner !== "">>
......
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