Skip to content
Snippets Groups Projects
Commit 9afb1a84 authored by Skriv's avatar Skriv
Browse files

semis

parent c09597d6
No related branches found
No related tags found
No related merge requests found
/* eslint-disable no-unused-vars */
/* eslint-disable no-undef */
/** breaks in the last case in switches are not required, but are highly recommended */ /** breaks in the last case in switches are not required, but are highly recommended */
/* OPEN MAIN */ /* OPEN MAIN */
......
...@@ -60,7 +60,7 @@ App.Interact.ToyChest = function(slave) { ...@@ -60,7 +60,7 @@ App.Interact.ToyChest = function(slave) {
} else if (slave.devotion <= 50) { } else if (slave.devotion <= 50) {
r += `has positioned ${himself} nearby to offer you ${his} body. `; r += `has positioned ${himself} nearby to offer you ${his} body. `;
} }
let pose = random(1, 100); let pose = jsRandom(1, 100);
if (slave.fuckdoll) { if (slave.fuckdoll) {
r += `${His} holes are, as always, available. `; r += `${His} holes are, as always, available. `;
} else if (slave.fetish === "mindbroken") { } else if (slave.fetish === "mindbroken") {
...@@ -350,7 +350,7 @@ App.Interact.ToyChest = function(slave) { ...@@ -350,7 +350,7 @@ App.Interact.ToyChest = function(slave) {
r += `${He}'s nude and ready to be fucked.`; r += `${He}'s nude and ready to be fucked.`;
} }
break; break;
} }
} }
return r; return r;
} };
...@@ -239,7 +239,7 @@ App.Interact.UseGuard = function(slave) { ...@@ -239,7 +239,7 @@ App.Interact.UseGuard = function(slave) {
case "a striped bra": case "a striped bra":
case "a skimpy loincloth": case "a skimpy loincloth":
case "a sports bra": case "a sports bra":
r += `Due to the skimpiness of ${his} outfit, ${he} appears to be wearing more weapons than clothing.` r += `Due to the skimpiness of ${his} outfit, ${he} appears to be wearing more weapons than clothing.`;
break; break;
case "a sweater and panties": case "a sweater and panties":
case "a sweater and cutoffs": case "a sweater and cutoffs":
...@@ -262,7 +262,7 @@ App.Interact.UseGuard = function(slave) { ...@@ -262,7 +262,7 @@ App.Interact.UseGuard = function(slave) {
case "sport shorts and a t-shirt": case "sport shorts and a t-shirt":
case "sport shorts": case "sport shorts":
case "striped underwear": case "striped underwear":
r += `${His} weapons only accentuate the nakedness of ${his} body.` r += `${His} weapons only accentuate the nakedness of ${his} body.`;
break; break;
default: default:
if (slave.chastityVagina || slave.chastityAnus) { if (slave.chastityVagina || slave.chastityAnus) {
...@@ -275,5 +275,5 @@ App.Interact.UseGuard = function(slave) { ...@@ -275,5 +275,5 @@ App.Interact.UseGuard = function(slave) {
break; break;
} }
return r; return r;
} };
/* CLOSE USEGUARD */ /* CLOSE USEGUARD */
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