From dd1d22ea6c272b8bb348803c67fd7d98feddc1d1 Mon Sep 17 00:00:00 2001 From: Charles Senior <cas.wmp10@gmail.com> Date: Sun, 17 Dec 2023 20:47:17 -0500 Subject: [PATCH] update clubslut netting, add colors to AI clothing gen --- src/art/genAI/clothesPromptPart.js | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/src/art/genAI/clothesPromptPart.js b/src/art/genAI/clothesPromptPart.js index c29e585b4ef..f9f37e724d3 100644 --- a/src/art/genAI/clothesPromptPart.js +++ b/src/art/genAI/clothesPromptPart.js @@ -111,8 +111,9 @@ const clothesPrompts = { "positive": "(cheerleader outfit:1.1), skirt, thighs, crop top, navel, midriff", "negative": "jeans, nude, pussy, nipples", }, - "clubslut netting": { // Doesn't work well - "positive": "nude, fishnets, nipples, pussy", + "clubslut netting": { + "colors": ["light blue", "pink", "lime green"], + "positive": "rave clothing, lewd, transparent clothing, $color fishnet bodysuit, $color fishnet, choker", "negative": "cloth, jeans, pants, corset", }, "cutoffs and a t-shirt": { @@ -494,11 +495,21 @@ App.Art.GenAI.ClothesPromptPart = class ClothesPromptPart extends App.Art.GenAI. return prompt; // female default } + colorReplacer(prompt, colors) { + if (colors && prompt.includes('$color')) { + const color = colors[Math.floor(Math.random() * colors.length)]; + return prompt.replaceAll('$color', color) + } + return prompt; + } + /** * @returns {string} */ positive() { - return this.bodyPartReplacer(clothesPrompts[this.getClothes()].positive); + const basePrompt = clothesPrompts[this.getClothes()]; + const coloredPrompt = this.colorReplacer(basePrompt.positive, basePrompt.colors) + return this.bodyPartReplacer(coloredPrompt); } /** -- GitLab