Skip to content
Snippets Groups Projects
Commit 3dfef4f8 authored by Noa3's avatar Noa3 :speech_balloon:
Browse files

some finetuning to have the lora not run wild

parent 6a4c9023
No related branches found
No related tags found
1 merge request!12074Seperated Fake Tits prompt to help working with other lora's
......@@ -6,25 +6,25 @@ App.Art.GenAI.HugeFakeTitsPromptPart = class HugeFakeTitsPromptPart extends App.
if (this.slave.visualAge < 18 && V.aiAgeFilter){
return undefined;
}
else if (App.Art.GenAI.sdClient.hasLora("hugefaketits1")) {
else if (App.Art.GenAI.sdClient.hasLora("hugefaketits1") || App.Art.GenAI.sdClient.hasLora("hugefaketits1-000006")) {
if (this.slave.boobsImplant >= 2000) {
return `<lora:hugefaketits1:1>`;
return `<lora:hugefaketits1:0.5>`;
} else if (this.slave.boobsImplant >= 1800) {
return `<lora:hugefaketits1:0.9>`;
return `<lora:hugefaketits1:0.45>`;
} else if (this.slave.boobsImplant >= 1600) {
return `<lora:hugefaketits1:0.8>`;
return `<lora:hugefaketits1:0.4>`;
} else if (this.slave.boobsImplant >= 1400) {
return `<lora:hugefaketits1:0.7>`;
return `<lora:hugefaketits1:0.35>`;
} else if (this.slave.boobsImplant >= 1200) {
return `<lora:hugefaketits1:0.6>`;
return `<lora:hugefaketits1:0.3>`;
} else if (this.slave.boobsImplant >= 1000) {
return `<lora:hugefaketits1:0.5>`;
return `<lora:hugefaketits1:0.25>`;
} else if (this.slave.boobsImplant >= 800) {
return `<lora:hugefaketits1:0.4>`;
return `<lora:hugefaketits1:0.2>`;
} else if (this.slave.boobsImplant >= 600) {
return `<lora:hugefaketits1:0.3>`;
return `<lora:hugefaketits1:0.15>`;
} else if (this.slave.boobsImplant >= 400) {
return `<lora:hugefaketits1:0.2>`;
return `<lora:hugefaketits1:0.1>`;
}
}
return undefined;
......
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