diff --git a/src/player/electiveSurgery.js b/src/player/electiveSurgery.js index cf51542fdf4ca994e1ab31f27cb174a4d92d55bf..a2d26cedbd2b836d9ff4f19712a6de88370c3fcd 100644 --- a/src/player/electiveSurgery.js +++ b/src/player/electiveSurgery.js @@ -733,7 +733,7 @@ App.UI.electiveSurgery = function() { r.push(`"It looks like you have lost the warranty seal${V.PC.counter.reHymen ? " again" : ""}. I can give you a hymen reconstruction for only <span class="cash">${cashFormat(applyDiscount(2000))}</span>. No one will notice that your vagina has ${V.PC.counter.vaginal/V.week > 10 ? "largely" : ""} been used${V.raped > 0 ? " and abused" : ""}, it will be a perfect work of craftsmanship. The surgery will also serve to make your duct narrow like"`); if (V.PC.physicalAge < 13 || V.PC.actualAge < 13) { r.push("a child like you is supposed to have."); - } else if (V.PC.visualAge) { + } else if (V.PC.visualAge < 13) { r.push("the child you look like is supposed to have."); } else if (!V.PC.pubertyXX) { r.push(`a prepubescent ${V.PC.genes === "XX" ? "girl" : "boy with vagina"} like you is supposed to have.`); @@ -759,7 +759,7 @@ App.UI.electiveSurgery = function() { r.push(`"It looks like you have lost the warranty seal${V.PC.counter.reHymen ? " again" : ""}. If you weren't pregnant, I could give you a hymen reconstruction for only <span class="cash">${cashFormat(applyDiscount(2000))}</span>. No one would notice that your vagina has ${V.PC.counter.vaginal/V.week > 10 ? "largely" : ""} been used${V.raped > 0 ? " and abused" : ""}, it would be a perfect work of craftsmanship. The surgery would also serve to make your duct narrow like"`); if (V.PC.physicalAge < 13 || V.PC.actualAge < 13) { r.push("a child like you is supposed to have."); - } else if (V.PC.visualAge) { + } else if (V.PC.visualAge < 13) { r.push("the child you look like is supposed to have."); } else if (!V.PC.pubertyXX) { r.push(`a prepubescent ${V.PC.genes === "XX" ? "girl" : "boy with vagina"} like you is supposed to have.`); diff --git a/src/player/js/PlayerState.js b/src/player/js/PlayerState.js index 20146eefcf98c6c07a784192d8491aac68637cfe..9cdbea311017f3b60767c2f3f5617950cf3eef82 100644 --- a/src/player/js/PlayerState.js +++ b/src/player/js/PlayerState.js @@ -110,8 +110,6 @@ App.Entity.PlayerActionsCountersState = class { this.birthOther = 0; /** how many units of your cum are stored away for artificially inseminating slaves */ this.storedCum = 0; - /** how many times you've been raped or forced to intercourse*/ - this.raped = 0; /** shared variables */ /** amount of milk given */ this.milk = 0;