Skip to content
Snippets Groups Projects
Commit 2d58f9fd authored by svornost's avatar svornost
Browse files

Resolve pronouns in piercing descriptions before using them in AI prompts. ...

Resolve pronouns in piercing descriptions before using them in AI prompts.  Probably shouldn't use custom descriptions at all, but...
parent 9379cf96
No related branches found
No related tags found
No related merge requests found
......@@ -5,39 +5,39 @@ App.Art.GenAI.PiercingsPromptPart = class PiercingsPromptPart extends App.Art.Ge
positive() {
let piercingParts = [];
if (this.slave.piercing.areola.weight > 0) {
let desc = this.slave.piercing.areola.desc ? (this.slave.piercing.areola.desc + ` `) : ``;
let desc = this.slave.piercing.areola.desc ? (pronounsForSlaveProp(this.slave, this.slave.piercing.areola.desc) + ` `) : ``;
piercingParts.push(`${desc}areola piercing`);
}
if (this.slave.piercing.ear.weight > 0) {
let desc = this.slave.piercing.ear.desc ? (this.slave.piercing.ear.desc + ` `) : ``;
let desc = this.slave.piercing.ear.desc ? (pronounsForSlaveProp(this.slave, this.slave.piercing.ear.desc) + ` `) : ``;
piercingParts.push(`${desc}ear piercing`);
}
if (this.slave.piercing.eyebrow.weight > 0) {
let desc = this.slave.piercing.eyebrow.desc ? (this.slave.piercing.eyebrow.desc + ` `) : ``;
let desc = this.slave.piercing.eyebrow.desc ? (pronounsForSlaveProp(this.slave, this.slave.piercing.eyebrow.desc) + ` `) : ``;
piercingParts.push(`${desc}eyebrow piercing`);
}
if (this.slave.piercing.lips.weight > 0) {
let desc = this.slave.piercing.lips.desc ? (this.slave.piercing.lips.desc + ` `) : ``;
let desc = this.slave.piercing.lips.desc ? (pronounsForSlaveProp(this.slave, this.slave.piercing.lips.desc) + ` `) : ``;
piercingParts.push(`${desc}lip piercing`);
}
if (this.slave.piercing.navel.weight > 0) {
let desc = this.slave.piercing.navel.desc ? (this.slave.piercing.navel.desc + ` `) : ``;
let desc = this.slave.piercing.navel.desc ? (pronounsForSlaveProp(this.slave, this.slave.piercing.navel.desc) + ` `) : ``;
piercingParts.push(`${desc}navel piercing`);
}
if (this.slave.piercing.nipple.weight > 0) {
let desc = this.slave.piercing.nipple.desc ? (this.slave.piercing.nipple.desc + ` `) : ``;
let desc = this.slave.piercing.nipple.desc ? (pronounsForSlaveProp(this.slave, this.slave.piercing.nipple.desc) + ` `) : ``;
piercingParts.push(`${desc}nipple piercing`);
}
if (this.slave.piercing.nose.weight > 0) {
let desc = this.slave.piercing.nose.desc ? (this.slave.piercing.nose.desc + ` `) : ``;
let desc = this.slave.piercing.nose.desc ? (pronounsForSlaveProp(this.slave, this.slave.piercing.nose.desc) + ` `) : ``;
piercingParts.push(`${desc}nose piercing`);
}
if (this.slave.piercing.tongue.weight > 0) {
let desc = this.slave.piercing.tongue.desc ? (this.slave.piercing.tongue.desc + ` `) : ``;
let desc = this.slave.piercing.tongue.desc ? (pronounsForSlaveProp(this.slave, this.slave.piercing.tongue.desc) + ` `) : ``;
piercingParts.push(`${desc}tongue piercing`);
}
if (this.slave.piercing.vagina.weight > 0) {
let desc = this.slave.piercing.vagina.desc ? (this.slave.piercing.vagina.desc + ` `) : ``;
let desc = this.slave.piercing.vagina.desc ? (pronounsForSlaveProp(this.slave, this.slave.piercing.vagina.desc) + ` `) : ``;
piercingParts.push(`${desc}labia piercing`);
}
......
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