Skip to content
Snippets Groups Projects
Commit 8476f813 authored by Arkerthan's avatar Arkerthan
Browse files

AIGen: Fix & improve boob size prompt logic

parent c53b3d43
No related branches found
No related tags found
1 merge request!12382Assorted AI fixes
...@@ -95,15 +95,15 @@ App.Art.GenAI.DemographicsPromptPart = class DemographicsPromptPart extends App. ...@@ -95,15 +95,15 @@ App.Art.GenAI.DemographicsPromptPart = class DemographicsPromptPart extends App.
breastShape += this.helper.isPony() ? 'flat chested' : 'flat chest'; // Pony uses a slightly different tag breastShape += this.helper.isPony() ? 'flat chested' : 'flat chest'; // Pony uses a slightly different tag
} else if (slave?.boobs < 400) { } else if (slave?.boobs < 400) {
breastShape += 'tiny '; breastShape += 'tiny ';
} else if (slave?.boobs < 500) { } else if (slave?.boobs < 500 || this.censored) {
breastShape += 'small '; breastShape += 'small ';
} else if (slave?.boobs < 650 || (this.slave.visualAge < 6 && !this.censored)) { } else if (slave?.boobs < 650 || this.slave.visualAge < 6) {
breastShape += 'medium '; breastShape += 'medium ';
} else if (slave?.boobs < 800 || (this.slave.visualAge < 10 && !this.censored)) { } else if (slave?.boobs < 800 || this.slave.visualAge < 10) {
breastShape += 'large '; breastShape += 'large ';
} else if (slave?.boobs < 1000 || (!this.censored)) { } else if (slave?.boobs < 1000 || this.slave.visualAge < 18) {
breastShape += 'huge '; breastShape += 'huge ';
} else if (slave?.boobs < 1400) { } else {//if (slave?.boobs < 1400) {
breastShape += 'giant breasts, huge '; breastShape += 'giant breasts, huge ';
} }
...@@ -147,7 +147,7 @@ App.Art.GenAI.DemographicsPromptPart = class DemographicsPromptPart extends App. ...@@ -147,7 +147,7 @@ App.Art.GenAI.DemographicsPromptPart = class DemographicsPromptPart extends App.
} }
} }
parts.push(breastShape += clothingBreastParts.join(', ')); parts.push(breastShape + clothingBreastParts.join(', '));
// display nipple if uncovered, or covered nipples if large // display nipple if uncovered, or covered nipples if large
// nipple piercings also handled here // nipple piercings also handled here
......
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