diff --git a/src/pregmod/huskSlave.tw b/src/pregmod/huskSlave.tw index 55c1c37b93935277e07234969f770f55fa62d45f..e40c9bd8d8d433d51f6bde0eb6a8a9d599adcb66 100644 --- a/src/pregmod/huskSlave.tw +++ b/src/pregmod/huskSlave.tw @@ -55,5 +55,5 @@ Reserving a body will cost <<print cashFormat(10000)>> up front. Canceling an or <<elseif $cash < 10000>> //You lack the credits to place a body reservation.// <<else>> -[[Post body order|Main][$huskSlaveOrdered = 1, cashX(forceNeg(10000), "slaveTransfer")]] +[[Post body order|Main][$huskSlaveOrdered = 1, cashX(-10000, "slaveTransfer")]] <</if>> diff --git a/src/pregmod/huskSlaveSwapWorkaround.tw b/src/pregmod/huskSlaveSwapWorkaround.tw index 5865d484a8a7741ff3efb604f9b6caddcb1eaaf5..100addb52f9b878fad0d9ae35db3567993bff77a 100644 --- a/src/pregmod/huskSlaveSwapWorkaround.tw +++ b/src/pregmod/huskSlaveSwapWorkaround.tw @@ -4,7 +4,7 @@ "This operation is neither simple nor is it perfected. There are extreme health risks involved and no guarantee of success. Strap a slave into your remote surgery to consent to the operation. Indentured servants<<if ($incubator > 0) || ($nurseryBabies)>> and slaves with reserved children<</if>> are not eligible." <br> -//Select the slave whose mind will be transferred into the waiting husk. Amputated slaves must not be wearing prosthetics. This operation will cost <<print cashFormat(math.trunc(10000*$upgradeMultiplierMedicine))>>.// +//Select the slave whose mind will be transferred into the waiting husk. Amputated slaves must not be wearing prosthetics. This operation will cost <<print cashFormat(Math.trunc(10000*$upgradeMultiplierMedicine))>>.// <br><br> __Select an eligible slave:__ diff --git a/src/pregmod/incubator.tw b/src/pregmod/incubator.tw index 0f0f921e7a45c5cb3e882b29b472492e01228e18..3ba9c49eb97ee59c403450597ef7fef1598a0512 100644 --- a/src/pregmod/incubator.tw +++ b/src/pregmod/incubator.tw @@ -505,7 +505,7 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu <br> <<if $tanks[$i].ovaries == 0 && $tankOrgans.ovaries != 1>> <<link "Prepare ovaries">> - <<run cashX(forceNeg(10000), "incubator", $tanks[$i])>> + <<run cashX(forceNeg(10000*$upgradeMultiplierMedicine), "incubator", $tanks[$i])>> <<set _newOrgan = {type: "ovaries", weeksToCompletion: "10", ID: 0}>> <<set _newOrgan.ID = $tanks[$i].ID>> <<set $incubatorOrgans.push(_newOrgan)>> @@ -514,7 +514,7 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu <</if>> <<if $tanks[$i].dick == 0 && $tankOrgans.penis != 1>> <<link "Prepare penis">> - <<run cashX(forceNeg(5000), "incubator", $tanks[$i])>> + <<run cashX(forceNeg(5000*$upgradeMultiplierMedicine), "incubator", $tanks[$i])>> <<set _newOrgan = {type: "penis", weeksToCompletion: "5", ID: 0}>> <<set _newOrgan.ID = $tanks[$i].ID>> <<set $incubatorOrgans.push(_newOrgan)>> @@ -524,7 +524,7 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu <<if $tanks[$i].balls == 0 && $tankOrgans.testicles != 1>> | <<link "Prepare testicles">> - <<run cashX(forceNeg(5000), "incubator", $tanks[$i])>> + <<run cashX(forceNeg(5000*$upgradeMultiplierMedicine), "incubator", $tanks[$i])>> <<set _newOrgan = {type: "testicles", weeksToCompletion: "10", ID: 0}>> <<set _newOrgan.ID = $tanks[$i].ID>> <<set $incubatorOrgans.push(_newOrgan)>> @@ -534,7 +534,7 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu <<if $tanks[$i].eyes == -2 && $tankOrgans.eyes != 1>> <br>$He appears to be blind: <<link "Prepare eyes">> - <<run cashX(forceNeg(10000), "incubator", $tanks[$i])>> + <<run cashX(forceNeg(10000*$upgradeMultiplierMedicine), "incubator", $tanks[$i])>> <<set _newOrgan = {type: "eyes", weeksToCompletion: "10", ID: 0}>> <<set _newOrgan.ID = $tanks[$i].ID>> <<set $incubatorOrgans.push(_newOrgan)>> @@ -544,7 +544,7 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu <<if $tanks[$i].voice == 0 && $tankOrgans.voicebox != 1>> <br>$He appears to be mute: <<link "Prepare vocal cords">> - <<run cashX(forceNeg(5000), "incubator", $tanks[$i])>> + <<run cashX(forceNeg(5000*$upgradeMultiplierMedicine), "incubator", $tanks[$i])>> <<set _newOrgan = {type: "voicebox", weeksToCompletion: "5", ID: 0}>> <<set _newOrgan.ID = $tanks[$i].ID>> <<set $incubatorOrgans.push(_newOrgan)>> diff --git a/src/pregmod/killedSlave.tw b/src/pregmod/killedSlave.tw index 772e26181c405e0701ce91f805b93ef70aad19c4..9933056df25b2d9f01e587b5c1b9316ab38505e8 100644 --- a/src/pregmod/killedSlave.tw +++ b/src/pregmod/killedSlave.tw @@ -106,7 +106,7 @@ $activeSlave.slaveName gives an audible sigh of relief and begins to thank you p Killing one of your slave wives is @@.red;socially unacceptable.@@ In addition, your other devoted slaves are @@.gold;worried@@ that you may not respect their status. <<run clearSummaryCache()>> <br><br> - <<run repX(forceNeg(200), "event")>> + <<run repX(-200, "event")>> <<set $display = 1>> <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if $slaves[_ss].devotion > 50>> diff --git a/src/pregmod/reLegendaryWomb.tw b/src/pregmod/reLegendaryWomb.tw index 6cfd1ee097983464e6491214d774cf9956015a53..997b459c7535dd5c60c8f70c1f125ad9175abc84 100644 --- a/src/pregmod/reLegendaryWomb.tw +++ b/src/pregmod/reLegendaryWomb.tw @@ -42,7 +42,7 @@ This is a rare opportunity. The idea of a pregnancy pageant isn't new but it is <<if random(1,100) > 50>> <<replace "#result">> $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then asked to demonstrate how to pleasure a man while so heavily pregnant. Several of the judges cannot resist giving you a wink as they look $him over. $activeSlave.slaveName is unsurprisingly named best in show, and will be @@.green;remembered@@ as a breeder of the highest pedigree. As $his owner, your reputation has @@.green;also increased.@@ - <<run cashX(forceNeg(5000), "event", $activeSlave)>> + <<run cashX(-5000, "event", $activeSlave)>> <<run repX(500, "event", $activeSlave)>> <<set $activeSlave.prestige = 1>> <<set $activeSlave.prestigeDesc = "She is remembered for winning best in show as a breeder.">> @@ -52,7 +52,7 @@ This is a rare opportunity. The idea of a pregnancy pageant isn't new but it is <<else>> <<replace "#result">> $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then asked to demonstrate how to pleasure a man while so heavily pregnant. Several of the judges cannot resist giving you a wink as they look $him over, but others look disapprovingly at them; it seems some of your competitors also forwarded money to the committee. After furious wrangling, $activeSlave.slaveName loses to another mother. The public is impressed with $activeSlave.slaveName's reproductive capability anyway; as you are $his owner, your reputation has @@.green;increased@@ a little. - <<run cashX(forceNeg(5000), "event", $activeSlave)>> + <<run cashX(-5000, "event", $activeSlave)>> <<run repX(500, "event", $activeSlave)>> <</replace>> <</if>> @@ -62,7 +62,7 @@ This is a rare opportunity. The idea of a pregnancy pageant isn't new but it is <<if random(1,100) > 10>> <<replace "#result">> $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then asked to demonstrate how to pleasure a man while so heavily pregnant. After $he's put through $his paces, the most unfortunate series of accidents somehow befalls $his fellow mothers. One is taken ill, another seems drugged, and another went into labor and gave birth, disqualifying her. $activeSlave.slaveName is unsurprisingly named best in show, and will be @@.green;remembered@@ as a breeder of the highest pedigree. As $his owner, your reputation has @@.green;also increased.@@ - <<run cashX(forceNeg(10000), "event", $activeSlave)>> + <<run cashX(-10000, "event", $activeSlave)>> <<run repX(500, "event", $activeSlave)>> <<set $activeSlave.prestige = 1>> <<set $activeSlave.prestigeDesc = "She is remembered for winning best in show as a breeder.">> @@ -72,8 +72,8 @@ This is a rare opportunity. The idea of a pregnancy pageant isn't new but it is <<else>> <<replace "#result">> $activeSlave.slaveName is shown in public, closely inspected by the judging committee, and then asked to demonstrate how to pleasure a man while so heavily pregnant. You are surprised to see that the judging committee has been changed at the last minute. They choose another breeder as best in show. There are persistent @@.red;rumors@@ after the show that there was an absolute massacre of firings at the dairy organization headquarters the night before the show after it was discovered that someone, widely thought to be you, had been corrupting the judges. - <<run cashX(forceNeg(10000), "event", $activeSlave)>> - <<run repX(forceNeg(100), "event", $activeSlave)>> + <<run cashX(-10000, "event", $activeSlave)>> + <<run repX(-100, "event", $activeSlave)>> <</replace>> <</if>> <</link>> diff --git a/src/pregmod/reMaleArcologyOwner.tw b/src/pregmod/reMaleArcologyOwner.tw index 30bb6696407b487dfafd5972b1880250be9e852a..2f68f0634d6421a1b6386a82282d5da6ec3e5681 100644 --- a/src/pregmod/reMaleArcologyOwner.tw +++ b/src/pregmod/reMaleArcologyOwner.tw @@ -4,9 +4,9 @@ The more reputable you've gotten, the more rarefied your entertainments have become. Parties featuring celebrities, old world national leaders, and Free Cities arcology owners have become a nearly nightly experience for you, an expected part of your routine as one of the Free Cities' leading citizens. According to your whims and predilections, you have the choice of participating all night or just making a brief appearance at the start. The important thing is that they're here, come to pay tribute by their presence. <br><br> -Tonight there are several attendees of such stature that you must exchange pleasantries with each. The last is a fellow arcology owner, not quite up to your stature of course, but certainly worth conciliating. As usual, it's a man. He stands a touch taller than you, and is wearing one of the best-tailored suits you've ever seen. The pants are cut perfectly to draw your eyes to his bulge, and, from what you can see, he is quite toned; the jacket is masculine, and accentuates his fine chest. He is obviously well into middle age, but has made no attempt to hide the fact, allowing his graying hair to proudly display his experience. +Tonight there are several attendees of such stature that you must exchange pleasantries with each. The last is a fellow arcology owner, not quite up to your stature of course, but certainly worth conciliating. As usual, it's a man. He stands a touch taller than you, and is wearing one of the best-tailored suits you've ever seen. The pants are cut perfectly to draw your eyes to his bulge, and, from what you can see, he is quite toned; the jacket is masculine, and accentuates his fine chest. He is obviously well into middle age, but has made no attempt to hide this fact, allowing his graying hair to proudly display his experience. <br><br> -He strikes a fine balance in conversation with you, firm enough to not overpower you, yet neither aggressive nor insistent. He does not take too much of your time, but after you've moved on to your next prominent guest, you receive a brief private message from him. "Surely it's been a while since you've met someone who could make you feel like a woman," it reads. "I'm sure your slaves are fun enough, but letting one of them or some citizen be your man would be fatally stupid. I don't think anyone would look down on you for hooking up with me, though. No strings attached." You glance over at where he's standing<<if $PC.belly >= 5000>> a little surprised, men usually aren't so forthcoming with women as visibly pregnant as you are<</if>>. He's listening politely to a business proposition, and he turns his head slightly toward you, one corner of his firm mouth quirking upward. +He strikes a fine balance in conversation with you, firm enough to not overpower you, yet neither aggressive nor insistent. He does not take too much of your time, but after you've moved on to your next prominent guest, you receive a brief private message from him. "Surely it's been a while since you've met someone who could make you feel like a woman," it reads. "I'm sure your slaves are fun enough, but letting one of them or some citizen be your man would be fatally stupid. I don't think anyone would look down on you for hooking up with me, though. No strings attached." You glance over at where he's standing<<if $PC.belly >= 5000>> a little surprised; men usually aren't so forthcoming with women as visibly pregnant as you are<</if>>. He's listening politely to a business proposition, and he turns his head slightly toward you, one corner of his firm mouth quirking upward. <br><br> <span id="result"> @@ -42,7 +42,7 @@ He strikes a fine balance in conversation with you, firm enough to not overpower <<set $desc = "a thank-you note from a male arcology owner of your acquaintance that smells strongly of lust">> <<set $trinkets.push($desc)>> <<else>> - He slips out of his clothes, revealing a triathlete's tanned and sculpted body, and joins you in the bed. You direct him onto his back and hilt yourself on his dick. As you savor the feeling of being filled, you notice he doesn't quite know how to properly please a woman of your fecundity, something easily corrected. You're certain he has learned several new positions by the end of your several hour long session and after you both stumble back to the party, he gives you a deep kiss in full public view. @@.green;Your reputation has greatly improved.@@ + He slips out of his clothes, revealing a triathlete's tanned and sculpted body, and joins you in the bed. You direct him onto his back and hilt yourself on his dick. As you savor the feeling of being filled, you notice he doesn't quite know how to properly please a woman of your fecundity, something easily corrected. You're certain he has learned several new positions by the end of your several-hour-long session and after you both stumble back to the party, he gives you a deep kiss in full public view. @@.green;Your reputation has greatly improved.@@ <<run repX(500, "event")>> <<set $desc = "a flirtatious thank-you note from a male arcology owner you broke in to lusty preggo sex">> <<set $trinkets.push($desc)>> @@ -67,7 +67,7 @@ He strikes a fine balance in conversation with you, firm enough to not overpower <<set $desc = "a thank-you note from a male arcology owner of your acquaintance with an attached list of natural supplements to make your tits even bigger">> <<set $trinkets.push($desc)>> <<else>> - conversation between him and the woman trying to convince him to invest in her solar power concern. You attempts, at first, appear to be working as he begins to stutter and lose focus on the topic at hand, but he soon apologizes, wraps an arm around your shoulders, pulls you close and starts groping your enormous funbags. He returns to discussing business while using you like a stress ball and manages to seal a rather lucrative business deal. He gives you an appreciative squeeze and heads on his way, leaving you dumbfounded at what just happened. His reputation has improved significantly, while your status @@.red;as nothing more than stress relief@@ is made clear. + conversation between him and the woman trying to convince him to invest in her solar power concern. Your attempts, at first, appear to be working as he begins to stutter and lose focus on the topic at hand, but he soon apologizes, wraps an arm around your shoulders, pulls you close and starts groping your enormous funbags. He returns to discussing business while using you like a stress ball and manages to seal a rather lucrative business deal. He gives you an appreciative squeeze and heads on his way, leaving you dumbfounded at what just happened. His reputation has improved significantly, while your status @@.red;as nothing more than stress relief@@ is made clear. <<run repX(forceNeg(500), "event")>> <</if>> <<else>> diff --git a/src/pregmod/slaveSlaveSwapWorkaround.tw b/src/pregmod/slaveSlaveSwapWorkaround.tw index 22a7a8ed8af4046d3639c0a5a8516ab54d070b99..676c3860ea6972c47c26f5e938c6ed67d4bfa415 100644 --- a/src/pregmod/slaveSlaveSwapWorkaround.tw +++ b/src/pregmod/slaveSlaveSwapWorkaround.tw @@ -5,7 +5,7 @@ The surgeon awaits the pair of slaves to be strapped into the surgery. So far only $activeSlave.slaveName is prepped: <br> -//Select the slave who will be trading bodies with $him. This operation will cost <<print cashFormat(10000)>>.// +//Select the slave who will be trading bodies with $him. This operation will cost <<print cashFormat(10000*$upgradeMultiplierMedicine)>>.// <br><br> __Select an eligible slave:__ @@ -15,7 +15,7 @@ __Select an eligible slave:__ <<if $slaves[_i].fuckdoll == 0>> <<if ($slaves[_i].ID != $activeSlave.ID)>> <<set _name = SlaveFullName($slaves[_i])>> - <br>[[_name|Slave Slave Swap][$swappingSlave = $slaves[_i], cashX(forceNeg(10000), "slaveSurgery", $slaves[_i])]] + <br>[[_name|Slave Slave Swap][$swappingSlave = $slaves[_i], cashX(forceNeg(10000*$upgradeMultiplierMedicine), "slaveSurgery", $slaves[_i])]] <</if>> <</if>> <</if>>