diff --git a/js/003-data/gameVariableData.js b/js/003-data/gameVariableData.js index 268c9cd064acb863abc700cead092f12f9af85bd..67efe425c45af7cb9070bfa71d705c0054facbef 100644 --- a/js/003-data/gameVariableData.js +++ b/js/003-data/gameVariableData.js @@ -1154,7 +1154,6 @@ App.Data.resetOnNGPlus = { sexSupplyBarriers: { lowerClass: 0, middleClass: 0, upperClass: 0, topClass: 0 }, - minimumSlaveCost: 2500, facilityCost: 100, enduringRep: 1000, rep: 0, diff --git a/src/events/intro/initNationalities.tw b/src/events/intro/initNationalities.tw index 83cb415b6c8a9ac0d8800a9d7ddf6cd14df13c2a..c60f9a6317264dd2e5f8df6c63f45813fe500c0c 100644 --- a/src/events/intro/initNationalities.tw +++ b/src/events/intro/initNationalities.tw @@ -136,7 +136,6 @@ <<set $trinkets.push("a framed picture of your late Master")>> <<elseif $PC.career == "gang">> <<set $trinkets.push("your favorite handgun, whose sight has instilled fear in many")>> - <<set $minimumSlaveCost -= 1000>> <<elseif $PC.career == "BlackHat">> <<set $trinkets.push("a news clipping of your first successful live hack")>> <</if>> @@ -163,7 +162,6 @@ /* SET STARTING CONDITIONS */ -<<set $minimumSlaveCost = 3000>> <<set $enduringRep = $rep>> <<set _seed = ["east", "north", "northeast", "northwest", "south", "southeast", "southwest", "west"]>> diff --git a/src/gui/Encyclopedia/encyclopedia.tw b/src/gui/Encyclopedia/encyclopedia.tw index c361072234e3593ddbe8467dca7706f6e5c1b79e..04166f071cd7190fc0085ee0446a286e664226d5 100644 --- a/src/gui/Encyclopedia/encyclopedia.tw +++ b/src/gui/Encyclopedia/encyclopedia.tw @@ -2625,10 +2625,10 @@ LORE: INTERVIEWS <br>''anonNeo'' for spellchecking. <br>''kopareigns'' for countless text and bug fixes. Also large swathes of code improvements. <br>''Utopia'' for dirty dealings gang leader focus and updates to it. - <br>''hexall90'' for height growth drugs, incubator organ farm support and detailing, the dispensary cleanup, the joint Eugenics bad end rework with ''SFanon (blank)'', the Hippolyta Academy, and the Security Expansion Mod. + <br>''hexall90'' for height growth drugs, incubator organ farm support and detailing, the dispensary cleanup, the joint Eugenics bad end rework with ''SFanon (blank)'', the Hippolyta Academy, and the Security Expansion Mod (SecEx). <br>''sensei'' for coding in support for commas and an excellent family tree rework. <br>''laziestman'' for sexy spats. - <br>''SFanon (blank)'' for SF related work, passive player skill gain, fulfillment order, player into summary and options rewriting, general fixes, storyCaption overhauling, updating and re-organizing the in-game wiki in addition to the joint Eugenics bad end rework with ''hexall90''. Cleaned up the sidebar, now maintaining and expanding secEx. Added reminder system and warfare/engineering personal attention targets. Likes tabs. + <br>''SFanon (blank)'' for SF related work, passive player skill gain, fulfillment order, player into summary and options rewriting, general fixes, storyCaption overhauling, updating and re-organizing the in-game wiki in addition to the joint Eugenics bad end rework with ''hexall90''. Cleaned up the sidebar, now maintaining and expanding SecEx. Added warfare/engineering personal attention targets. Likes tabs. <br>''anon'' for extending FCGudder's economy reports to the other facilities. <br>''MilkAnon'' for his contributions to FCTV and the FC world in general. <br>''valen102938'' for dealing with vector art, both creating new art and utilizing unused art. diff --git a/src/js/slaveCostJS.js b/src/js/slaveCostJS.js index 8e59ee1db15287618877f9d1199d83f108f4c054..8f1282c10561f03d258f2824ff738bbcb525f6bd 100644 --- a/src/js/slaveCostJS.js +++ b/src/js/slaveCostJS.js @@ -1,3 +1,66 @@ +window.minimumSlaveCost = function() { + let value = 3000; + + if (V.terrain === "urban") { + value = 2000; + } else if (V.terrain === "marine") { + value = 2500; + } + if (V.PC.career === "gang") { + value -= 1000; + } + + const SMR = [ + 'BasicSMR', 'HealthInspectionSMR', 'EducationSMR', + 'FrigiditySMR', 'HonestySMR', + 'IntelligenceEugenicsSMR', 'HeightEugenicsSMR', 'FaceEugenicsSMR' + ]; + + for (const key of SMR) { + if (V[key]) { + value += 500; + } + } + + if (V.BasicWeightSMR) { + value += 3000; + } + if (V.BasicBeautySMR) { + value += 3000; + } + if (V.QualityBeautySMR) { + value += 10000; + } + if (V.BasicHeightSMR) { + value += 5000; + } + if (V.AdvancedHeightSMR) { + value += 10000; + } + if (V.BasicIntelligenceSMR) { + value += 2000; + } + if (V.QualityIntelligenceSMR) { + value += 10000; + } + + const FS = [ + 'FSPaternalistSMR', 'FSBodyPuristSMR', 'FSTransformationFetishistSMR', + 'FSYouthPreferentialistSMR', 'FSMaturityPreferentialistSMR', 'FSSlimnessEnthusiastSMR', + 'FSAssetExpansionistSMR', 'FSPastoralistSMR', 'FSPhysicalIdealistSMR', + 'FSHedonisticDecadenceSMR', 'FSEgyptianRevivalistSMR', 'FSEdoRevivalistSMR', + 'FSArabianRevivalistSMR', 'FSChineseRevivalistSMR' + ]; + + for (const key of FS) { + if (V.arcologies[0][key]) { + value += 500; + } + } + + return value; +}; + /** * @param {App.Entity.SlaveState} slave * @returns {Array} @@ -2606,8 +2669,8 @@ window.slaveCostBeauty = (function() { function calcCost( /* slave */ ) { cost *= multiplier * 50; cost = Number(cost) || 0; - if (cost < V.minimumSlaveCost) { - cost = V.minimumSlaveCost; + if (cost < minimumSlaveCost()) { + cost = minimumSlaveCost(); } else if (cost <= 100000) { /* do nothing */ } else if (cost <= 200000) { diff --git a/src/npc/acquisition.tw b/src/npc/acquisition.tw index c12164096968d277520adcc6d89da5421a1dec4e..82007cba84db8a6e6184620693260109600d5e22 100644 --- a/src/npc/acquisition.tw +++ b/src/npc/acquisition.tw @@ -838,15 +838,12 @@ The previous owner seems to have left in something of a hurry. <<link "Continue">> <<set $ui = "main">> <<if $terrain == "urban">> - <<set $minimumSlaveCost = 2000>> <<set $slaveCostFactor = 0.85>> <<set $menialSupplyFactor = 30000>> <<set $menialDemandFactor = -30000>> <<elseif $terrain == "marine">> - <<set $minimumSlaveCost = 2500>> <<set $slaveCostFactor = 1>> <<else>> - <<set $minimumSlaveCost = 3000>> <<set $slaveCostFactor = 1.15>> <<set $menialDemandFactor = 30000>> <<set $menialSupplyFactor = -30000>> diff --git a/src/npc/startingGirls/commitStartingGirl.tw b/src/npc/startingGirls/commitStartingGirl.tw index 48d43afc92e4d3bd127277122f5d1d002e1b69e6..80806023aeada41f8e1293b0d3adb9a943569dd2 100644 --- a/src/npc/startingGirls/commitStartingGirl.tw +++ b/src/npc/startingGirls/commitStartingGirl.tw @@ -6,14 +6,14 @@ <<set $originOveride = 0>> -<<if $cash < $minimumSlaveCost>><<goto "Acquisition">><</if>> +<<if $cash < minimumSlaveCost()>><<goto "Acquisition">><</if>> <<run cashX(forceNeg(startingSlaveCost($activeSlave)), "slaveTransfer", $activeSlave)>> <<run applyCareerBonus(getSlave($activeSlave.ID))>> <<= SlaveFullName($activeSlave)>> has been added to your starting stable of slaves. You now have <<print cashFormat($cash)>> remaining. <br> -<<if $cash >= $minimumSlaveCost>> +<<if $cash >= minimumSlaveCost()>> <br> <<link "Add another slave, starting from a new slave">> <<set $activeSlave = generateStartingSlave()>> diff --git a/src/pregmod/incubator.tw b/src/pregmod/incubator.tw index 4a3513ffd42d62f85cabad0a2b5082db0cef876f..3774409072191bc7c7ff5ccf97da72c9495ca276 100644 --- a/src/pregmod/incubator.tw +++ b/src/pregmod/incubator.tw @@ -470,7 +470,7 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu There are probes and tubes inserted inside $his reproductive organs so $incubatorName may work on them. <<set _safecc = ($tanks[$i].pregAdaptation - 5) * 2000>> <<if _safecc > 300000>> /* Some bigger size descriptions may be unreachable by normal game mechanics, so they are here just in case.*/ - $His bloated form looks more like an overinflated beachball made of the overstretched skin of $his belly with $his relative tiny body attached to its side. $He is completely dominated by it now. The process has gone too far, so $his body can't maintain its form with the belly as part of abdominal cavity. Now $his skin, tissues and muscles have stretched enough for $his belly to expand outside of any physical boundaries and appear more an attachment to $his body, rather than part of it. + $His bloated form looks more like an overinflated beachball made of the overstretched skin of $his belly with $his relative tiny body attached to its side. $He is completely dominated by it now. The process has gone too far, so $his body can't maintain its form with the belly as part of abdominal cavity. Now $his skin, tissues and muscles have stretched enough for $his belly to expand outside of any physical boundaries and appear more an attachment to $his body, rather than part of it. <<elseif _safecc > 150000>> $His body looks almost spherical, having been grotesquely inflated with the stimulator sacks inserted into $his internals. The incubator constantly maintains high pressure inside $him, forcing the displacement of $his organs and stretching skin, tissues, and muscles. Even $his chest forced to become a part of the top of $his belly, having been pushed forward from the overwhelming volume inside. <<elseif _safecc > 75000>> @@ -484,11 +484,11 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu <<elseif _safecc > 10000>> $His belly has inflated to the size of late term pregnancy; its skin shines from the tension. <<elseif _safecc > 5000>> - $His belly resembles a mid term pregnancy; it pulses slightly from the expansion and contraction of expandable sacks tipping the incubator probes. + $His belly resembles a mid term pregnancy; it pulses slightly from the expansion and contraction of expandable sacks tipping the incubator probes. <<elseif _safecc > 1500>> $His belly slightly bulges and rhythmically expands and contracts to the cycles of $his stimulation as the incubator inflates and deflates expandable sacks on its probes within $his body cavity. With the correct serums applied, this should allow it to stretch the skin, tissues, and muscles of $his belly to better to tolerate the displacement of internal organs caused by fetal growth. <</if>> - <</if>> + <</if>> <<if $tanks[$i].growTime <= 0>> <<set $readySlaves = 1>> <br>$He is ready to be released from $his tank. @@ -736,13 +736,13 @@ Target age for release: <<textbox "$targetAge" $targetAge "Incubator">> [[Minimu <br> <<if $incubatorPregAdaptationPower == 1>> Pregnancy adaptation programmed to advanced procedures. Up to triplet pregnancy should be safe for the subjects. - [[Standart|Incubator][$incubatorPregAdaptationPower = 0]] | [[Intensive|Incubator][$incubatorPregAdaptationPower = 2]] | [[Extreme|Incubator][$incubatorPregAdaptationPower = 3]] + [[Standard|Incubator][$incubatorPregAdaptationPower = 0]] | [[Intensive|Incubator][$incubatorPregAdaptationPower = 2]] | [[Extreme|Incubator][$incubatorPregAdaptationPower = 3]] <<elseif $incubatorPregAdaptationPower == 2>> Pregnancy adaptation programmed to intensive procedures. Up to octuplet pregnancy should be possible for the subjects. Warning! Side effects may occur to health and mental condition. - [[Standart|Incubator][$incubatorPregAdaptationPower = 0]] | [[Advanced|Incubator][$incubatorPregAdaptationPower = 1]] | [[Extreme|Incubator][$incubatorPregAdaptationPower = 3]] + [[Standard|Incubator][$incubatorPregAdaptationPower = 0]] | [[Advanced|Incubator][$incubatorPregAdaptationPower = 1]] | [[Extreme|Incubator][$incubatorPregAdaptationPower = 3]] <<elseif $incubatorPregAdaptationPower == 3>> Pregnancy adaptation programmed to extreme procedures. Normally unsustainable pregnancies may be possible for some subjects. Actual capacity will vary with genetic and other individal conditions. WARNING! Extreme side effects may occur to health and mental condition! - [[Standart|Incubator][$incubatorPregAdaptationPower = 0]] | [[Advanced|Incubator][$incubatorPregAdaptationPower = 1]] | [[Intensive|Incubator][$incubatorPregAdaptationPower = 2]] + [[Standard|Incubator][$incubatorPregAdaptationPower = 0]] | [[Advanced|Incubator][$incubatorPregAdaptationPower = 1]] | [[Intensive|Incubator][$incubatorPregAdaptationPower = 2]] <<else>> Pregnancy adaptation programmed to standard procedures. Normal pregnancy should be safe for subjects. [[Advanced|Incubator][$incubatorPregAdaptationPower = 1]] | [[Intensive|Incubator][$incubatorPregAdaptationPower = 2]] | [[Extreme|Incubator][$incubatorPregAdaptationPower = 3]] diff --git a/src/pregmod/incubatorReport.tw b/src/pregmod/incubatorReport.tw index 109137ed11530486b7f7a7ef09169049781e8f24..3329b12c43dec8b1aa7ec452e4ef2d72a6986d01 100644 --- a/src/pregmod/incubatorReport.tw +++ b/src/pregmod/incubatorReport.tw @@ -750,16 +750,16 @@ <<if ($incubatorPregAdaptationSetting == 1 && $tanks[_inc].genes == "XX") || ($incubatorPregAdaptationSetting == 2 && $tanks[_inc].genes == "XY") || $incubatorPregAdaptationSetting == 3>> <br> The incubator is working on adapting $his abdomen and reproductive organs for future pregnancies. - + <<set _weekAdapt = $tanks[_inc].incubatorPregAdaptationInWeek * $incubatorUpgradeSpeed>> - <<if isNaN(_weekAdapt)>> /* NaN check AFTER multiply operation, agains it result is critical here. Need to be absolutly sure about this operation, not about just tank[x] property itself. This give me two very unpleasant hours to catch this */ + <<if isNaN(_weekAdapt)>> /* NaN check AFTER multiply operation, against it result is critical here. Need to be absolutely sure about this operation, not about just tank[x] property itself. This give me two very unpleasant hours to catch this */ <<set $tanks[_inc].incubatorPregAdaptationInWeek = (15000 / 2000 - $tanks[_inc].pregAdaptation) / $tanks[_inc].growTime>> <</if>> <<set _weekAdapt = $tanks[_inc].incubatorPregAdaptationInWeek * $incubatorUpgradeSpeed>> /* Now it's should be fine */ <<set _weekAdapt *= 1 + ($incubatorReproductionSetting / 5)>> - <<set _weekAdapt *= 1 + ($tanks[_inc].hormoneBalance / 1500)>> + <<set _weekAdapt *= 1 + ($tanks[_inc].hormoneBalance / 1500)>> /*And now we done*/ - <<set $tanks[_inc].pregAdaptation += _weekAdapt>> + <<set $tanks[_inc].pregAdaptation += _weekAdapt>> /* here goes side effect from intense and extreme settings: */ <<if (random(0, 100) <= ($tanks[_inc].incubatorPregAdaptationPower - 1) * ($incubatorUpgradeSpeed / 2 + 1))>> <<switch random(1, 9)>> /*side effect selection*/ diff --git a/src/uncategorized/buySlaves.tw b/src/uncategorized/buySlaves.tw index f4018e2075ee64fdce32341239cbc1aeab8332f3..63244a6a5436675b5037631dbab80cc8d76eccd1 100644 --- a/src/uncategorized/buySlaves.tw +++ b/src/uncategorized/buySlaves.tw @@ -2,8 +2,8 @@ <<set $nextButton = "Back">> <<set $nextLink = "Main">> -<<set _minimumFive = $minimumSlaveCost * 5>> -<<set _minimumTen = $minimumSlaveCost * 10>> +<<set _minimumFive = minimumSlaveCost() * 5>> +<<set _minimumTen = minimumSlaveCost() * 10>> <h2>The Market</h2> <div> diff --git a/src/uncategorized/policies.tw b/src/uncategorized/policies.tw index ba23430cd2c7fac6cdfd4853ae0eae278b209313..e2ad282e6358f55270537580abbe54e4a28d2496 100644 --- a/src/uncategorized/policies.tw +++ b/src/uncategorized/policies.tw @@ -58,50 +58,50 @@ More policies will become available as the arcology develops.// <div class="content"> ''Basic SMR:'' the slave market is subject to very basic regulations designed to offer buyers some confidence. <<if $BasicSMR>> - @@.yellow;[[Repeal|Policies][$BasicSMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$BasicSMR = 0]]@@ <<else>> <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$BasicSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$BasicSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will help your reputation and affect slaves in the markets// <</if>> <br>''Health Inspection SMR:'' in order to be sold in the slave market, chattel must pass a straightforward health inspection. <<if $HealthInspectionSMR>> - @@.yellow;[[Repeal|Policies][$HealthInspectionSMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$HealthInspectionSMR = 0]]@@ <<else>> <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$HealthInspectionSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$HealthInspectionSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will improve the health of slaves in the markets// <</if>> <br>''Basic Education SMR:'' in order to be sold in the slave market, chattel must be put through a straightforward course of slave education. <<if $EducationSMR>> - @@.yellow;[[Repeal|Policies][$EducationSMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$EducationSMR = 0]]@@ <<else>> <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$EducationSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$EducationSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will cause all slaves who pass through the markets to become educated// <</if>> <br>''Frigidity SMR:'' in order to be sold in the slave market, slaves must have their sex drives reduced until they're virtually gone. <<if $FrigiditySMR>> - @@.yellow;[[Repeal|Policies][$FrigiditySMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$FrigiditySMR = 0]]@@ <<else>> <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$FrigiditySMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$FrigiditySMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will reduce the sex drive of slaves in the markets and annoy those looking for sex slaves// <</if>> <br>''Intelligence Eugenics SMR:'' in order to be sold in the slave market, chattel must either pass a challenging intelligence test or be sterilized. <<if $IntelligenceEugenicsSMR>> - @@.yellow;[[Repeal|Policies][$IntelligenceEugenicsSMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$IntelligenceEugenicsSMR = 0]]@@ <<else>> <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$IntelligenceEugenicsSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$IntelligenceEugenicsSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will <<if $seeDicks == 0>> @@ -115,10 +115,10 @@ More policies will become available as the arcology develops.// <br>''Height Eugenics SMR:'' in order to be sold in the slave market, chattel must either be taller than a very tall minimum height or be sterilized. <<if $HeightEugenicsSMR>> - @@.yellow;[[Repeal|Policies][$HeightEugenicsSMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$HeightEugenicsSMR = 0]]@@ <<else>> <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$HeightEugenicsSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$HeightEugenicsSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will <<if $seeDicks == 0>> @@ -132,10 +132,10 @@ More policies will become available as the arcology develops.// <br>''Facial Eugenics SMR:'' in order to be sold in the slave market, chattel must either pass a rigorous facial exam or be sterilized. <<if $FaceEugenicsSMR>> - @@.yellow;[[Repeal|Policies][$FaceEugenicsSMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$FaceEugenicsSMR = 0]]@@ <<else>> <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$FaceEugenicsSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$FaceEugenicsSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will <<if $seeDicks == 0>> @@ -149,34 +149,34 @@ More policies will become available as the arcology develops.// <br>''Gingering Prohibition SMR:'' slave sellers must contract to provide slaves honestly and without drugging to improve their behavior. <<if $HonestySMR>> - @@.yellow;[[Repeal|Policies][$HonestySMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$HonestySMR = 0]]@@ <<else>> <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$HonestySMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$HonestySMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will prevent dishonest adulteration of slaves in the markets// <</if>> <<if $BasicBeautySMR>> <br>''Basic Beauty Standards:'' no unattractive slaves may be sold in the slave markets. - @@.yellow;[[Repeal|Policies][$BasicBeautySMR = 0, $minimumSlaveCost -= 3000]]@@ + @@.yellow;[[Repeal|Policies][$BasicBeautySMR = 0]]@@ <<else>> <<if !$QualityBeautySMR>> <br>''Basic Beauty Standards:'' no unattractive slaves may be sold in the slave markets. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$BasicBeautySMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 3000]]@@ + @@.green;[[Implement|Policies][$BasicBeautySMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //This will raise the price of slaves. <</if>> <</if>> <<if $QualityBeautySMR>> <br>''Quality Beauty Standards:'' only attractive slaves may be sold in the slave markets. - @@.yellow;[[Repeal|Policies][$QualityBeautySMR = 0, $minimumSlaveCost -= 10000]]@@ + @@.yellow;[[Repeal|Policies][$QualityBeautySMR = 0]]@@ <<else>> <<if !$BasicBeautySMR>> <br>''Quality Beauty Standards:'' only attractive slaves may be sold in the slave markets. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$QualityBeautySMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 10000]]@@ + @@.green;[[Implement|Policies][$QualityBeautySMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //This will raise the price of slaves. <</if>> @@ -184,11 +184,11 @@ More policies will become available as the arcology develops.// <br>''Basic Weight Standards:'' no obese slaves may be sold in the slave markets. <<if $BasicWeightSMR>> - @@.yellow;[[Repeal|Policies][$BasicWeightSMR = 0, $minimumSlaveCost -= 3000]]@@ + @@.yellow;[[Repeal|Policies][$BasicWeightSMR = 0]]@@ <<else>> <<if $arcologies[0].FSHedonisticDecadenceSMR == 0>> <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$BasicWeightSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 3000]]@@ + @@.green;[[Implement|Policies][$BasicWeightSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //This will raise the price of slaves. <</if>> @@ -196,20 +196,20 @@ More policies will become available as the arcology develops.// <<if $BasicHeightSMR == 1>> <br>''Basic Height Standards:'' tall slaves are favored in the slave market, short slaves capable of meeting height standards via surgery must undergo it. - @@.yellow;[[Repeal|Policies][$BasicHeightSMR = 0, $minimumSlaveCost -= 5000]]@@ + @@.yellow;[[Repeal|Policies][$BasicHeightSMR = 0]]@@ <<elseif $BasicHeightSMR == -1>> <br>''Basic Height Standards:'' short slaves are favored in the slave market, tall slaves capable of meeting height standards via surgery must undergo it. - @@.yellow;[[Repeal|Policies][$BasicHeightSMR = 0, $minimumSlaveCost -= 5000]]@@ + @@.yellow;[[Repeal|Policies][$BasicHeightSMR = 0]]@@ <<else>> <<if !$AdvancedHeightSMR && !$arcologies[0].FSPetiteAdmirationSMR && !$arcologies[0].FSStatuesqueGlorificationSMR>> <br>''Basic Height Standards (Tall):'' tall slaves will be favored in the slave markets and those not quite tall enough will undergo height increasing surgery. This will not preclude the sale of short slaves, just the care of them. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$BasicHeightSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 5000]]@@ + @@.green;[[Implement|Policies][$BasicHeightSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //This will raise the price of slaves.// <br>''Basic Height Standards (Short):'' short slaves will be favored in the slave markets and those just above the cut off will undergo height reducing surgery. This will not preclude the sale of tall slaves, just the care of them. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$BasicHeightSMR = -1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 5000]]@@ + @@.green;[[Implement|Policies][$BasicHeightSMR = -1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //This will raise the price of slaves.// <</if>> @@ -217,20 +217,20 @@ More policies will become available as the arcology develops.// <<if $AdvancedHeightSMR == 1>> <br>''Quality Height Standards:'' no slaves of below average height for their age may be sold in the slave markets. - @@.yellow;[[Repeal|Policies][$AdvancedHeightSMR = 0, $minimumSlaveCost -= 5000]]@@ + @@.yellow;[[Repeal|Policies][$AdvancedHeightSMR = 0]]@@ <<elseif $AdvancedHeightSMR == -1>> <br>''Quality Height Standards:'' no slaves of above average height for their age may be sold in the slave markets. - @@.yellow;[[Repeal|Policies][$AdvancedHeightSMR = 0, $minimumSlaveCost -= 5000]]@@ + @@.yellow;[[Repeal|Policies][$AdvancedHeightSMR = 0]]@@ <<else>> <<if !$BasicHeightSMR && !$arcologies[0].FSPetiteAdmirationSMR && !$arcologies[0].FSStatuesqueGlorificationSMR>> <br>''Quality Height Standards (Tall):'' only slaves of above average height for their age may be sold in the slave markets. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$AdvancedHeightSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 10000]]@@ + @@.green;[[Implement|Policies][$AdvancedHeightSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //This will raise the price of slaves.// <br>''Quality Height Standards (Short):'' only slaves of below average height for their age may be sold in the slave markets. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$AdvancedHeightSMR = -1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 10000]]@@ + @@.green;[[Implement|Policies][$AdvancedHeightSMR = -1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //This will raise the price of slaves. <</if>> @@ -238,20 +238,20 @@ More policies will become available as the arcology develops.// <<if $BasicIntelligenceSMR>> <br>''Basic Intelligence Standards:'' no stupid slaves may be sold in the slave markets. - @@.yellow;[[Repeal|Policies][$BasicIntelligenceSMR = 0, $minimumSlaveCost -= 2000]]@@ + @@.yellow;[[Repeal|Policies][$BasicIntelligenceSMR = 0]]@@ <<elseif $QualityIntelligenceSMR>> <br>''Quality Intelligence Standards:'' only intelligent slaves may be sold in the slave markets. - @@.yellow;[[Repeal|Policies][$QualityIntelligenceSMR = 0, $minimumSlaveCost -= 10000]]@@ + @@.yellow;[[Repeal|Policies][$QualityIntelligenceSMR = 0]]@@ <<else>> <<if !$arcologies[0].FSIntellectualDependencySMR>> <br>''Basic Intelligence Standards:'' no stupid slaves may be sold in the slave markets. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$BasicIntelligenceSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 2000]]@@ + @@.green;[[Implement|Policies][$BasicIntelligenceSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //This will raise the price of slaves. <br>''Quality Intelligence Standards:'' only intelligent slaves may be sold in the slave markets. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$QualityIntelligenceSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 10000]]@@ + @@.green;[[Implement|Policies][$QualityIntelligenceSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //This will raise the price of slaves significantly. <</if>> @@ -1323,11 +1323,11 @@ More policies will become available as the arcology develops.// <<if $arcologies[0].FSDegradationistSMR == 0>> <<if $arcologies[0].FSPaternalistSMR>> <br>''Human Dignity SMR:'' the slave markets are required to treat incoming slaves reasonably well. - @@.yellow;[[Repeal|Policies][$arcologies[0].FSPaternalistSMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$arcologies[0].FSPaternalistSMR = 0]]@@ <<else>> <br>''@@.lime;Human Dignity SMR:@@'' the slave markets will be required to treat incoming slaves reasonably well. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$arcologies[0].FSPaternalistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$arcologies[0].FSPaternalistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will reduce the arcology's prosperity and help advance Paternalism// <</if>> @@ -1452,11 +1452,11 @@ More policies will become available as the arcology develops.// <<if $arcologies[0].FSBodyPuristSMR>> <br>''Body Purity SMR:'' in order to be sold in your arcology, slaves must be stripped of implants and body modifications. - @@.yellow;[[Repeal|Policies][$arcologies[0].FSBodyPuristSMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$arcologies[0].FSBodyPuristSMR = 0]]@@ <<else>> <br>''@@.lime;Body Purity SMR:@@'' in order to be sold in your arcology, slaves must be stripped of implants and body modifications. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$arcologies[0].FSBodyPuristSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$arcologies[0].FSBodyPuristSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will help advance Body Purism// <</if>> @@ -1479,12 +1479,12 @@ More policies will become available as the arcology develops.// <<if $arcologies[0].FSTransformationFetishistSMR>> <br>''Mandatory Bimbofication SMR:'' in order to be sold in your arcology, slaves must be given a set of fake tits and ass. <<if $rep >= 1000>> - @@.yellow;[[Repeal|Policies][$arcologies[0].FSTransformationFetishistSMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$arcologies[0].FSTransformationFetishistSMR = 0]]@@ <</if>> <<else>> <br>''@@.lime;Mandatory Bimbofication SMR:@@'' in order to be sold in your arcology, slaves must be given a set of fake tits and ass. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$arcologies[0].FSTransformationFetishistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$arcologies[0].FSTransformationFetishistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will help advance Transformation Fetishism// <</if>> @@ -1494,11 +1494,11 @@ More policies will become available as the arcology develops.// <<if $arcologies[0].FSYouthPreferentialistSMR>> <br>''Respect for Youth SMR:'' slave markets in your arcology are required to treat younger slaves carefully. - @@.yellow;[[Repeal|Policies][$arcologies[0].FSYouthPreferentialistSMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$arcologies[0].FSYouthPreferentialistSMR = 0]]@@ <<else>> <br>''@@.lime;Respect for Youth SMR:@@'' slave markets in your arcology are required to treat younger slaves carefully. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$arcologies[0].FSYouthPreferentialistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$arcologies[0].FSYouthPreferentialistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will help advance Youth Preferentialism// <</if>> @@ -1520,12 +1520,12 @@ More policies will become available as the arcology develops.// <<if $arcologies[0].FSMaturityPreferentialistSMR>> <br>''Respect for Maturity SMR:'' slave markets in your arcology are required to treat mature slaves properly. - @@.yellow;[[Repeal|Policies][$arcologies[0].FSMaturityPreferentialistSMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$arcologies[0].FSMaturityPreferentialistSMR = 0]]@@ <<else>> <<if $arcologies[0].FSHedonisticDecadenceSMR == 0>> <br>''@@.lime;Respect for Maturity SMR:@@'' slave markets in your arcology are required to treat mature slaves properly. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$arcologies[0].FSMaturityPreferentialistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$arcologies[0].FSMaturityPreferentialistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will help advance Maturity Preferentialism// <</if>> @@ -1636,11 +1636,11 @@ More policies will become available as the arcology develops.// <<if $arcologies[0].FSSlimnessEnthusiastSMR>> <br>''Physical Fitness SMR:'' in order to be sold in the arcology, chubby slaves must be forced to work out first. - @@.yellow;[[Repeal|Policies][$arcologies[0].FSSlimnessEnthusiastSMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$arcologies[0].FSSlimnessEnthusiastSMR = 0]]@@ <<else>> <br>''@@.lime;Physical fitness SMR:@@'' in order to be sold in the arcology, chubby slaves will have to be forced to work out first. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$arcologies[0].FSSlimnessEnthusiastSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$arcologies[0].FSSlimnessEnthusiastSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <</if>> @@ -1662,11 +1662,11 @@ More policies will become available as the arcology develops.// <<if $arcologies[0].FSAssetExpansionistSMR>> <br>''Asset Expansion SMR:'' in order to be sold in the arcology, slaves must have their assets expanded with growth hormones. - @@.yellow;[[Repeal|Policies][$arcologies[0].FSAssetExpansionistSMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$arcologies[0].FSAssetExpansionistSMR = 0]]@@ <<else>> <br>''@@.lime;Asset Expansion SMR:@@'' in order to be sold in the arcology, slaves will have to have their assets expanded with growth hormones. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$arcologies[0].FSAssetExpansionistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$arcologies[0].FSAssetExpansionistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <</if>> <</if>> @@ -1675,11 +1675,11 @@ More policies will become available as the arcology develops.// <<if $arcologies[0].FSPastoralistSMR>> <br>''Universal Slave Lactation SMR:'' in order to be sold in the arcology, slaves must be actively lactating. - @@.yellow;[[Repeal|Policies][$arcologies[0].FSPastoralistSMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$arcologies[0].FSPastoralistSMR = 0]]@@ <<else>> <br>''@@.lime;Universal Slave Lactation SMR:@@'' in order to be sold in the arcology, slaves must be actively lactating. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$arcologies[0].FSPastoralistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$arcologies[0].FSPastoralistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will help advance Pastoralism// <</if>> @@ -1700,11 +1700,11 @@ More policies will become available as the arcology develops.// <<if $arcologies[0].FSPhysicalIdealist >= 40>> <<if $arcologies[0].FSPhysicalIdealistSMR>> <br>''Lifting SMR:'' in order to be sold in the arcology, slaves must be <<if $arcologies[0].FSPhysicalIdealistLaw>>toned<<else>>bulked<</if>>. - @@.yellow;[[Repeal|Policies][$arcologies[0].FSPhysicalIdealistSMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$arcologies[0].FSPhysicalIdealistSMR = 0]]@@ <<else>> <br>''@@.lime;Lifting SMR:@@'' in order to be sold in the arcology, slaves will have to be <<if $arcologies[0].FSPhysicalIdealistLaw>>toned<<else>>bulked<</if>>. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$arcologies[0].FSPhysicalIdealistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$arcologies[0].FSPhysicalIdealistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will help advance Physical Idealism// <</if>> @@ -1744,7 +1744,7 @@ More policies will become available as the arcology develops.// <<if $arcologies[0].FSMaturityPreferentialistSMR == 0>> <br>''@@.lime;Corpulence SMR:@@'' in order to be sold in the arcology, slaves must be plump. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$arcologies[0].FSHedonisticDecadenceSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$arcologies[0].FSHedonisticDecadenceSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will help advance Hedonistic Decadence// <</if>> @@ -1880,11 +1880,11 @@ More policies will become available as the arcology develops.// <<if $arcologies[0].FSEgyptianRevivalist >= 40>> <<if $arcologies[0].FSEgyptianRevivalistSMR>> <br>''Egyptian Cultural Induction SMR:'' in order to be sold in the arcology, slaves must be instructed in the cultural tenets of ancient Egypt. - @@.yellow;[[Repeal|Policies][$arcologies[0].FSEgyptianRevivalistSMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$arcologies[0].FSEgyptianRevivalistSMR = 0]]@@ <<else>> <br>''@@.lime;Egyptian Cultural Induction SMR:@@'' in order to be sold in the arcology, slaves must be instructed in the cultural tenets of ancient Egypt. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$arcologies[0].FSEgyptianRevivalistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$arcologies[0].FSEgyptianRevivalistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will help advance Egyptian Revivalism// <</if>> @@ -1905,11 +1905,11 @@ More policies will become available as the arcology develops.// <<if $arcologies[0].FSEdoRevivalist >= 40>> <<if $arcologies[0].FSEdoRevivalistSMR>> <br>''Edo Cultural Induction SMR:'' in order to be sold in the arcology, slaves must be instructed in the cultural tenets of Edo Japan. - @@.yellow;[[Repeal|Policies][$arcologies[0].FSEdoRevivalistSMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$arcologies[0].FSEdoRevivalistSMR = 0]]@@ <<else>> <br>''@@.lime;Edo Cultural Induction SMR:@@'' in order to be sold in the arcology, slaves must be instructed in the cultural tenets of Edo Japan. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$arcologies[0].FSEdoRevivalistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$arcologies[0].FSEdoRevivalistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will help advance Edo Revivalism// <</if>> @@ -1930,11 +1930,11 @@ More policies will become available as the arcology develops.// <<if $arcologies[0].FSArabianRevivalist >= 40>> <<if $arcologies[0].FSArabianRevivalistSMR>> <br>''Arabian Cultural Induction SMR:'' in order to be sold in the arcology, slaves must be instructed in the cultural tenets of the old Caliphate. - @@.yellow;[[Repeal|Policies][$arcologies[0].FSArabianRevivalistSMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$arcologies[0].FSArabianRevivalistSMR = 0]]@@ <<else>> <br>''@@.lime;Arabian Cultural Induction SMR:@@'' in order to be sold in the arcology, slaves must be instructed in the cultural tenets of the old Caliphate. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$arcologies[0].FSArabianRevivalistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$arcologies[0].FSArabianRevivalistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will help advance Arabian Revivalism// <</if>> @@ -1955,11 +1955,11 @@ More policies will become available as the arcology develops.// <<if $arcologies[0].FSChineseRevivalist >= 40>> <<if $arcologies[0].FSChineseRevivalistSMR>> <br>''Imperial Cultural Induction SMR:'' in order to be sold in the arcology, slaves must be instructed in the cultural tenets of Imperial China. - @@.yellow;[[Repeal|Policies][$arcologies[0].FSChineseRevivalistSMR = 0, $minimumSlaveCost -= 500]]@@ + @@.yellow;[[Repeal|Policies][$arcologies[0].FSChineseRevivalistSMR = 0]]@@ <<else>> <br>''@@.lime;Imperial Cultural Induction SMR:@@'' in order to be sold in the arcology, slaves must be instructed in the cultural tenets of Imperial China. <<if $rep >= 1000>> - @@.green;[[Implement|Policies][$arcologies[0].FSChineseRevivalistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies"), $minimumSlaveCost += 500]]@@ + @@.green;[[Implement|Policies][$arcologies[0].FSChineseRevivalistSMR = 1, cashX(-5000, "policies"), repX(-1000, "policies")]]@@ <</if>> <br> //Will help advance Chinese Revivalism// <</if>> diff --git a/src/uncategorized/randomNonindividualEvent.tw b/src/uncategorized/randomNonindividualEvent.tw index 957c30ecc40f2239a9ac0411d88ef6b8378dee5e..22bcbcd49499fe049522d10bb14e93dd2efcc83f 100644 --- a/src/uncategorized/randomNonindividualEvent.tw +++ b/src/uncategorized/randomNonindividualEvent.tw @@ -1290,7 +1290,7 @@ <</if>> <</if>> - <<if $minimumSlaveCost > 3000 && (random(1,2) == 1 || $cheatMode)>> + <<if minimumSlaveCost() > 3000 && (random(1,2) == 1 || $cheatMode)>> <<set $events.push("RE shipping container")>> <</if>> diff --git a/src/uncategorized/seExpiration.tw b/src/uncategorized/seExpiration.tw index e21508be2c836400072bdc2dfd0e916deb1dace7..6a5d5cc47662078b2e137cf10c2d2618190034ab 100644 --- a/src/uncategorized/seExpiration.tw +++ b/src/uncategorized/seExpiration.tw @@ -116,7 +116,7 @@ $activeSlave.slaveName's indentured servitude is ending this week, meaning that <<elseif ($activeSlave.devotion > 50) && ($activeSlave.trust > 50)>> <<set _slaveCost = Math.trunc((_slaveCost*0.5)/500)*500>> - <<set _slaveCost = Math.clamp(_slaveCost, $minimumSlaveCost, 100000)>> + <<set _slaveCost = Math.clamp(_slaveCost, minimumSlaveCost(), 100000)>> $His feelings on this are quite mixed, since $he has come to feel that $he has a place under you. <<if !hasAnyLegs($activeSlave)>>