Skip to content
Snippets Groups Projects
Commit 19b167fd authored by svornost's avatar svornost
Browse files

Don't prompt for vaginal fluids if the slave's genitals are covered by clothes

parent 92ed0118
No related branches found
No related tags found
1 merge request!11561Custom per-slave prompting for AI Art
......@@ -3,8 +3,9 @@ App.Art.GenAI.ArousalPromptPart = class ArousalPromptPart extends App.Art.GenAI.
* @returns {string}
*/
positive() {
const genitalsCovered = App.Data.clothes.get(this.slave.clothes).exposure < 3;
let prompt = {terms: [], weight: 1};
if (this.slave.vagina >= 0 && this.slave.vaginaLube === 2) {
if (!genitalsCovered && this.slave.vagina >= 0 && this.slave.vaginaLube === 2) {
prompt.terms.push("pussy juice");
}
if (this.slave.energy > 60) {
......@@ -15,7 +16,7 @@ App.Art.GenAI.ArousalPromptPart = class ArousalPromptPart extends App.Art.GenAI.
}
if (this.slave.energy > 80) {
prompt.terms.push("sweat", "heavy breathing");
if (this.slave.vagina >= 0 && this.slave.vaginaLube === 1) {
if (!genitalsCovered && this.slave.vagina >= 0 && this.slave.vaginaLube === 1) {
prompt.terms.push("pussy juice");
}
}
......
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