diff --git a/src/js/utils.js b/src/js/utils.js index eca740c543cbcfbf5729fa9fbd766671d7152e05..2885e290d0761c5f6b1eb9c9931eab8e8409c562 100644 --- a/src/js/utils.js +++ b/src/js/utils.js @@ -297,3 +297,30 @@ App.Utils.topologicalSort = function(keys, edges) { return sorted; }; + +window.getBestSlaves = function({part, count=3, smallest=false, filter=null}={}){ + if(!_.isFunction(part)) { + const partName = part; + part = (slave)=>slave[partName]; + } + const sortMethod = smallest ? (left, right) => left.value - right.value : (left, right) => right.value - left.value; + if(filter == null) { + filter = ()=>true; + } + return V.slaves.map((slave, index)=>({slave, index})) + .filter(slaveInfo=>filter(slaveInfo.slave)) + .map(slaveInfo=>{ slaveInfo.value = part(slaveInfo.slave); return slaveInfo; }) + .sort(sortMethod) + .slice(0, count); +}; +window.getBestSlavesIndices= function(info) { + return getBestSlaves(info).map(slaveInfo => slaveInfo.index); +}; + +/* +//Example +getBestSlaves({part:"butt", count: 5}); +getBestSlaves({part:"boobs"});//defaults to top 3 +getBestSlaves({part:"dick", smallest:true, filter:(slave)=>slave.dick > 0});//defaults to top 3 +getBestSlaves({part:slave=>slave.intelligence+slave.intelligenceImplant}); +*/ diff --git a/src/uncategorized/buySlaves.tw b/src/uncategorized/buySlaves.tw index ca877f6acc363d06b8bf0f2dda91a78de71f1156..79e38b6e93267fe94115015edfc2bf4591cf4eaf 100644 --- a/src/uncategorized/buySlaves.tw +++ b/src/uncategorized/buySlaves.tw @@ -5,540 +5,610 @@ <<set _minimumFive = $minimumSlaveCost * 5>> <<set _minimumTen = $minimumSlaveCost * 10>> -__Sex Slave Purchase Options__ -<br> -//There are many different organizations to purchase slaves from, but many of them are selective about their customers and will only sell to you if you are reputable.// - - -<br><br> - -__Market status__<br> -<<if ($slaveCostFactor > 1.1)>> - @@.yellow;There is a bull market for slaves; the price of slaves is very high.@@ -<<elseif ($slaveCostFactor > 1)>> - @@.yellow;The slave market is bullish; the price of slaves is high.@@ -<<elseif ($slaveCostFactor < 0.9)>> - @@.yellow;There is a bear market for slaves; the price of slaves is very low.@@ -<<elseif ($slaveCostFactor < 1)>> - @@.yellow;The slave market is bearish; the price of slaves is low.@@ -<<else>> - The slave market is stable; the price of slaves is average. -<</if>> -<br> -Slave demand is -<<if $menialDemandFactor <= -35000>> - @@.red;''extremely low''@@ -<<elseif $menialDemandFactor <= -20000>> - @@.red;''very low''@@ -<<elseif $menialDemandFactor <= 0>> - @@.yellow;''weak''@@ -<<elseif $menialDemandFactor >= 35000>> - @@.green;''extremely high''@@ -<<elseif $menialDemandFactor >= 20000>> - @@.green;''very high''@@ -<<else>> - @@.yellow;''strong''@@ -<</if>> -<<if $deltaDemand > 0>> - and @@.green;''improving''@@ -<<elseif $deltaDemand < 0>> - and @@.red;''decreasing''@@ -<</if>> -<<if $deltaDemand != 0>> - <<if $demandTimer - $elapsedDemandTimer < 3>> - but it might change soon - <</if>> -<</if>> -<<if ($cheatMode) && ($cheatModeM)>> - <span id="menialDemandFactor"> - @@.yellowgreen;Slave Demand@@ - | <<print $menialDemandFactor>> - </span> - <<set _TmenialDemandFactor = $menialDemandFactor>> - <<textbox "_TmenialDemandFactor" _TmenialDemandFactor>> - <<link "Apply">> - <<set $menialDemandFactor = Math.clamp(Math.trunc(Number(_TmenialDemandFactor)),-50000,50000) || $menialDemandFactor, $cheater = 1>> - <<replace "#menialDemandFactor">> - @@.yellowgreen; Slave Demand@@ - | <<print $menialDemandFactor>> - <</replace>> - <</link>> -<</if>> -<br> -Slave supply is -<<if $menialSupplyFactor <= -35000>> - @@.green;''extremely low''@@ -<<elseif $menialSupplyFactor <= -20000>> - @@.green;''very low''@@ -<<elseif $menialSupplyFactor <= 0>> - @@.yellow;''weak''@@ -<<elseif $menialSupplyFactor >= 35000>> - @@.red;''extremely high''@@ -<<elseif $menialSupplyFactor >= 20000>> - @@.red;''very high''@@ -<<else>> - @@.yellow;''strong''@@ -<</if>> -<<if $deltaSupply > 0>> - and @@.red;''improving''@@ -<<elseif $deltaSupply < 0>> - and @@.green;''decreasing''@@ -<</if>> -<<if $deltaSupply != 0>> - <<if $supplyTimer - $elapsedDemandTimer < 3>> - but it might change soon - <</if>> -<</if>> -<<if ($cheatMode) && ($cheatModeM)>> - <span id="menialSupplyFactor"> - @@.yellowgreen;Slave Supply@@ - | <<print $menialSupplyFactor>> - </span> - <<set _TmenialSupplyFactor = $menialSupplyFactor>> - <<textbox "_TmenialSupplyFactor" _TmenialSupplyFactor>> - <<link "Apply">> - <<set $menialSupplyFactor = Math.clamp(Math.trunc(Number(_TmenialSupplyFactor)),-50000,50000) || $menialSupplyFactor, $cheater = 1>> - <<replace "#menialSupplyFactor">> - @@.yellowgreen; Slave Supply@@ - | <<print $menialSupplyFactor>> - <</replace>> - <</link>> -<</if>> - -<br> - -<<if $corpIncorporated != 0>> - <br>[[Corporate Market][$slavesSeen += 1]] | <<if $corpMarket == 1>>//Slaves from your corporation purchased at a discounted rate.//<<else>>//Slaves from your corporation//<</if>> - <<if $cash > _minimumFive>> - [[(x5)|Bulk Slave Generate][$slaveMarket = "corporate", $introType = "bulk", $numSlaves = 5]] | - <</if>> - <<if $cash > _minimumTen>> - [[(x10)|Bulk Slave Generate][$slaveMarket = "corporate", $introType = "bulk", $numSlaves = 10]] | - <</if>> -<</if>> - -<br>[[The Flesh Heap|Slave Markets][$slaveMarket = "heap", $slavesSeen += 1]] | //Broken and discarded slaves. Near useless, but cheap. No longer does bulk orders after complaints.// - -<<if $bodyswapAnnounced == 1>> - <br>[[Order a custom husk slave from the Flesh Heap|Husk Slave]] | //Will need to be used on arrival.// -<</if>> - -<<if ($rep > 500)>> - <br>[[Kidnappers' Market|Slave Markets][$slaveMarket = "kidnappers", $slavesSeen += 1]] | - <<if $cash > _minimumFive>> - [[(x5)|Bulk Slave Generate][$slaveMarket = "kidnappers", $introType = "bulk", $numSlaves = 5]] | - <</if>> - <<if $cash > _minimumTen>> - [[(x10)|Bulk Slave Generate][$slaveMarket = "kidnappers", $introType = "bulk", $numSlaves = 10]] | +<h2>The Market</h2> +<div> + //There are many different organizations to purchase slaves from, but many of them are selective about their customers and will only sell to you if you are reputable.// +</div> + +<h3>Market status</h3> +<div> + <<if ($slaveCostFactor > 1.1)>> + @@.yellow;There is a bull market for slaves; the price of slaves is very high.@@ + <<elseif ($slaveCostFactor > 1)>> + @@.yellow;The slave market is bullish; the price of slaves is high.@@ + <<elseif ($slaveCostFactor < 0.9)>> + @@.yellow;There is a bear market for slaves; the price of slaves is very low.@@ + <<elseif ($slaveCostFactor < 1)>> + @@.yellow;The slave market is bearish; the price of slaves is low.@@ + <<else>> + The slave market is stable; the price of slaves is average. <</if>> - //Slaves will tend to be low quality and resistant.// -<</if>> +</div> -<br>''Neighboring Arcologies:'' //The arcology's prosperity and culture will affect slaves who have lived there.// -<<for _i = 0; _i < $arcologies.length; _i++>> - <<if $arcologies[_i].direction != 0>> - <br> <<print '[[Slaves from|Slave Markets][$slaveMarket = "neighbor", $numArcology = ' + _i + ']]'>> - '' $arcologies[_i].name'' +<h2>Sex Slave Purchase Options</h2> +<div> + <<if $corpIncorporated != 0>> + [[Corporate Market][$slavesSeen += 1]] | <<if $cash > _minimumFive>> - | <<print '[[(x5)|Bulk Slave Generate][$slaveMarket = "neighbor", $introType = "bulk", $numSlaves = 5, $numArcology = '+_i+']]'>> + [[(x5)|Bulk Slave Generate][$slaveMarket = "corporate", $introType = "bulk", $numSlaves = 5]] | <</if>> <<if $cash > _minimumTen>> - | <<print '[[(x10)|Bulk Slave Generate][$slaveMarket = "neighbor", $introType = "bulk", $numSlaves = 10, $numArcology = '+_i+']]'>> + [[(x10)|Bulk Slave Generate][$slaveMarket = "corporate", $introType = "bulk", $numSlaves = 10]] | <</if>> + <<if $corpMarket == 1>>//Slaves from your corporation purchased at a discounted rate.//<<else>>//Slaves from your corporation//<</if>> <</if>> -<</for>> - -<<if ($rep > 1000)>> - <br>[[Runaway Hunters' Market|Slave Markets][$slaveMarket = "hunters", $slavesSeen += 1]] | - <<if $cash > _minimumFive>> - [[(x5)|Bulk Slave Generate][$slaveMarket = "hunters", $introType = "bulk", $numSlaves = 5]] | - <</if>> - <<if $cash > _minimumTen>> - [[(x10)|Bulk Slave Generate][$slaveMarket = "hunters", $introType = "bulk", $numSlaves = 10]] | - <</if>> - //Slaves will tend to be skilled but rebellious.// -<</if>> - -<<if ($rep > 1500)>> - <br>[[Indentures Market|Slave Markets][$slaveMarket = "indentures", $slavesSeen += 1]] | - <<if $cash > _minimumFive>> - [[(x5)|Bulk Slave Generate][$slaveMarket = "indentures", $introType = "bulk", $numSlaves = 5]] | - <</if>> - <<if $cash > _minimumTen>> - [[(x10)|Bulk Slave Generate][$slaveMarket = "indentures", $introType = "bulk", $numSlaves = 10]] | - <</if>> - //Temporary enslavement and restrictions on treatment.// -<</if>> - -<<if ($rep > 2000)>> - <br>[[Raiders' Market|Slave Markets][$slaveMarket = "raiders", $slavesSeen += 1]] | - <<if $cash > _minimumFive>> - [[(x5)|Bulk Slave Generate][$slaveMarket = "raiders", $introType = "bulk", $numSlaves = 5]] | - <</if>> - <<if $cash > _minimumTen>> - [[(x10)|Bulk Slave Generate][$slaveMarket = "raiders", $introType = "bulk", $numSlaves = 10]] | - <</if>> - //Slaves will always be sold immediately upon reaching majority.// -<</if>> +</div> -<<if ($pedo_mode == 1 || ($minimumSlaveAge <= 13 && $minimumSlaveAge <= $fertilityAge)) && ($rep > 3000)>> - <br>[[Raiders' Black Market|Slave Markets][$slaveMarket = "underage raiders", $slavesSeen += 1]] | - <<if $cash > _minimumFive>> - [[(x5)|Bulk Slave Generate][$slaveMarket = "underage raiders", $introType = "bulk", $numSlaves = 5]] | - <</if>> - <<if $cash > _minimumTen>> - [[(x10)|Bulk Slave Generate][$slaveMarket = "underage raiders", $introType = "bulk", $numSlaves = 10]] | - <</if>> - //Very young slaves.// -<</if>> +<div> + [[The Flesh Heap|Slave Markets][$slaveMarket = "heap", $slavesSeen += 1]] | //Broken and discarded slaves. Near useless, but cheap. No longer does bulk orders after complaints.// +</div> -<<if ($rep > 4000)>> - <br>[[Trainers' Market|Slave Markets][$slaveMarket = "trainers", $slavesSeen += 1]] | - <<if $cash > _minimumFive>> - [[(x5)|Bulk Slave Generate][$slaveMarket = "trainers", $introType = "bulk", $numSlaves = 5]] | +<div> + <<if $bodyswapAnnounced == 1>> + [[Order a custom husk slave from the Flesh Heap|Husk Slave]] | //Will need to be used on arrival.// <</if>> - <<if $cash > _minimumTen>> - [[(x10)|Bulk Slave Generate][$slaveMarket = "trainers", $introType = "bulk", $numSlaves = 10]] | - <</if>> - //Slaves will tend to be good quality and obedient.// +</div> - <<if $arcologies[0].FSPaternalist == "unset">> - <br>[[Wetware CPUs|Slave Markets][$slaveMarket = "wetware", $slavesSeen += 1]] | +<div> + <<if ($rep > 500)>> + [[Kidnappers' Market|Slave Markets][$slaveMarket = "kidnappers", $slavesSeen += 1]] | <<if $cash > _minimumFive>> - [[(x5)|Bulk Slave Generate][$slaveMarket = "wetware", $introType = "bulk", $numSlaves = 5]] | + [[(x5)|Bulk Slave Generate][$slaveMarket = "kidnappers", $introType = "bulk", $numSlaves = 5]] | <</if>> <<if $cash > _minimumTen>> - [[(x10)|Bulk Slave Generate][$slaveMarket = "wetware", $introType = "bulk", $numSlaves = 10]] | + [[(x10)|Bulk Slave Generate][$slaveMarket = "kidnappers", $introType = "bulk", $numSlaves = 10]] | <</if>> - //Ruined bodies but keen minds. Requires some TLC, but offers outstanding training at a discount.// - <<else>> - <br>//The paternalistic nature of your society blocks the abusive Wetware CPU manufactures from operating within your arcology.// + //Slaves will tend to be low quality and resistant.// <</if>> -<</if>> +</div> -<<if ($rep > 5000)>> - <<set $weeklyMarket = $prisonCircuit[$prisonCircuitIndex]>> - <br>[[Prisoner Sale|Criminal Market][$slavesSeen += 1]] | - <<if $cash > _minimumFive>> - [[(x5)|Bulk Slave Generate][$slaveMarket = $weeklyMarket, $introType = "bulk", $numSlaves = 5]] | - <</if>> - <<if $cash > _minimumTen>> - [[(x10)|Bulk Slave Generate][$slaveMarket = $weeklyMarket, $introType = "bulk", $numSlaves = 10]] | +<div> + ''Neighboring Arcologies:'' //The arcology's prosperity and culture will affect slaves who have lived there.// +</div> +<<for _i = 0; _i < $arcologies.length; _i++>> + <<if $arcologies[_i].direction != 0>> + <div class="indent"> + <<capture _i>>[[Slaves from|Slave Markets][$slaveMarket = "neighbor", $numArcology = ' + _i + ']]<</capture>> + '' $arcologies[_i].name'' + <<if $cash > _minimumFive>> + | <<capture _i>>[[(x5)|Bulk Slave Generate][$slaveMarket = "neighbor", $introType = "bulk", $numSlaves = 5, $numArcology = '+_i+']]<</capture>> + <</if>> + <<if $cash > _minimumTen>> + | <<capture _i>>[[(x10)|Bulk Slave Generate][$slaveMarket = "neighbor", $introType = "bulk", $numSlaves = 10, $numArcology = '+_i+']]<</capture>> + <</if>> + </div> <</if>> - This week - <<switch $weeklyMarket>> - <<case "low tier criminals">> - a minor prison is selling inmates. - //Slaves will tend to be low to mid quality with few redeeming factors.// - <<case "gangs and smugglers">> - a major prison is selling hardened criminals. - //Slaves will tend to be low quality and difficult but may prove useful once broken.// - <<case "white collar">> - a white collar prison is selling inmates. - //Slaves will tend to be medium to high quality with a variety of useful backgrounds.// - <<case "military prison">> - a military prison is selling inmates. - //Slaves will tend to be high quality but defiant.// - <</switch>> -<</if>> +<</for>> -<<if ($rep > 6000)>> - <br>''Slave Schools:'' //High prices; will be young and healthy.// - <<if ($seeDicks != 100)>> - <br> [[The Slavegirl School][$slavesSeen += 1]] | +<div> + <<if ($rep > 1000)>> + [[Runaway Hunters' Market|Slave Markets][$slaveMarket = "hunters", $slavesSeen += 1]] | <<if $cash > _minimumFive>> - [[(x5)|Bulk Slave Generate][$slaveMarket = "TSS", $introType = "bulk", $numSlaves = 5]] | + [[(x5)|Bulk Slave Generate][$slaveMarket = "hunters", $introType = "bulk", $numSlaves = 5]] | <</if>> <<if $cash > _minimumTen>> - [[(x10)|Bulk Slave Generate][$slaveMarket = "TSS", $introType = "bulk", $numSlaves = 10]] | + [[(x10)|Bulk Slave Generate][$slaveMarket = "hunters", $introType = "bulk", $numSlaves = 10]] | <</if>> - //Straightforward slaves with good training.//<<if $TSS.schoolSale == 1>> //@@.yellow;Offering your first purchase at half price this week.@@//<</if>> + //Slaves will tend to be skilled but rebellious.// + <</if>> +</div> - <br> [[Growth Research Institute][$slavesSeen += 1]] | +<div> + <<if ($rep > 1500)>> + [[Indentures Market|Slave Markets][$slaveMarket = "indentures", $slavesSeen += 1]] | <<if $cash > _minimumFive>> - [[(x5)|Bulk Slave Generate][$slaveMarket = "GRI", $introType = "bulk", $numSlaves = 5]] | + [[(x5)|Bulk Slave Generate][$slaveMarket = "indentures", $introType = "bulk", $numSlaves = 5]] | <</if>> <<if $cash > _minimumTen>> - [[(x10)|Bulk Slave Generate][$slaveMarket = "GRI", $introType = "bulk", $numSlaves = 10]] | + [[(x10)|Bulk Slave Generate][$slaveMarket = "indentures", $introType = "bulk", $numSlaves = 10]] | <</if>> - //Poorly trained slaves with huge assets.//<<if $GRI.schoolSale == 1>> //@@.yellow;Offering your first purchase at half price this week.@@//<</if>> + //Temporary enslavement and restrictions on treatment.// + <</if>> +</div> - <br> [[St. Claver Preparatory][$slavesSeen += 1]] | +<div> + <<if ($rep > 2000)>> + [[Raiders' Market|Slave Markets][$slaveMarket = "raiders", $slavesSeen += 1]] | <<if $cash > _minimumFive>> - [[(x5)|Bulk Slave Generate][$slaveMarket = "SCP", $introType = "bulk", $numSlaves = 5]] | + [[(x5)|Bulk Slave Generate][$slaveMarket = "raiders", $introType = "bulk", $numSlaves = 5]] | <</if>> <<if $cash > _minimumTen>> - [[(x10)|Bulk Slave Generate][$slaveMarket = "SCP", $introType = "bulk", $numSlaves = 10]] | + [[(x10)|Bulk Slave Generate][$slaveMarket = "raiders", $introType = "bulk", $numSlaves = 10]] | <</if>> - //Slaves with basic training and solid implants.//<<if $SCP.schoolSale == 1>> //@@.yellow;Offering your first purchase at half price this week.@@//<</if>> + //Slaves will always be sold immediately upon reaching majority.// + <</if>> +</div> - <br> [[The Cattle Ranch][$slavesSeen += 1]] | +<div> + <<if ($pedo_mode == 1 || ($minimumSlaveAge <= 13 && $minimumSlaveAge <= $fertilityAge)) && ($rep > 3000)>> + [[Raiders' Black Market|Slave Markets][$slaveMarket = "underage raiders", $slavesSeen += 1]] | <<if $cash > _minimumFive>> - [[(x5)|Bulk Slave Generate][$slaveMarket = "TCR", $introType = "bulk", $numSlaves = 5]] | + [[(x5)|Bulk Slave Generate][$slaveMarket = "underage raiders", $introType = "bulk", $numSlaves = 5]] | <</if>> <<if $cash > _minimumTen>> - [[(x10)|Bulk Slave Generate][$slaveMarket = "TCR", $introType = "bulk", $numSlaves = 10]] | + [[(x10)|Bulk Slave Generate][$slaveMarket = "underage raiders", $introType = "bulk", $numSlaves = 10]] | <</if>> - //Mentally conditioned free-range cowgirls.//<<if $TCR.schoolSale == 1>> //@@.yellow;Offering your first purchase at half price this week.@@//<</if>> + //Very young slaves.// + <</if>> +</div> - <br> [[The Hippolyta Academy][$slavesSeen += 1]] | +<<if ($rep > 4000)>> + <div> + [[Trainers' Market|Slave Markets][$slaveMarket = "trainers", $slavesSeen += 1]] | <<if $cash > _minimumFive>> - [[(x5)|Bulk Slave Generate][$slaveMarket = "HA", $introType = "bulk", $numSlaves = 5]] | + [[(x5)|Bulk Slave Generate][$slaveMarket = "trainers", $introType = "bulk", $numSlaves = 5]] | <</if>> <<if $cash > _minimumTen>> - [[(x10)|Bulk Slave Generate][$slaveMarket = "HA", $introType = "bulk", $numSlaves = 10]] | - <</if>> - //High quality slaves of powerful physique and refined skills.//<<if $HA.schoolSale == 1>> //@@.yellow;Offering your first purchase at half price this week.@@//<</if>> - <</if>> - <<if ($seeDicks != 0)>> - <br> [[L'École des Enculées][$slavesSeen += 1]] | - <<if $cash > _minimumFive>> - [[(x5)|Bulk Slave Generate][$slaveMarket = "LDE", $introType = "bulk", $numSlaves = 5]] | + [[(x10)|Bulk Slave Generate][$slaveMarket = "trainers", $introType = "bulk", $numSlaves = 10]] | <</if>> - <<if $cash > _minimumTen>> - [[(x10)|Bulk Slave Generate][$slaveMarket = "LDE", $introType = "bulk", $numSlaves = 10]] | + //Slaves will tend to be good quality and obedient.// + </div> + + <div> + <<if $arcologies[0].FSPaternalist == "unset">> + [[Wetware CPUs|Slave Markets][$slaveMarket = "wetware", $slavesSeen += 1]] | + <<if $cash > _minimumFive>> + [[(x5)|Bulk Slave Generate][$slaveMarket = "wetware", $introType = "bulk", $numSlaves = 5]] | + <</if>> + <<if $cash > _minimumTen>> + [[(x10)|Bulk Slave Generate][$slaveMarket = "wetware", $introType = "bulk", $numSlaves = 10]] | + <</if>> + //Ruined bodies but keen minds. Requires some TLC, but offers outstanding training at a discount.// + <<else>> + //The paternalistic nature of your society blocks the abusive Wetware CPU manufactures from operating within your arcology.// <</if>> - //Slaves optimized and trained for anal.//<<if $LDE.schoolSale == 1>> //@@.yellow;Offering your first purchase at half price this week.@@//<</if>> + </div> +<</if>> - <br> [[The Gymnasium-Academy][$slavesSeen += 1]] | +<div> + <<if ($rep > 5000)>> + <<set $weeklyMarket = $prisonCircuit[$prisonCircuitIndex]>> + [[Prisoner Sale|Criminal Market][$slavesSeen += 1]] | <<if $cash > _minimumFive>> - [[(x5)|Bulk Slave Generate][$slaveMarket = "TGA", $introType = "bulk", $numSlaves = 5]] | + [[(x5)|Bulk Slave Generate][$slaveMarket = $weeklyMarket, $introType = "bulk", $numSlaves = 5]] | <</if>> <<if $cash > _minimumTen>> - [[(x10)|Bulk Slave Generate][$slaveMarket = "TGA", $introType = "bulk", $numSlaves = 10]] | + [[(x10)|Bulk Slave Generate][$slaveMarket = $weeklyMarket, $introType = "bulk", $numSlaves = 10]] | <</if>> - //Well trained slaves with dicks.//<<if $TGA.schoolSale == 1>> //@@.yellow;Offering your first purchase at half price this week.@@//<</if>> + This week + <<switch $weeklyMarket>> + <<case "low tier criminals">> + a minor prison is selling inmates. + //Slaves will tend to be low to mid quality with few redeeming factors.// + <<case "gangs and smugglers">> + a major prison is selling hardened criminals. + //Slaves will tend to be low quality and difficult but may prove useful once broken.// + <<case "white collar">> + a white collar prison is selling inmates. + //Slaves will tend to be medium to high quality with a variety of useful backgrounds.// + <<case "military prison">> + a military prison is selling inmates. + //Slaves will tend to be high quality but defiant.// + <</switch>> + <</if>> +<div> - <br> [[The Futanari Sisters][$slavesSeen += 1]] | +<<if ($rep > 6000)>> + <div> + ''Slave Schools:'' //High prices; will be young and healthy.// + </div> + <<if ($seeDicks != 100)>> + <div class="indent"> + [[The Slavegirl School][$slavesSeen += 1]] | + <<if $cash > _minimumFive>> + [[(x5)|Bulk Slave Generate][$slaveMarket = "TSS", $introType = "bulk", $numSlaves = 5]] | + <</if>> + <<if $cash > _minimumTen>> + [[(x10)|Bulk Slave Generate][$slaveMarket = "TSS", $introType = "bulk", $numSlaves = 10]] | + <</if>> + //Straightforward slaves with good training.//<<if $TSS.schoolSale == 1>> //@@.yellow;Offering your first purchase at half price this week.@@//<</if>> + </div> + + <div class="indent"> + [[Growth Research Institute][$slavesSeen += 1]] | + <<if $cash > _minimumFive>> + [[(x5)|Bulk Slave Generate][$slaveMarket = "GRI", $introType = "bulk", $numSlaves = 5]] | + <</if>> + <<if $cash > _minimumTen>> + [[(x10)|Bulk Slave Generate][$slaveMarket = "GRI", $introType = "bulk", $numSlaves = 10]] | + <</if>> + //Poorly trained slaves with huge assets.//<<if $GRI.schoolSale == 1>> //@@.yellow;Offering your first purchase at half price this week.@@//<</if>> + </div> + + <div class="indent"> + [[St. Claver Preparatory][$slavesSeen += 1]] | + <<if $cash > _minimumFive>> + [[(x5)|Bulk Slave Generate][$slaveMarket = "SCP", $introType = "bulk", $numSlaves = 5]] | + <</if>> + <<if $cash > _minimumTen>> + [[(x10)|Bulk Slave Generate][$slaveMarket = "SCP", $introType = "bulk", $numSlaves = 10]] | + <</if>> + //Slaves with basic training and solid implants.//<<if $SCP.schoolSale == 1>> //@@.yellow;Offering your first purchase at half price this week.@@//<</if>> + </div> + + <div class="indent"> + [[The Cattle Ranch][$slavesSeen += 1]] | + <<if $cash > _minimumFive>> + [[(x5)|Bulk Slave Generate][$slaveMarket = "TCR", $introType = "bulk", $numSlaves = 5]] | + <</if>> + <<if $cash > _minimumTen>> + [[(x10)|Bulk Slave Generate][$slaveMarket = "TCR", $introType = "bulk", $numSlaves = 10]] | + <</if>> + //Mentally conditioned free-range cowgirls.//<<if $TCR.schoolSale == 1>> //@@.yellow;Offering your first purchase at half price this week.@@//<</if>> + </div> + + <div class="indent"> + [[The Hippolyta Academy][$slavesSeen += 1]] | + <<if $cash > _minimumFive>> + [[(x5)|Bulk Slave Generate][$slaveMarket = "HA", $introType = "bulk", $numSlaves = 5]] | + <</if>> + <<if $cash > _minimumTen>> + [[(x10)|Bulk Slave Generate][$slaveMarket = "HA", $introType = "bulk", $numSlaves = 10]] | + <</if>> + //High quality slaves of powerful physique and refined skills.//<<if $HA.schoolSale == 1>> //@@.yellow;Offering your first purchase at half price this week.@@//<</if>> + </div> + <</if>> + <<if ($seeDicks != 0)>> + <div class="indent"> + [[L'École des Enculées][$slavesSeen += 1]] | + <<if $cash > _minimumFive>> + [[(x5)|Bulk Slave Generate][$slaveMarket = "LDE", $introType = "bulk", $numSlaves = 5]] | + <</if>> + <<if $cash > _minimumTen>> + [[(x10)|Bulk Slave Generate][$slaveMarket = "LDE", $introType = "bulk", $numSlaves = 10]] | + <</if>> + //Slaves optimized and trained for anal.//<<if $LDE.schoolSale == 1>> //@@.yellow;Offering your first purchase at half price this week.@@//<</if>> + </div> + + <div class="indent"> + [[The Gymnasium-Academy][$slavesSeen += 1]] | + <<if $cash > _minimumFive>> + [[(x5)|Bulk Slave Generate][$slaveMarket = "TGA", $introType = "bulk", $numSlaves = 5]] | + <</if>> + <<if $cash > _minimumTen>> + [[(x10)|Bulk Slave Generate][$slaveMarket = "TGA", $introType = "bulk", $numSlaves = 10]] | + <</if>> + //Well trained slaves with dicks.//<<if $TGA.schoolSale == 1>> //@@.yellow;Offering your first purchase at half price this week.@@//<</if>> + </div> + + <div class="indent"> + [[The Futanari Sisters][$slavesSeen += 1]] | + <<if $cash > _minimumFive>> + [[(x5)|Bulk Slave Generate][$slaveMarket = "TFS", $introType = "bulk", $numSlaves = 5]] | + <</if>> + <<if $cash > _minimumTen>> + [[(x10)|Bulk Slave Generate][$slaveMarket = "TFS", $introType = "bulk", $numSlaves = 10]] | + <</if>> + //Highly skilled, highly feminine hermaphrodites.//<<if $TFS.schoolSale == 1>> //@@.yellow;Offering your first purchase at half price this week.@@//<</if>> + </div> + <</if>> + <div class="indent"> + [[Nueva Universidad de Libertad][$slavesSeen += 1]] | <<if $cash > _minimumFive>> - [[(x5)|Bulk Slave Generate][$slaveMarket = "TFS", $introType = "bulk", $numSlaves = 5]] | + [[(x5)|Bulk Slave Generate][$slaveMarket = "NUL", $introType = "bulk", $numSlaves = 5]] | <</if>> <<if $cash > _minimumTen>> - [[(x10)|Bulk Slave Generate][$slaveMarket = "TFS", $introType = "bulk", $numSlaves = 10]] | + [[(x10)|Bulk Slave Generate][$slaveMarket = "NUL", $introType = "bulk", $numSlaves = 10]] | <</if>> - //Highly skilled, highly feminine hermaphrodites.//<<if $TFS.schoolSale == 1>> //@@.yellow;Offering your first purchase at half price this week.@@//<</if>> - <</if>> - <br> [[Nueva Universidad de Libertad][$slavesSeen += 1]] | - <<if $cash > _minimumFive>> - [[(x5)|Bulk Slave Generate][$slaveMarket = "NUL", $introType = "bulk", $numSlaves = 5]] | - <</if>> - <<if $cash > _minimumTen>> - [[(x10)|Bulk Slave Generate][$slaveMarket = "NUL", $introType = "bulk", $numSlaves = 10]] | - <</if>> - //Androgynous slaves lacking genitalia.//<<if $NUL.schoolSale == 1>> //@@.yellow;Offering your first purchase at half price this week.@@//<</if>> + //Androgynous slaves lacking genitalia.//<<if $NUL.schoolSale == 1>> //@@.yellow;Offering your first purchase at half price this week.@@//<</if>> + </div> <</if>> -<<if ($arcologies[0].FSDegradationist != "unset")>> - <br>//The Slave Shelter does not place slaves into Degradationist arcologies.// -<<elseif ($shelterAbuse > 10)>> - <br>//The Slave Shelter has banned you due to dark rumors about you.// -<<elseif ($shelterAbuse > 5)>> - <br>//The Slave Shelter has banned you due to rumors that you resell its slaves.// -<<elseif ($shelterSlaveBought == 1)>> - <br>//The Slave Shelter will not offer another slave for placement until next week.// -<<elseif ($rep > 7000)>> - <br>[[Take in a shelter slave|Slave Shelter]] | //Presents charity cases for a nominal fee.// -<</if>> +<div> + <<if ($arcologies[0].FSDegradationist != "unset")>> + //The Slave Shelter does not place slaves into Degradationist arcologies.// + <<elseif ($shelterAbuse > 10)>> + //The Slave Shelter has banned you due to dark rumors about you.// + <<elseif ($shelterAbuse > 5)>> + //The Slave Shelter has banned you due to rumors that you resell its slaves.// + <<elseif ($shelterSlaveBought == 1)>> + >//The Slave Shelter will not offer another slave for placement until next week.// + <<elseif ($rep > 7000)>> + [[Take in a shelter slave|Slave Shelter]] | //Presents charity cases for a nominal fee.// + <</if>> +</div> -<<if ($rep > 8000)>> - <br>[[Consult the household liquidator|Household Liquidator][$slavesSeen += 2]] | //Offers slaves close to one another at a very high price.// -<</if>> +<div> + <<if ($rep > 8000)>> + [[Consult the household liquidator|Household Liquidator][$slavesSeen += 2]] | //Offers slaves close to one another at a very high price.// + <</if>> +</div> <<if ($rep > 1000)>> - <br>[[Place a special order|Custom Slave]] | //Customizable but very expensive.// - <br>[[Place a fulfillment order|JobFulfillmentCenterOrder]] | //Fills leaderships roles for a price.// + <div>[[Place a special order|Custom Slave]] | //Customizable but very expensive.//</div> + <div>[[Place a fulfillment order|JobFulfillmentCenterOrder]] | //Fills leaderships roles for a price.//</div> <</if>> <<if ($rep > 12000)>> - <br>[[Attend an auction of a prestigious slave|Prestigious Slave]] | //Variable and expensive.// + <div>[[Attend an auction of a prestigious slave|Prestigious Slave]] | //Variable and expensive.//</div> <</if>> <<if ($propOutcome == 1)>> - <br>[[Attend an auction of other Elite's stock|Elite Slave]] | //Limited and very expensive.// + <div>[[Attend an auction of other Elite's stock|Elite Slave]] | //Limited and very expensive.//</div> <</if>> <<if ($rep > 14000)>> - <br>[[Acquire other slaveowners' stock|Special Slave]] | //Variable and expensive.// -<</if>> - -<<if ($rep <= 500)>> - <br>//You are not reputable enough to buy kidnapped slaves.// -<<elseif ($rep <= 1000)>> - <br>//You are not reputable enough to buy recaptured slaves.// -<<elseif ($rep <= 1500)>> - <br>//You are not reputable enough to buy indentured servants.// -<<elseif ($rep <= 2000)>> - <br>//You are not reputable enough to buy teenaged slaves.// -<<elseif ($pedo_mode == 1 || ($minimumSlaveAge <= 13 && $minimumSlaveAge <= $fertilityAge)) && ($rep <= 3000)>> - <br>//You are not reputable enough to buy underaged slaves.// -<<elseif ($rep <= 4000)>> - <br>//You are not reputable enough to buy trained slaves.// -<<elseif ($rep <= 5000)>> - <br>//You are not reputable enough to buy prison slaves.// -<<elseif ($rep <= 6000)>> - <br>//You are not reputable enough to acquire fresh school slaves.// -<<elseif ($rep <= 7000)>> - <br>//You are not reputable enough to take in Shelter slaves.// -<<elseif ($rep <= 8000)>> - <br>//You are not reputable enough to consult the household liquidator.// -<<elseif ($rep <= 1000)>> - <br>//You are not reputable enough to order custom slaves.// -<<elseif ($rep <= 12000)>> - <br>//You are not reputable enough to bid on prestigious slaves.// -<<elseif ($rep <= 14000)>> - <br>//You are not reputable enough to acquire other slaveowners' stock.// -<<else>> - <br>You are so reputable that you can access all of the Free Cities' slaving markets. -<</if>> - -<br><br> - -__Menial Slaves__ - -<br> -<<= MenialPopCap()>> -The parts of your arcology you own can house a total of <<= num($PopCap)>> menial slaves. + <div>[[Acquire other slaveowners' stock|Special Slave]] | //Variable and expensive.//</div> +<</if>> + +<div> + <<if ($rep <= 500)>> + //You are not reputable enough to buy kidnapped slaves.// + <<elseif ($rep <= 1000)>> + //You are not reputable enough to buy recaptured slaves.// + <<elseif ($rep <= 1500)>> + //You are not reputable enough to buy indentured servants.// + <<elseif ($rep <= 2000)>> + //You are not reputable enough to buy teenaged slaves.// + <<elseif ($pedo_mode == 1 || ($minimumSlaveAge <= 13 && $minimumSlaveAge <= $fertilityAge)) && ($rep <= 3000)>> + //You are not reputable enough to buy underaged slaves.// + <<elseif ($rep <= 4000)>> + //You are not reputable enough to buy trained slaves.// + <<elseif ($rep <= 5000)>> + //You are not reputable enough to buy prison slaves.// + <<elseif ($rep <= 6000)>> + //You are not reputable enough to acquire fresh school slaves.// + <<elseif ($rep <= 7000)>> + //You are not reputable enough to take in Shelter slaves.// + <<elseif ($rep <= 8000)>> + //You are not reputable enough to consult the household liquidator.// + <<elseif ($rep <= 1000)>> + //You are not reputable enough to order custom slaves.// + <<elseif ($rep <= 12000)>> + //You are not reputable enough to bid on prestigious slaves.// + <<elseif ($rep <= 14000)>> + //You are not reputable enough to acquire other slaveowners' stock.// + <<else>> + You are so reputable that you can access all of the Free Cities' slaving markets. + <</if>> +</div> + + + <h2>Selling slaves</h2> + <div> + While you are at the market, you may want to [[look at your own underperforming slaves|Underperforming Slaves]]. + </div> + +<h2>Menial Slaves</h2> + +<div> + Slave demand is + <<if $menialDemandFactor <= -35000>> + @@.red;''extremely low''@@ + <<elseif $menialDemandFactor <= -20000>> + @@.red;''very low''@@ + <<elseif $menialDemandFactor <= 0>> + @@.yellow;''weak''@@ + <<elseif $menialDemandFactor >= 35000>> + @@.green;''extremely high''@@ + <<elseif $menialDemandFactor >= 20000>> + @@.green;''very high''@@ + <<else>> + @@.yellow;''strong''@@ + <</if>> + <<if $deltaDemand > 0>> + and @@.green;''improving''@@ + <<elseif $deltaDemand < 0>> + and @@.red;''decreasing''@@ + <</if>> + <<if $deltaDemand != 0>> + <<if $demandTimer - $elapsedDemandTimer < 3>> + but it might change soon + <</if>> + <</if>> + <<if ($cheatMode) && ($cheatModeM)>> + <span id="menialDemandFactor"> + @@.yellowgreen;Slave Demand@@ + | <<print $menialDemandFactor>> + </span> + <<set _TmenialDemandFactor = $menialDemandFactor>> + <<textbox "_TmenialDemandFactor" _TmenialDemandFactor>> + <<link "Apply">> + <<set $menialDemandFactor = Math.clamp(Math.trunc(Number(_TmenialDemandFactor)),-50000,50000) || $menialDemandFactor, $cheater = 1>> + <<replace "#menialDemandFactor">> + @@.yellowgreen; Slave Demand@@ + | <<print $menialDemandFactor>> + <</replace>> + <</link>> + <</if>> +</div> + +<div> + Slave supply is + <<if $menialSupplyFactor <= -35000>> + @@.green;''extremely low''@@ + <<elseif $menialSupplyFactor <= -20000>> + @@.green;''very low''@@ + <<elseif $menialSupplyFactor <= 0>> + @@.yellow;''weak''@@ + <<elseif $menialSupplyFactor >= 35000>> + @@.red;''extremely high''@@ + <<elseif $menialSupplyFactor >= 20000>> + @@.red;''very high''@@ + <<else>> + @@.yellow;''strong''@@ + <</if>> + <<if $deltaSupply > 0>> + and @@.red;''improving''@@ + <<elseif $deltaSupply < 0>> + and @@.green;''decreasing''@@ + <</if>> + <<if $deltaSupply != 0>> + <<if $supplyTimer - $elapsedDemandTimer < 3>> + but it might change soon + <</if>> + <</if>> + <<if ($cheatMode) && ($cheatModeM)>> + <span id="menialSupplyFactor"> + @@.yellowgreen;Slave Supply@@ + | <<print $menialSupplyFactor>> + </span> + <<set _TmenialSupplyFactor = $menialSupplyFactor>> + <<textbox "_TmenialSupplyFactor" _TmenialSupplyFactor>> + <<link "Apply">> + <<set $menialSupplyFactor = Math.clamp(Math.trunc(Number(_TmenialSupplyFactor)),-50000,50000) || $menialSupplyFactor, $cheater = 1>> + <<replace "#menialSupplyFactor">> + @@.yellowgreen; Slave Supply@@ + | <<print $menialSupplyFactor>> + <</replace>> + <</link>> + <</if>> +</div> + +<div> + <<= MenialPopCap()>> + The parts of your arcology you own can house a total of <<= num($PopCap)>> menial slaves. +</div> <<set _menialPrice = menialSlaveCost()>> <<set _bulkMax = $PopCap-$menials-$fuckdolls-$menialBioreactors>> -<br> -<<if $menials > 1>> - You own <<print num(Math.trunc($menials))>> menial slaves. -<<elseif $menials > 0>> - You own one menial slave. -<<else>> - You do not own any menial slaves. -<</if>> -The market price of menials is <<print cashFormat(_menialPrice)>>. -<<set _optionsBreak = 0>> -<<if _bulkMax > 0 && $cash > _menialPrice>> - [[Buy|Buy Slaves][$menials+=1,$menialSupplyFactor-=1,cashX(forceNeg(_menialPrice), "menialTransfer")]] - <<if $cash > (menialSlaveCost(10))*10>> - [[(x10)|Buy Slaves][$menials+=10,$menialSupplyFactor-=10,cashX(forceNeg((menialSlaveCost(10))*10), "menialTransfer")]] - <</if>> - <<if $cash > (menialSlaveCost(100))*100>> - [[(x100)|Buy Slaves][$menials+=100,$menialSupplyFactor-=100,cashX(forceNeg((menialSlaveCost(100))*100), "menialTransfer")]] - <</if>> - <<if $cash > (_menialPrice+1)*2>> - <<set _menialBulkPremium = Math.trunc(1 + Math.clamp($cash/_menialPrice,0,_bulkMax)/400)>> - [[(max)|Buy Slaves][$menials+=Math.trunc(Math.clamp($cash/(_menialPrice+_menialBulkPremium),0,_bulkMax)),$menialSupplyFactor-=Math.trunc(Math.clamp($cash/(_menialPrice+_menialBulkPremium),0,_bulkMax)),cashX(forceNeg(Math.trunc(Math.clamp($cash/(_menialPrice+_menialBulkPremium),0,_bulkMax))*(_menialPrice+_menialBulkPremium)), "menialTransfer")]] +<div> + <<if $menials > 1>> + You own <<print num(Math.trunc($menials))>> menial slaves. + <<elseif $menials > 0>> + You own one menial slave. + <<else>> + You do not own any menial slaves. <</if>> - //Bulk transactions may require offering a premium.// - <<set _optionsBreak = 1>> -<</if>> -<<if $menials >= 1>> - <<if _optionsBreak>>|<</if>> - [[Sell|Buy Slaves][$menials-=1,$menialDemandFactor-=1,cashX(_menialPrice, "menialTransfer")]] - <<if $menials >= 10>> - [[(x10)|Buy Slaves][$menials-=10,$menialDemandFactor-=10,cashX(((menialSlaveCost(-10))*10), "menialTransfer")]] - <<if $menials >= 100>> - [[(x100)|Buy Slaves][$menials-=100,$menialDemandFactor-=100,cashX(((menialSlaveCost(-100))*100), "menialTransfer")]] + The market price of menials is <<print cashFormat(_menialPrice)>>. + <<set _optionsBreak = 0>> + <<if _bulkMax > 0 && $cash > _menialPrice>> + [[Buy|Buy Slaves][$menials+=1,$menialSupplyFactor-=1,cashX(forceNeg(_menialPrice), "menialTransfer")]] + <<if $cash > (menialSlaveCost(10))*10>> + [[(x10)|Buy Slaves][$menials+=10,$menialSupplyFactor-=10,cashX(forceNeg((menialSlaveCost(10))*10), "menialTransfer")]] + <</if>> + <<if $cash > (menialSlaveCost(100))*100>> + [[(x100)|Buy Slaves][$menials+=100,$menialSupplyFactor-=100,cashX(forceNeg((menialSlaveCost(100))*100), "menialTransfer")]] <</if>> + <<if $cash > (_menialPrice+1)*2>> + <<set _menialBulkPremium = Math.trunc(1 + Math.clamp($cash/_menialPrice,0,_bulkMax)/400)>> + [[(max)|Buy Slaves][$menials+=Math.trunc(Math.clamp($cash/(_menialPrice+_menialBulkPremium),0,_bulkMax)),$menialSupplyFactor-=Math.trunc(Math.clamp($cash/(_menialPrice+_menialBulkPremium),0,_bulkMax)),cashX(forceNeg(Math.trunc(Math.clamp($cash/(_menialPrice+_menialBulkPremium),0,_bulkMax))*(_menialPrice+_menialBulkPremium)), "menialTransfer")]] + <</if>> + //Bulk transactions may require offering a premium.// + <<set _optionsBreak = 1>> <</if>> - [[(all)|Buy Slaves][cashX(($menials*(menialSlaveCost(-$menials))), "menialTransfer"),$menialDemandFactor-=$menials,$menials = 0]] - <<if $arcologies[0].FSPaternalist == "unset">> - <<if $arcadeUpgradeFuckdolls > 0>> - <<set _fconvertCost = 100>> - <br> [[Convert to Fuckdoll|Buy Slaves][$menials-=1,$fuckdolls+=1,cashX(forceNeg(_fconvertCost), "menialTransfer")]] - <<if $menials >= 10>> - [[(x10)|Buy Slaves][$menials-=10,$fuckdolls+=10,cashX(forceNeg(10*(_fconvertCost)), "menialTransfer")]] - <<if $menials >= 100>> - [[(x100)|Buy Slaves][$menials-=100,$fuckdolls+=100,cashX(forceNeg(100*(_fconvertCost)), "menialTransfer")]] - <</if>> + <<if $menials >= 1>> + <<if _optionsBreak>>|<</if>> + [[Sell|Buy Slaves][$menials-=1,$menialDemandFactor-=1,cashX(_menialPrice, "menialTransfer")]] + <<if $menials >= 10>> + [[(x10)|Buy Slaves][$menials-=10,$menialDemandFactor-=10,cashX(((menialSlaveCost(-10))*10), "menialTransfer")]] + <<if $menials >= 100>> + [[(x100)|Buy Slaves][$menials-=100,$menialDemandFactor-=100,cashX(((menialSlaveCost(-100))*100), "menialTransfer")]] <</if>> - [[(all)|Buy Slaves][$fuckdolls+=$menials,cashX(forceNeg((_fconvertCost)*($menials)), "menialTransfer"),$menials=0]] - //Conversion costs <<print cashFormat(_fconvertCost)>> each// <</if>> - <<if $dairyFeedersUpgrade > 0>> - <br> [[Convert to Bioreactor|Buy Slaves][$menials-=1,$menialBioreactors+=1,cashX(-100, "menialTransfer")]] - <<if $menials >= 10>> - [[(x10)|Buy Slaves][$menials-=10,$menialBioreactors+=10,cashX(-1000, "menialTransfer")]] - <<if $menials >= 100>> - [[(x100)|Buy Slaves][$menials-=100,$menialBioreactors+=100,cashX(-10000, "menialTransfer")]] - <</if>> + [[(all)|Buy Slaves][cashX(($menials*(menialSlaveCost(-$menials))), "menialTransfer"),$menialDemandFactor-=$menials,$menials = 0]] + <<if $arcologies[0].FSPaternalist == "unset">> + <<if $arcadeUpgradeFuckdolls > 0>> + <<set _fconvertCost = 100>> + <div class="indent"> + [[Convert to Fuckdoll|Buy Slaves][$menials-=1,$fuckdolls+=1,cashX(forceNeg(_fconvertCost), "menialTransfer")]] + <<if $menials >= 10>> + [[(x10)|Buy Slaves][$menials-=10,$fuckdolls+=10,cashX(forceNeg(10*(_fconvertCost)), "menialTransfer")]] + <<if $menials >= 100>> + [[(x100)|Buy Slaves][$menials-=100,$fuckdolls+=100,cashX(forceNeg(100*(_fconvertCost)), "menialTransfer")]] + <</if>> + <</if>> + [[(all)|Buy Slaves][$fuckdolls+=$menials,cashX(forceNeg((_fconvertCost)*($menials)), "menialTransfer"),$menials=0]] + //Conversion costs <<print cashFormat(_fconvertCost)>> each// + </div> + <</if>> + <<if $dairyFeedersUpgrade > 0>> + <div class="indent"> + [[Convert to Bioreactor|Buy Slaves][$menials-=1,$menialBioreactors+=1,cashX(-100, "menialTransfer")]] + <<if $menials >= 10>> + [[(x10)|Buy Slaves][$menials-=10,$menialBioreactors+=10,cashX(-1000, "menialTransfer")]] + <<if $menials >= 100>> + [[(x100)|Buy Slaves][$menials-=100,$menialBioreactors+=100,cashX(-10000, "menialTransfer")]] + <</if>> + <</if>> + [[(all)|Buy Slaves][$menialBioreactors+=$menials,cashX(forceNeg(500*$menials), "menialTransfer"),$menials=0]] + //Conversion costs <<print cashFormat(500)>> each// + </div> <</if>> - [[(all)|Buy Slaves][$menialBioreactors+=$menials,cashX(forceNeg(500*$menials), "menialTransfer"),$menials=0]] - //Conversion costs <<print cashFormat(500)>> each// <</if>> <</if>> -<</if>> - -<<if $fuckdolls > 1>> - <br>You own <<print num(Math.trunc($fuckdolls))>> standard Fuckdolls. -<<elseif $fuckdolls > 0>> - <br>You own one standard Fuckdoll. -<<elseif $arcologies[0].FSPaternalist == "unset">> - <br>You do not own any standard Fuckdolls. -<</if>> -<<if ($fuckdolls > 0) || ($arcologies[0].FSPaternalist == "unset")>> - The market price of standard Fuckdolls is <<print cashFormat(_menialPrice)>>. - <<set _optionsBreak = 0>> - <<if _bulkMax > 0>> - <<if $arcologies[0].FSPaternalist == "unset" && $cash > _menialPrice>> - [[Buy|Buy Slaves][$fuckdolls+=1,$menialSupplyFactor-=1,cashX(forceNeg(_menialPrice), "fuckdollsTransfer")]] - <<if $cash > menialSlaveCost(10)*10>> - [[(x10)|Buy Slaves][$fuckdolls+=10,$menialSupplyFactor-=10,cashX(forceNeg(menialSlaveCost(10)*10), "fuckdollsTransfer")]] - <</if>> - <<if $cash > menialSlaveCost(100)*100>> - [[(x100)|Buy Slaves][$fuckdolls+=100,$menialSupplyFactor-=100,cashX(forceNeg(menialSlaveCost(100)*100), "fuckdollsTransfer")]] +</div> + +<div> + <<if $fuckdolls > 1>> + You own <<print num(Math.trunc($fuckdolls))>> standard Fuckdolls. + <<elseif $fuckdolls > 0>> + You own one standard Fuckdoll. + <<elseif $arcologies[0].FSPaternalist == "unset">> + You do not own any standard Fuckdolls. + <</if>> + <<if ($fuckdolls > 0) || ($arcologies[0].FSPaternalist == "unset")>> + The market price of standard Fuckdolls is <<print cashFormat(_menialPrice)>>. + <<set _optionsBreak = 0>> + <<if _bulkMax > 0>> + <<if $arcologies[0].FSPaternalist == "unset" && $cash > _menialPrice>> + [[Buy|Buy Slaves][$fuckdolls+=1,$menialSupplyFactor-=1,cashX(forceNeg(_menialPrice), "fuckdollsTransfer")]] + <<if $cash > menialSlaveCost(10)*10>> + [[(x10)|Buy Slaves][$fuckdolls+=10,$menialSupplyFactor-=10,cashX(forceNeg(menialSlaveCost(10)*10), "fuckdollsTransfer")]] + <</if>> + <<if $cash > menialSlaveCost(100)*100>> + [[(x100)|Buy Slaves][$fuckdolls+=100,$menialSupplyFactor-=100,cashX(forceNeg(menialSlaveCost(100)*100), "fuckdollsTransfer")]] + <</if>> + <<if $cash > ((_menialPrice+1)*2)>> + [[(max)|Buy Slaves][$fuckdolls+=Math.trunc(Math.clamp($cash/_menialPrice,0,_bulkMax)),$menialSupplyFactor-=Math.trunc(Math.clamp($cash/_menialPrice,0,_bulkMax)),cashX(forceNeg(Math.trunc(Math.clamp($cash/_menialPrice,0,_bulkMax))*_menialPrice), "fuckdollsTransfer")]] + <</if>> + //Bulk transactions may require offering a premium.// + <<set _optionsBreak = 1>> <</if>> - <<if $cash > ((_menialPrice+1)*2)>> - [[(max)|Buy Slaves][$fuckdolls+=Math.trunc(Math.clamp($cash/_menialPrice,0,_bulkMax)),$menialSupplyFactor-=Math.trunc(Math.clamp($cash/_menialPrice,0,_bulkMax)),cashX(forceNeg(Math.trunc(Math.clamp($cash/_menialPrice,0,_bulkMax))*_menialPrice), "fuckdollsTransfer")]] + <</if>> + <<if $fuckdolls >= 1>> + <<if _optionsBreak>>|<</if>> + [[Sell|Buy Slaves][$fuckdolls-=1,$menialDemandFactor-=1,cashX(_menialPrice, "fuckdollsTransfer")]] + <<if $fuckdolls >= 10>> + [[(x10)|Buy Slaves][$fuckdolls-=10,$menialDemandFactor-=10,cashX((menialSlaveCost(-10)*10), "fuckdollsTransfer")]] + <<if $fuckdolls >= 100>> + [[(x100)|Buy Slaves][$fuckdolls-=100,$menialDemandFactor-=100,cashX((menialSlaveCost(-100)*100), "fuckdollsTransfer")]] <</if>> - //Bulk transactions may require offering a premium.// - <<set _optionsBreak = 1>> <</if>> - <</if>> - <<if $fuckdolls >= 1>> - <<if _optionsBreak>>|<</if>> - [[Sell|Buy Slaves][$fuckdolls-=1,$menialDemandFactor-=1,cashX(_menialPrice, "fuckdollsTransfer")]] - <<if $fuckdolls >= 10>> - [[(x10)|Buy Slaves][$fuckdolls-=10,$menialDemandFactor-=10,cashX((menialSlaveCost(-10)*10), "fuckdollsTransfer")]] - <<if $fuckdolls >= 100>> - [[(x100)|Buy Slaves][$fuckdolls-=100,$menialDemandFactor-=100,cashX((menialSlaveCost(-100)*100), "fuckdollsTransfer")]] + [[(all)|Buy Slaves][cashX($fuckdolls*(menialSlaveCost(-$fuckdolls), "fuckdollsTransfer")),$menialDemandFactor-=$fuckdolls,$fuckdolls = 0]] <</if>> <</if>> - [[(all)|Buy Slaves][cashX($fuckdolls*(menialSlaveCost(-$fuckdolls), "fuckdollsTransfer")),$menialDemandFactor-=$fuckdolls,$fuckdolls = 0]] - <</if>> -<</if>> - -<<if $menialBioreactors > 1>> - <br>You own <<print num(Math.trunc($menialBioreactors))>> standard bioreactors. -<<elseif $menialBioreactors > 0>> - <br>You own one standard bioreactor. -<<elseif $arcologies[0].FSPaternalist == "unset">> - <br>You do not own any standard bioreactors. -<</if>> -<<if ($menialBioreactors > 0) || ($arcologies[0].FSPaternalist == "unset")>> - The market price of standard bioreactors is <<print cashFormat((_menialPrice-100))>>. - <<set _optionsBreak = 0>> - <<if _bulkMax > 0>> - <<if $arcologies[0].FSPaternalist == "unset" && $cash > _menialPrice+100>> - [[Buy|Buy Slaves][$menialBioreactors+=1,$menialSupplyFactor-=1,cashX(forceNeg(_menialPrice+100), "menialBioreactors")]] - <<if $cash > (menialSlaveCost(10)-100)*10>> - [[(x10)|Buy Slaves][$menialBioreactors+=10,$menialSupplyFactor-=10,cashX(forceNeg((menialSlaveCost(10)-100)*10), "menialBioreactors")]] - <</if>> - <<if $cash > (menialSlaveCost(100)-100)*100>> - [[(x100)|Buy Slaves][$menialBioreactors+=100,$menialSupplyFactor-=100,cashX(forceNeg((menialSlaveCost(100)-100)*100), "menialBioreactors")]] - <</if>> - <<if $cash > (_menialPrice-99)*2>> - <<set _bioreactorBulkPremium = Math.trunc(1+ Math.clamp($cash/(_menialPrice-99),0,_bulkMax)/400)>> - [[(max)|Buy Slaves][$menialBioreactors+=Math.trunc(Math.clamp($cash/(_menialPrice-99+_bioreactorBulkPremium),0,_bulkMax)),$menialSupplyFactor-=Math.trunc(Math.clamp($cash/(_menialPrice-99+_bioreactorBulkPremium),0,_bulkMax)),cashX(forceNeg(Math.trunc(Math.clamp($cash/(_menialPrice-99+_bioreactorBulkPremium),0,_bulkMax))*(_menialPrice-99+_bioreactorBulkPremium)), "menialBioreactors")]] +</div> + +<div> + <<if $menialBioreactors > 1>> + You own <<print num(Math.trunc($menialBioreactors))>> standard bioreactors. + <<elseif $menialBioreactors > 0>> + You own one standard bioreactor. + <<elseif $arcologies[0].FSPaternalist == "unset">> + You do not own any standard bioreactors. + <</if>> + <<if ($menialBioreactors > 0) || ($arcologies[0].FSPaternalist == "unset")>> + The market price of standard bioreactors is <<print cashFormat((_menialPrice-100))>>. + <<set _optionsBreak = 0>> + <<if _bulkMax > 0>> + <<if $arcologies[0].FSPaternalist == "unset" && $cash > _menialPrice+100>> + [[Buy|Buy Slaves][$menialBioreactors+=1,$menialSupplyFactor-=1,cashX(forceNeg(_menialPrice+100), "menialBioreactors")]] + <<if $cash > (menialSlaveCost(10)-100)*10>> + [[(x10)|Buy Slaves][$menialBioreactors+=10,$menialSupplyFactor-=10,cashX(forceNeg((menialSlaveCost(10)-100)*10), "menialBioreactors")]] + <</if>> + <<if $cash > (menialSlaveCost(100)-100)*100>> + [[(x100)|Buy Slaves][$menialBioreactors+=100,$menialSupplyFactor-=100,cashX(forceNeg((menialSlaveCost(100)-100)*100), "menialBioreactors")]] + <</if>> + <<if $cash > (_menialPrice-99)*2>> + <<set _bioreactorBulkPremium = Math.trunc(1+ Math.clamp($cash/(_menialPrice-99),0,_bulkMax)/400)>> + [[(max)|Buy Slaves][$menialBioreactors+=Math.trunc(Math.clamp($cash/(_menialPrice-99+_bioreactorBulkPremium),0,_bulkMax)),$menialSupplyFactor-=Math.trunc(Math.clamp($cash/(_menialPrice-99+_bioreactorBulkPremium),0,_bulkMax)),cashX(forceNeg(Math.trunc(Math.clamp($cash/(_menialPrice-99+_bioreactorBulkPremium),0,_bulkMax))*(_menialPrice-99+_bioreactorBulkPremium)), "menialBioreactors")]] + <</if>> + //Bulk transactions may require offering a premium.// + <<set _optionsBreak = 1>> <</if>> - //Bulk transactions may require offering a premium.// - <<set _optionsBreak = 1>> <</if>> - <</if>> - <<if $menialBioreactors >= 1>> - <<if _optionsBreak>>|<</if>> - [[Sell|Buy Slaves][$menialBioreactors-=1,$menialDemandFactor-=1,cashX((_menialPrice-100), "menialBioreactors")]] - <<if $menialBioreactors >= 10>> - [[(x10)|Buy Slaves][$menialBioreactors-=10,$menialDemandFactor-=10,cashX(((menialSlaveCost(-10)-100)*10), "menialBioreactors")]] - <<if $menialBioreactors >= 100>> - [[(x100)|Buy Slaves][$menialBioreactors-=100,$menialDemandFactor-=100,cashX(((menialSlaveCost(-100)-100)*100), "menialBioreactors")]] + <<if $menialBioreactors >= 1>> + <<if _optionsBreak>>|<</if>> + [[Sell|Buy Slaves][$menialBioreactors-=1,$menialDemandFactor-=1,cashX((_menialPrice-100), "menialBioreactors")]] + <<if $menialBioreactors >= 10>> + [[(x10)|Buy Slaves][$menialBioreactors-=10,$menialDemandFactor-=10,cashX(((menialSlaveCost(-10)-100)*10), "menialBioreactors")]] + <<if $menialBioreactors >= 100>> + [[(x100)|Buy Slaves][$menialBioreactors-=100,$menialDemandFactor-=100,cashX(((menialSlaveCost(-100)-100)*100), "menialBioreactors")]] + <</if>> <</if>> + [[(all)|Buy Slaves][cashX(($menialBioreactors*(menialSlaveCost(-$menialBioreactors)-100)), "menialBioreactors"),$menialDemandFactor-=$menialBioreactors,$menialBioreactors = 0]] <</if>> - [[(all)|Buy Slaves][cashX(($menialBioreactors*(menialSlaveCost(-$menialBioreactors)-100)), "menialBioreactors"),$menialDemandFactor-=$menialBioreactors,$menialBioreactors = 0]] <</if>> -<</if>> \ No newline at end of file +</div> \ No newline at end of file diff --git a/src/uncategorized/underperformingSlaves.tw b/src/uncategorized/underperformingSlaves.tw new file mode 100644 index 0000000000000000000000000000000000000000..1f6f6ba4a600a625c6769b6dad7670991115048e --- /dev/null +++ b/src/uncategorized/underperformingSlaves.tw @@ -0,0 +1,79 @@ +:: Underperforming Slaves [nobr] + +<<set $nextButton = "Back", $nextLink = "Buy Slaves", $returnTo = "Buy Slaves", $showEncyclopedia = 1>> +<p> + <div> + <<= properMaster()>>, while many of your slaves work hard to earn ¤ each week, some succeed more than others. As a trader in slaves, you may appreciate the opportunity that comes when a particularly valuable slave didn't earn very much last week. Or perhaps you just want the chance to tweak these problem slaves and train them to be better? The choice is yours. + </div> + <div> + <<if ($slaveCostFactor > 1.1)>> + Since there is a bull market for slaves, @@.green;this is a great time to sell.@@ + <<elseif ($slaveCostFactor > 1)>> + Since the slave market is bullish; @@.green;this is a pretty good time to sell.@@ + <<elseif ($slaveCostFactor < 0.9)>> + Since there is a bear market for slaves, @@.red;this is a poor time to sell.@@ + <<elseif ($slaveCostFactor < 1)>> + Since the slave market is bearish; @@.red;this is a terrible time to sell.@@ + <<else>> + Since the slave market is stable; @@.yellow;prices are average.@@ + <</if>> + </div> +</p> +<<run App.UI.tabbar.handlePreSelectedTab($tabChoice.Options)>> + +<button class="tablinks" onclick="App.UI.tabbar.openTab(event, 'highSale')" id="tab highSale">Worth much but earning little</button> +<button class="tablinks" onclick="App.UI.tabbar.openTab(event, 'expensive')" id="tab expensive">Costing vs earning</button> + +<div id="highSale" class="tabcontent"> + <div class="content"> + <div style="font-style:italic"> + Take the rough value of a slave and divide it by how much they made overall last week. This will tell you how many weeks it might take them to earn the same amount you'd get for selling them right now. + </div> + <<print App.UI.SlaveList.render.listMarkup( + getBestSlavesIndices( + { + part:(slave)=>(slaveCost(slave) / (slave.lastWeeksCashIncome - getSlaveCost(slave))), + smallest:false, + count: 7, + filter:(slave)=>( + ["get milked", "work in the dairy", "whore", "work in the brothel", "work a glory hole", "be confined in the arcade"].includes(slave.assignment) + && ((slave.weekAcquired + 1) < V.week) + && slave.lastWeeksCashIncome + ) + } + ), + [], + App.UI.SlaveList.SlaveInteract.stdInteract, + (slave)=>$(document.createDocumentFragment()).append( + `Worth ${cashFormatColor(slaveCost(slave))} / Nets ${cashFormatColor(slave.lastWeeksCashIncome - getSlaveCost(slave))} a week = ${(Math.trunc(slaveCost(slave) / (slave.lastWeeksCashIncome - getSlaveCost(slave))))} weeks` + ).get(0) + )>> + </div> +</div> + +<div id="expensive" class="tabcontent"> + <div class="content"> + <div style="font-style:italic"> + This list looks for moochers by weighing their weekly income against the weekly cost of providing for them. + </div> + <<print App.UI.SlaveList.render.listMarkup( + getBestSlavesIndices( + { + part:(slave)=>(slave.lastWeeksCashIncome - getSlaveCost(slave)), + smallest:true, + count: 7, + filter:(slave)=>( + ["get milked", "work in the dairy", "whore", "work in the brothel", "work a glory hole", "be confined in the arcade"].includes(slave.assignment) + && ((slave.weekAcquired + 1) < V.week) + && slave.lastWeeksCashIncome + ) + } + ), + [], + App.UI.SlaveList.SlaveInteract.stdInteract, + (slave)=>$(document.createDocumentFragment()).append( + `${cashFormatColor(Math.trunc(slave.lastWeeksCashIncome - getSlaveCost(slave)))} net last week` + ).get(0) + )>> + </div> +</div> \ No newline at end of file