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

this calc should be more realistic

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