diff --git a/src/art/genAI/prompts/stylePromptPart.js b/src/art/genAI/prompts/stylePromptPart.js index ef4c6d29b30fe5d4a63581a474c07dcc15ecd4da..d1e8192794fe615593b505f97e2444c2c33386f9 100644 --- a/src/art/genAI/prompts/stylePromptPart.js +++ b/src/art/genAI/prompts/stylePromptPart.js @@ -32,19 +32,19 @@ App.Art.GenAI.StylePromptPart = class StylePromptPart extends App.Art.GenAI.Prom switch (V.aiStyle) { case 0: // custom if (this.slave.visualAge < 18 && V.aiAgeFilter) { - return "full shot, medium full shot, full body portrait, waist, hips, bottom, navel, legs, " + V.aiCustomStyleNeg; + return "NSFW, full shot, medium full shot, full body portrait, waist, hips, bottom, navel, legs, " + V.aiCustomStyleNeg; } else { return V.aiCustomStyleNeg; } case 1: // photorealistic if (this.slave.visualAge < 18 && V.aiAgeFilter) { - return "greyscale, monochrome, cg, render, unreal engine, full shot, medium full shot, full body portrait, waist, hips, navel, bottom, legs"; + return "NSFW, greyscale, monochrome, cg, render, unreal engine, full shot, medium full shot, full body portrait, waist, hips, navel, bottom, legs"; } else { return "greyscale, monochrome, cg, render, unreal engine, closeup, medium shot"; } case 2: // anime/hentai if (this.slave.visualAge < 18 && V.aiAgeFilter) { - return "greyscale, monochrome, photography, 3d render, text, speech bubble, (head out of frame), full shot, medium full shot, full body portrait, waist, hips, navel, bottom, legs"; + return "NSFW, greyscale, monochrome, photography, 3d render, text, speech bubble, (head out of frame), full shot, medium full shot, full body portrait, waist, hips, navel, bottom, legs"; } else { return "greyscale, monochrome, photography, 3d render, text, speech bubble, closeup, medium shot"; }