From 7acaa440496370a27f9d9546bf90101da98d6bbb Mon Sep 17 00:00:00 2001
From: Trinidad <anchaiscastilla@gmail.com>
Date: Fri, 6 Oct 2023 13:12:36 +0200
Subject: [PATCH] 	modified:   devNotes/usefulJSFunctionDocumentation.md 
 modified:   src/js/storyJS.js

---
 devNotes/usefulJSFunctionDocumentation.md |  3 +++
 src/js/storyJS.js                         | 21 +++++++++++++++++++++
 2 files changed, 24 insertions(+)

diff --git a/devNotes/usefulJSFunctionDocumentation.md b/devNotes/usefulJSFunctionDocumentation.md
index e8a9181daa3..2fe079407ea 100644
--- a/devNotes/usefulJSFunctionDocumentation.md
+++ b/devNotes/usefulJSFunctionDocumentation.md
@@ -201,6 +201,9 @@ lipsDesc(slave) // Returns the description of the slave's lips.
 
 bellyDesc(slave, withNoun, pregReference) // Returns the description of the slave's belly.
 
+penetrationTool(slave, includeClit) // Returns the description of the part of body that a slave/PC uses to penetrate, if he can, or a description for his dildo.
+
+
 relationshipChecks [script] All work as expected with <<if X.rivalryTarget == $slaves[$i].ID>> preceding them.
  rivalryTerm(id) // Returns the rivalry term for the input. e.g. lines 99-100 of brothelReport.
   //<<if $Madam.rivalryTarget == $slaves[$i].ID>>
diff --git a/src/js/storyJS.js b/src/js/storyJS.js
index 4a4fca2ffd7..47a7d7a6646 100644
--- a/src/js/storyJS.js
+++ b/src/js/storyJS.js
@@ -754,3 +754,24 @@ globalThis.pregNumberName = function(nmbr1, nmbr2) {
 	}
 	return pt;
 };
+
+/** Returns the description of the part of body a slave/PC uses to penetrate, if they can, or a description for "dildo"
+ * @param {FC.HumanState} slave
+ * @param {boolean} includeClit
+ * @returns {string}
+*/
+globalThis.penetrationTool = function(slave, includeClit = true) {
+	if (!slave || !slave.hasOwnProperty("dick")) {
+		return "ERROR";
+	}
+	if (slave.dick > 0 && canPenetrate(slave)) {
+		return dickDesc(slave);
+	}
+	if (slave.clit >= 3 && includeClit) {
+		return clitDesc(slave);
+	}
+	let adj = ["big", "fat", "huge", "large", "long", "realistic"];
+	let use = (slave.vagina === 0) ? ["strap-on", "", ""] : ["double-sided", "strap-on double", "double-headed", "double-ended", "strapless double"];
+	let noun = ["dildo", "dildo", "dildo", "dildo", "fake cock", "vibrator", "vibrator"];
+	return `${jsEither(adj)} ${jsEither(use)} ${jsEither(noun)}`;
+}
\ No newline at end of file
-- 
GitLab