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

Added resistant intro variant

parent 2b4b1ea0
No related branches found
No related tags found
1 merge request!7465Farmyard animals DOMification
......@@ -85,6 +85,8 @@ App.Interact.fAnimal = function(slave, type) {
} else if (slave.devotion > 20) {
introNondevoted();
} else if (slave.devotion >= -20) {
introNonresistant();
} else {
introResistant();
}
} else {
......@@ -147,7 +149,7 @@ App.Interact.fAnimal = function(slave, type) {
}
}
function introResistant() {
function introNonresistant() {
if (act === "oral") {
if (slaveApproves()) {
r.push(`${slave.slaveName} looks disgusted at the thought of sucking off ${a} ${animal} at first, but the thought of the ${fetishDesc} that comes with it seems to spark a small flame of lust in ${him}.`);
......@@ -170,4 +172,10 @@ App.Interact.fAnimal = function(slave, type) {
}
}
}
function introResistant() {
r.push(`${slave.slaveName}'s face contorts into a mixture of ${slave.devotion < -50 ? `hatred, anger, and disgust` : `anger and disgust`}, ${canWalk(slave) ?
`and only the threat of far worse punishment is enough to prevent ${him} from running out of the room.` :
`but ${he} knows ${he} is powerless to stop you`}.`);
}
};
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