diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt index ee4fe326f6704f98c8d8812e39cea733225f3c33..0f9a8a26771f16614a0691a42b43b0744515f1b5 100644 --- a/devNotes/VersionChangeLog-Premod+LoliMod.txt +++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt @@ -4,6 +4,10 @@ 1/26/18 + 296 + -SFanon's job fullfilment center slave market + -anon's various fixes and tweaks + 295 -starting girls can now be set to mindbroken -fixed some age bugs in reRecruit diff --git a/devNotes/twine JS b/devNotes/twine JS index 54704f882a370e37fc804a8a4c888ba09522b6e6..3c4cc8abcee104c7876b94247dbeb0c2e054aa14 100644 --- a/devNotes/twine JS +++ b/devNotes/twine JS @@ -1093,6 +1093,11 @@ window.repGainSacrifice = function(slave, arcology) { * arcology.FSAztecRevivalist / 100 / ((State.variables.slavesSacrificedThisWeek || 0) + 1)); }; +window.bodyguardSuccessorEligible = function(slave) { + if(!slave) { return false; } + return (slave.devotion > 50 && slave.muscles >= 0 && slave.weight < 100 && slave.boobs < 8000 && slave.butt < 10 && slave.belly < 5000 && slave.balls < 10 && slave.dick < 10 && slave.preg < 20 && slave.fuckdoll == 0 && slave.fetish != "mindbroken" && canWalk(slave)); +}; + window.ngUpdateGenePool = function(genePool) { var transferredSlaveIds = (SugarCube.State.variables.slaves || []) .filter(function(s) { return s.ID >= 1200000; }) diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw index 20ee9f9570b6778761d18cfda7d7c86479f4d5e8..bb7a67b9baf63313c72a25304a11762e799ae16a 100644 --- a/src/init/storyInit.tw +++ b/src/init/storyInit.tw @@ -1101,10 +1101,8 @@ FertilityAge($fertilityAge) <<set $pubertyLength = 5>> <<set $maxGrowthAge = 24>> -<<if ndef $JFCOrder, $Role, $recruiter>> - <<set $JFCOrder = 0, $Role = "", $recruiter = 0>> -<</if>> -<<set $JFCS = {age: 19, health: 0, muscles: 0, lips: 15, heightMod: "normal", weight: 0, face: 0, race: "white", skin: 0, boobs: 500, butt: 3, sex: 1, virgin: 0, dick: 2, balls: 2, clit: 0, labia: 0, vaginaLube: 1, analVirgin: 0, skills: 15, whoreSkills: 15, combatSkills: 0, intelligence: 0, intelligenceImplant: 1, nationality: "Stateless", amp: 0, eyes: 1, sexualQuirk: "", fetish: "", behavioralQuirk: ""}>> +/* Job Fulfillment Center */ +<<set $JFCOrder = 0, $Role = "">> /% Begin mod section: toggle whether slaves lisp. %/ <<set $disableLisping = 0>> diff --git a/src/js/storyJS.tw b/src/js/storyJS.tw index 3c8f71e2741f652fe1187fcafc490afa9519f1d4..14bfa7fad449326f10f267a1716bfc05406f702b 100644 --- a/src/js/storyJS.tw +++ b/src/js/storyJS.tw @@ -1093,6 +1093,11 @@ window.repGainSacrifice = function(slave, arcology) { * arcology.FSAztecRevivalist / 100 / ((State.variables.slavesSacrificedThisWeek || 0) + 1)); }; +window.bodyguardSuccessorEligible = function(slave) { + if(!slave) { return false; } + return (slave.devotion > 50 && slave.muscles >= 0 && slave.weight < 100 && slave.boobs < 8000 && slave.butt < 10 && slave.belly < 5000 && slave.balls < 10 && slave.dick < 10 && slave.preg < 20 && slave.fuckdoll == 0 && slave.fetish != "mindbroken" && canWalk(slave)); +}; + window.ngUpdateGenePool = function(genePool) { var transferredSlaveIds = (SugarCube.State.variables.slaves || []) .filter(function(s) { return s.ID >= 1200000; }) diff --git a/src/pregmod/JobFulfillmentCenter/JobFulfillmentCenterDelivery.tw b/src/pregmod/JobFulfillmentCenter/JobFulfillmentCenterDelivery.tw index 70e5b902b693501ad46206d60ca26e6ca9e01d4c..dc49b93ef29a4030a6850a5fd1dff1f6c2174a40 100644 --- a/src/pregmod/JobFulfillmentCenter/JobFulfillmentCenterDelivery.tw +++ b/src/pregmod/JobFulfillmentCenter/JobFulfillmentCenterDelivery.tw @@ -1,14 +1,16 @@ :: JobFulfillmentCenterDelivery [nobr] -<<set $nextButton = "Continue", $nextLink = "Scheduled Event", $returnTo = "Scheduled Event", $showEncyclopedia = 1, $encyclopedia = "Enslaving People", $JFCOrder = 0>> +<<set $nextButton = "Continue", $nextLink = "Scheduled Event", $returnTo = "Scheduled Event", $showEncyclopedia = 1, $encyclopedia = "Enslaving People">> -<<set $slaveCost = $slaveCost*4, $JFCS = $activeSlave>> +<<JFCSlave>> +<<slaveCost $activeSlave>> +<<set $slaveCost = $slaveCost*2>> A slave dealer has submitted a slave to satisfy your ''$Role'' order. -<br><br>//As usual, the asking price is quite high, to cover the costs of finding a slave to order. In compensation, you can freely decline the slave and keep the order open, or even modify it later.// +<br><br>//As usual, the asking price is quite high, to cover the costs of finding a suitable slave. In compensation, you can freely decline the slave and keep the order open, or even modify it later.// -<br><br><<JFCSlave>><<set $saleDescription = 1, $applyLaw = 0>><<include "Long Slave Description">> +<br><br><<set $saleDescription = 1, $applyLaw = 0>><<include "Long Slave Description">> <br><br>Her price is <<print cashFormat($slaveCost)>>. @@ -17,12 +19,11 @@ A slave dealer has submitted a slave to satisfy your ''$Role'' order. <<link "Accept the offered slave">> <<set $cash -= $slaveCost>> <<replace "#result">> - She has been reasonably broken by the dealer that offered her to you. She has also picked up on the fact that she was specially selected, and is a little hopeful that this means she may be treated well. She is now awaiting your instructions. + She has been very well trained by the dealer that offered her to you. She has also picked up on the fact that she was specially selected, and is a little hopeful that this means she may be treated well. She is now eagerly awaiting your instructions. <<include "New Slave Intro">> - <<set $Role = "", $recruiter = 0>> + <<set $JFCOrder = 0, $Role = "">> <</replace>> <</link>> <<else>> //You lack the necessary funds to accept the offered slave.// <</if>> -</span> diff --git a/src/pregmod/JobFulfillmentCenter/JobFulfillmentCenterOrder.tw b/src/pregmod/JobFulfillmentCenter/JobFulfillmentCenterOrder.tw index 30a78e8643fbaa0ff86854c047d21616c845a8dc..c6077b93b3cc12580c01be845d73edbde769c407 100644 --- a/src/pregmod/JobFulfillmentCenter/JobFulfillmentCenterOrder.tw +++ b/src/pregmod/JobFulfillmentCenter/JobFulfillmentCenterOrder.tw @@ -5,251 +5,63 @@ <<if $JFCOrder == 0>>You work up a new slave order for posting where slave merchants can work to fulfill it.<</if>> <<if $JFCOrder == 1>>You review your posted slave order for a ''$Role''.<</if>> <<if $assistant == 1>>As you work, $assistantName makes lewd comments about what she looks forward to doing to this new slave.<</if>> <<if $JFCOrder == 0>> -<span id="JobType"> -<br> - + <span id="JobType"> + <br><br> <<if ($LieutenantColonel == 0 && $FacilitySupport == 1) || ($Wardeness == 0 && $cellblock == 1) || $Bodyguard == 0>> <<link "Security">> <<replace "#JobType">> - <span id="SubJob"> - <br> - <<if $LieutenantColonel == 0 && $FacilitySupport == 1>> - <<link "Lieutenant Colonel">> - <<replace "#SubJob">> - <<set $JFCOrder = 1, $Role = "lieutenant colonel">> - <</replace>> - <<goto "JobFulfillmentCenterOrder">> - <</link>> + <br>[[Lieutenant Colonel|Main][$JFCOrder = 1, $Role = "Lieutenant Colonel"]] <</if>> - <<if $Bodyguard == 0>> - <<link "Bodyguard">> - <<replace "#SubJob">> - <<set $JFCOrder = 1, $Role = "bodyguard">> - <</replace>> - <<goto "JobFulfillmentCenterOrder">> - <</link>> + <br>[[Bodyguard|Main][$JFCOrder = 1, $Role = "Bodyguard"]] <</if>> - <<if $Wardeness == 0 && $cellblock == 1>> - <br><<link "Wardness">> - <<replace "#SubJob">> - <<set $JFCOrder = 1, $Role = "wardness">> - <</replace>> - <<goto "JobFulfillmentCenterOrder">> - <</link>> + <br>[[Wardeness|Main][$JFCOrder = 1, $Role = "Wardeness"]] <</if>> - - </span> <</replace>> <</link>> <</if>> - - <<if $HeadGirl == 0 || ($Schoolteacher == 0 && $schoolroom > 0) || ($Nurse == 0 && $clinic > 0) || $Attendant == 0 && $spa > 0 || ($Stewardess == 0 && $$servantsQuarters > 0) || ($Milkmaid == 0 && $dairy > 0) || $Recruiter == 0>> + <<if $HeadGirl == 0 || ($Schoolteacher == 0 && $schoolroom > 0) || ($Nurse == 0 && $clinic > 0) || $Attendant == 0 && $spa > 0 || ($Stewardess == 0 && $$servantsQuarters > 0) || ($Milkmaid == 0 && $dairy > 0)>> <br><<link "Management">> <<replace "#JobType">> - <span id="SubJob"> - <br> - <<if $HeadGirl == 0>> - <br><<link "Headgirl">> - <<replace "#SubJob">> - <<set $Role = "headgirl", $JFCOrder = 1>> - <<goto "JobFulfillmentCenterOrder">> - <</replace>> - <<goto "JobFulfillmentCenterOrder">> - <</link>> + <br>[[Headgirl|Main][$JFCOrder = 1, $Role = "Headgirl"]] <</if>> - <<if $Schoolteacher == 0 && $schoolroom > 0>> - <br><<link "Teacher">> - <<replace "#SubJob">> - <<set $Role = "teacher", $JFCOrder = 1>> - <<goto "JobFulfillmentCenterOrder">> - <</replace>> - <<goto "JobFulfillmentCenterOrder">> - <</link>> + <br>[[Teacher|Main][$JFCOrder = 1, $Role = "Teacher"]] <</if>> - <<if $Nurse == 0 && $clinic > 0>> - <br><<link "Nurse">> - <<replace "#SubJob">> - <<set $Role = "nurse", $JFCOrder = 1>> - <</replace>> - <<goto "JobFulfillmentCenterOrder">> - <</link>> + <br>[[Nurse|Main][$JFCOrder = 1, $Role = "Nurse"]] <</if>> - <<if $Attendant == 0 && $spa > 0>> - <br><<link "Attendant">> - <<replace "#SubJob">> - <<set $JFCOrder = 1>> - <span-id="Pregmancy"> - - <<link "has already had children and is pregmant">> - <<replace "#Pregmancy">> - <<set $Role = "already pregnant attendant that has children">> - <</replace>> - <<goto "JobFulfillmentCenterOrder">> - <</link>> - - <br><<link "has not already had children and is not pregmant">> - <<replace "#Pregmancy">> - <<set $Role = "not already pregnant attendant that does not have children">>>> - <</replace>> - <<goto "JobFulfillmentCenterOrder">> - <</link>> - - </span> - <</replace>> - <</link>> + <br>[[Attendant (normal)|Main][$JFCOrder = 1, $Role = "Attendant"]] | [[Attendant (motherly)|Main][$JFCOrder = 1, $Role = "Motherly Attendant"]] <</if>> - <<if $Stewardess == 0 && $servantsQuarters > 0>> - <br><<link "Stewardess">> - <<replace "#SubJob">> - <<set $Role = "stewardess", $JFCOrder = 1>> - <</replace>> - <<goto "JobFulfillmentCenterOrder">> - <</link>> + <br>[[Stewardess|Main][$JFCOrder = 1, $Role = "Stewardess"]] <</if>> - <<if $Milkmaid == 0 && $dairy > 0>> - <br><<link "Milkmaid">> - <<replace "#SubJob">> - <<set $Role = "milkmaid", $JFCOrder = 1>> - <</replace>> - <<goto "JobFulfillmentCenterOrder">> - <</link>> + <br>[[Milkmaid|Main][$JFCOrder = 1, $Role = "Milkmaid"]] <</if>> - - <<if $Recruiter == 0>> - <br><<link "Recruiter">> - <<replace "#SubJob">> - <span-id="Target"> - <<set $JFCOrder = 1, $recruiter = 0>> - - <<link "Whore">> - <<replace "#Target">> - <<set $Role = "whore recruiter", $recruiter = 1>> - <</replace>> - <<goto "JobFulfillmentCenterOrder">> - <</link>> - - <<link "Mothers">> - <<replace "#Target">> - <span-id="SubTarget"> - - <<link "already pregmant">> - <<replace "#SubTarget">> - <<set $Role = "already pregmant mothers recruiter", $recruiter = 2>> - <</replace>> - <</link>> - - <br><<link "Not already pregmant">> - <<replace "#SubTarget">> - <<set $Role = "not already pregmant mothers recruiter", $recruiter = 3>> - <</replace>> - <</link>> - - </span> - <</replace>> - <<goto "JobFulfillmentCenterOrder">> - <</link>> - - <<if $seeDicks > 0>> - <<link "Sissies">> - <<replace "#Target">> - <<set $Role = "sissies recruiter", $recruiter = 4>> - <</replace>> - <<goto "JobFulfillmentCenterOrder">> - <</link>> - - <<link "reasignees">> - <<replace "#Target">> - <<set $Role = "reasignees recruiter", $recruiter = 5>> - <</replace>> - <<goto "JobFulfillmentCenterOrder">> - <</link>> - <</if>> - - <<link "Young migrants">> - <<replace "#Target">> - <<set $Role = "young migrants recruiter", $recruiter = 6>> - <</replace>> - <<goto "JobFulfillmentCenterOrder">> - <</link>> - - </span> - <</replace>> - <</link>> - <</if>> - - </span> <</replace>> <</link>> <</if>> - <<if ($DJ == 0 && $club > 0) || ($Madam == 0 && $brothel > 0) || ($Lurcher == 0 && $CoursingAssociation == 1) || ($Concubine == 0 && $masterSuite > 0)>> <br><<link "Entertain">> <<replace "#JobType">> - <span id="SubJob"> - <br> - <<if $DJ == 0 && $club > 0>> - <br><<link "DJ">> - <<replace "#SubJob">> - <<set $Role = "dj", $JFCOrder = 1>> - <</replace>> - <<goto "JobFulfillmentCenterOrder">> - <</link>> + <br>[[DJ|Main][$JFCOrder = 1, $Role = "DJ"]] <</if>> - <<if $Madam == 0 && $brothel > 0>> - <br><<link "Whore">> - <<replace "#SubJob">> - <<set $Role = "madam", $JFCOrder = 1>> - <</replace>> - <<goto "JobFulfillmentCenterOrder">> - <</link>> - <</if>> - - <<if $Lurcher == 0 && $CoursingAssociation == 1>> - <br><<link "Lurcher">> - <<replace "#SubJob">> - <<set $Role = "lurcher", $JFCOrder = 1>> - <</replace>> - <<goto "JobFulfillmentCenterOrder">> - <</link>> + <br>[[Madam|Main][$JFCOrder = 1, $Role = "Madam"]] <</if>> - <<if $Concubine == 0 && $masterSuite > 0>> - <br><<link "Concubine">> - <<replace "#SubJob">> - <<set $Role = "concubine", $JFCOrder = 1>> - <</replace>> - <<goto "JobFulfillmentCenterOrder">> - <</link>> + <br>[[Concubine|Main][$JFCOrder = 1, $Role = "Concubine"]] <</if>> - - </span> <</replace>> <</link>> <</if>> - -</span> -<</if>> - -<br><br><<link "Reset order form">> - <<set $JFCS = {age: 19, health: 0, muscles: 0, lips: 15, heightMod: "normal", weight: 0, face: 0, race: "white", skin: 0, boobs: 500, butt: 3, sex: 1, virgin: 0, dick: 2, balls: 2, clit: 0, labia: 0, vaginaLube: 1, analVirgin: 0, skills: 15, whoreSkills: 15, combatSkills: 0, intelligence: 0, intelligenceImplant: 1, nationality: "Stateless", amp: 0, eyes: 1, sexualQuirk: "", fetish: "", behavioralQuirk: ""}>> - <<set $JFCOrder = 0, $Role = "", $recruiter = 0>> - <<goto "JobFulfillmentCenterOrder">> -<</link>> - -<br> -<<if $JFCOrder == 1>> - [[Withdraw slave order|Main][$JFCOrder = 0, $Role = "", $recruiter = 0 ]] + </span> <<else>> - [[Post slave order|Main][$JFCOrder = 1]] + [[Withdraw slave order|JobFulfillmentCenterOrder][$JFCOrder = 0, $Role = ""]] <</if>> \ No newline at end of file diff --git a/src/pregmod/seHuskSlaveDelivery.tw b/src/pregmod/seHuskSlaveDelivery.tw index c312a6c5b981570b527ce85504446c93a0f65497..9e5a1837f04c77f939880ac8840ffe4e9bb8793d 100644 --- a/src/pregmod/seHuskSlaveDelivery.tw +++ b/src/pregmod/seHuskSlaveDelivery.tw @@ -99,8 +99,8 @@ A slave came in fitting the description you provided. <<set $saleDescription = 1, $applyLaw = 0>><<include "Long Slave Description">><<set $saleDescription = 0>> <br><br> <span id="result"> -<<if $cash >= $slaveCost>> - [[Accept the offered slave and contact the bodyswap surgeon.|husk Slave Swap Workaround][$cash -= $slaveCost]] +<<if $cash >= $surgeryCost>> + [[Accept the offered slave and contact the bodyswap surgeon.|husk Slave Swap Workaround]] <<else>> //You can't sustain her and thus must return her.// <</if>> diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw index 87e084cad468713a609336e527b0d6b49634c746..306b2dd7f699fe00c34c4183a6b0d591b1c810ef 100644 --- a/src/uncategorized/BackwardsCompatibility.tw +++ b/src/uncategorized/BackwardsCompatibility.tw @@ -1957,6 +1957,14 @@ Setting missing global variables: <<set $sexualOpeness = 0>> <</if>> +/* Job Fulfillment Center */ +<<if ndef $JFCOrder>> + <<set $JFCOrder = 0>> +<</if>> +<<if ndef $Role>> + <<set $Role = "">> +<</if>> + <<if ndef $trinkets>> <<set $trinkets = []>> diff --git a/src/uncategorized/buySlaves.tw b/src/uncategorized/buySlaves.tw index c8eaa0b22fd552ec3587a045e92ddbbb0a245072..a2a4ae9100519ea0c463dd184e038bd974103b86 100644 --- a/src/uncategorized/buySlaves.tw +++ b/src/uncategorized/buySlaves.tw @@ -211,7 +211,7 @@ __Sex Slave Purchase Options__ <<if ($rep > 11000)>> <br>[[Place a special order|Custom Slave]] | //Customizable but very expensive.// - <br>[[Place a specalised slave order|JobFulfillmentCenterOrder]] | //Very expensive but specalised.// + <br>[[Place a fulfillment order|JobFulfillmentCenterOrder]] | //Fills leaderships roles for a price.// <</if>> <<if ($rep > 14000)>> diff --git a/src/uncategorized/corporationDevelopments.tw b/src/uncategorized/corporationDevelopments.tw index 3cfab5e41e5c9b5da5538f0c88994da0041195ac..6a4da7aeb448b69b8a95ddf977977ef7d44eb757 100644 --- a/src/uncategorized/corporationDevelopments.tw +++ b/src/uncategorized/corporationDevelopments.tw @@ -50,14 +50,15 @@ Your corporation was valued at <<print cashFormat($corpValue)>> and made a profi in total, the corporation has enslaved <<print commaNum($corpPeopleEnslaved)>> people. <<if $slaveAssets < ($trainingAssets+$surgicalAssets+$drugAssets)>> The corporation has enough training and medical assets to rapidly improve its human holdings. - <<set $slaveAssets += Math.ceil(Math.log($slaveAssets)*300)>> + <<set $slaveAssets += Math.ceil(Math.log($slaveAssets)*400)>> <<elseif $slaveAssets < ($trainingAssets+$surgicalAssets+$drugAssets)*2>> The corporation uses its training and medical assets to improve its human holdings. - <<set $slaveAssets += Math.ceil(Math.log($slaveAssets)*100)>> + <<set $slaveAssets += Math.ceil(Math.log($slaveAssets)*200)>> <<else>> The corporation has only enough training and medical assets to maintain the value of its human holdings. <</if>> -<<set $trainingAssets = Math.ceil($trainingAssets * random(90,95)/100), $surgicalAssets = Math.ceil($surgicalAssets * random(90,95)/100), $drugAssets = Math.ceil($drugAssets * random(90,95)/100)>> +/* model weekly corporate expenses as random 3-5% reduction in all asset types (including cash) ... except slaves, whose value is tied to $slaveCostFactor (which the corporation does not affect) */ +<<set $trainingAssets = Math.ceil($trainingAssets * random(95,97)/100), $surgicalAssets = Math.ceil($surgicalAssets * random(95,97)/100), $drugAssets = Math.ceil($drugAssets * random(95,97)/100), $generalAssets = Math.ceil($generalAssets * random(95,97)/100), $entrapmentAssets = Math.ceil($entrapmentAssets * random(95,97)/100), $captureAssets = Math.ceil($captureAssets * random(95,97)/100), $corpCash = Math.ceil($corpCash * random(95,97)/100)>> <<if $corpMarket>> <<if $rep > 5000>> <<set $slaveAssets += Math.ceil(Math.log($slaveAssets)/Math.log(10)*(($rep-5000)/15000))>> @@ -129,69 +130,92 @@ Shares in your corporation are trading at <<print cashFormat($sharePrice)>>: <<set $oldSharePrice = Math.ceil($sharePrice)>> You hold <<print commaNum($personalShares)>> shares personally while <<print commaNum($publicShares)>> are publicly held. +<<set _PrivateOwnershipPercentage = Math.trunc(($personalShares/($personalShares+$publicShares))*100)>> +<<set _PublicOwnershipPercentage = Math.trunc(($publicShares/($personalShares+$publicShares))*100)>> <span id="CorpAction"> <br><br> -<<if $cash > 1000*$sharePrice>> -<br>Purchase shares from corporation: - <<if $cash > 1000*$sharePrice>> - <<link "1000">><<set $personalShares += 1000>><<set $cash -= 1000*$sharePrice>><<set $corpCash += 1000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*either(101,102)))/100>><<replace "#CorpAction">><br><<print "You purchased 1000 shares from the corporation, driving the share price up slightly.">><</replace>><</link>><</if>> - <<if $cash > 5000*$sharePrice>> - | <<link "5000">><<set $personalShares += 5000>><<set $cash -= 5000*$sharePrice>><<set $corpCash += 5000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*either(101,102)))/100>><<replace "#CorpAction">><br><<print "You purchased 5000 shares from the corporation, driving the share price up slightly.">><</replace>><</link>><</if>> - <<if $cash > 10000*$sharePrice>> - | <<link "10000">><<set $personalShares += 10000>><<set $cash -= 10000*$sharePrice>><<set $corpCash += 10000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*either(101,103)))/100>><<replace "#CorpAction">><br><<print "You purchased 10000 shares from the corporation, driving the share price up slightly.">><</replace>><</link>><</if>> - <<if $cash > 15000*$sharePrice>> - | <<link "15000">><<set $personalShares += 15000>><<set $cash -= 15000*$sharePrice>><<set $corpCash += 15000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*either(103,104)))/100>><<replace "#CorpAction">><br><<print "You purchased 15000 shares from the corporation, driving the share price up somewhat.">><</replace>><</link>><</if>> - <<if $cash > 20000*$sharePrice>> - | <<link "20000">><<set $personalShares += 20000>><<set $cash -= 20000*$sharePrice>><<set $corpCash += 20000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(104,106)))/100>><<replace "#CorpAction">><br><<print "You purchased 20000 shares from the corporation, driving the share price up significantly.">><</replace>><</link>><</if>> -<<else>> -You are unable to purchase 1000 shares at the current share price. -<</if>> -<br>Issue new shares: -<<if $personalShares-1000 > $publicShares>> - <<link "1000">><<set $publicShares += 1000>><<set $corpCash += 1000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*either(98,99)))/100>><<replace "#CorpAction">><br><<print "The corporation issued 1000 new shares, driving the share price down slightly.">><</replace>><</link>><</if>> -<<if $personalShares-5000 > $publicShares>> - | <<link "5000">><<set $publicShares += 5000>><<set $corpCash += 5000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*either(98,99)))/100>><<replace "#CorpAction">><br><<print "The corporation issued 5000 new shares, driving the share price down slightly.">><</replace>><</link>><</if>> -<<if $personalShares-10000 > $publicShares>> - | <<link "10000">><<set $publicShares += 10000>><<set $corpCash += 10000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(97,99)))/100>><<replace "#CorpAction">><br><<print "The corporation issued 10000 new shares, driving the share price down slightly.">><</replace>><</link>><</if>> -<<if $personalShares-15000 > $publicShares>> - | <<link "15000">><<set $publicShares += 15000>><<set $corpCash += 15000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(96,98)))/100>><<replace "#CorpAction">><br><<print "The corporation issued 15000 new shares, driving the share price down somewhat.">><</replace>><</link>><</if>> -<<if $personalShares-20000 > $publicShares>> - | <<link "20000">><<set $publicShares += 20000>><<set $corpCash += 20000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(94,96)))/100>><<replace "#CorpAction">><br><<print "The corporation issued 20000 new shares, driving the share price down significantly.">><</replace>><</link>><</if>> +<<if _PrivateOwnershipPercentage < 51>>//You cannot give up majority control.// +<<else>> /* actions that reduce private ownership percentage */ + + <br>Sell personal shares: + <<if $personalShares-1000 > $publicShares>> + <<link "1000">><<set $personalShares -= 1000>><<set $publicShares += 1000>><<set $cash += 1000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*either(98,99)))/100>><<replace "#CorpAction">><br><<print "You sold 1000 shares, driving the share price down slightly.">><</replace>><</link>><</if>> + <<if $personalShares-5000 > $publicShares>> + | <<link "5000">><<set $personalShares -= 5000>><<set $publicShares += 5000>><<set $cash += 5000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*either(98,99)))/100>><<replace "#CorpAction">><br><<print "You sold 5000 shares, driving the share price down slightly.">><</replace>><</link>><</if>> + <<if $personalShares-10000 > $publicShares>> + | <<link "10000">><<set $personalShares -= 10000>><<set $publicShares += 10000>><<set $cash += 10000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(97,99)))/100>><<replace "#CorpAction">><br><<print "You sold 10000 shares, driving the share price down slightly.">><</replace>><</link>><</if>> + <<if $personalShares-15000 > $publicShares>> + | <<link "15000">><<set $personalShares -= 15000>><<set $publicShares += 15000>><<set $cash += 10000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(96,98)))/100>><<replace "#CorpAction">><br><<print "You sold 15000 shares, driving the share price down somewhat.">><</replace>><</link>><</if>> + <<if $personalShares-20000 > $publicShares>> + | <<link "20000">><<set $personalShares -= 20000>><<set $publicShares += 20000>><<set $cash += 10000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(95,97)))/100>><<replace "#CorpAction">><br><<print "You sold 20000 shares, driving the share price down significantly.">><</replace>><</link>><</if>> + + <br>Issue new public shares: + <<if $personalShares-1000 > $publicShares>> + <<link "1000">><<set $publicShares += 1000>><<set $corpCash += 1000*Math.ceil($sharePrice)>><<set $sharePrice = (Math.trunc($sharePrice*either(98,99)))/100>><<replace "#CorpAction">><br><<print "The corporation issued 1000 new shares, driving the share price down slightly.">><</replace>><</link>><</if>> + <<if $personalShares-5000 > $publicShares>> + | <<link "5000">><<set $publicShares += 5000>><<set $corpCash += 5000*Math.ceil($sharePrice)>><<set $sharePrice = (Math.trunc($sharePrice*either(98,99)))/100>><<replace "#CorpAction">><br><<print "The corporation issued 5000 new shares, driving the share price down slightly.">><</replace>><</link>><</if>> + <<if $personalShares-10000 > $publicShares>> + | <<link "10000">><<set $publicShares += 10000>><<set $corpCash += 10000*Math.ceil($sharePrice)>><<set $sharePrice = (Math.trunc($sharePrice*random(97,99)))/100>><<replace "#CorpAction">><br><<print "The corporation issued 10000 new shares, driving the share price down slightly.">><</replace>><</link>><</if>> + <<if $personalShares-15000 > $publicShares>> + | <<link "15000">><<set $publicShares += 15000>><<set $corpCash += 15000*Math.ceil($sharePrice)>><<set $sharePrice = (Math.trunc($sharePrice*random(96,98)))/100>><<replace "#CorpAction">><br><<print "The corporation issued 15000 new shares, driving the share price down somewhat.">><</replace>><</link>><</if>> + <<if $personalShares-20000 > $publicShares>> + | <<link "20000">><<set $publicShares += 20000>><<set $corpCash += 20000*Math.ceil($sharePrice)>><<set $sharePrice = (Math.trunc($sharePrice*random(95,97)))/100>><<replace "#CorpAction">><br><<print "The corporation issued 20000 new shares, driving the share price down significantly.">><</replace>><</link>><</if>> -<<set _PublicOwnershipPercentage = (Math.trunc($publicShares/$personalShares))*100>> -<<set _PrivateOwnershipPercentage = (Math.trunc($personalShares/$publicShares))*100>> - -<br>Sell personal shares: -<<if _PrivateOwnershipPercentage < 51>>//You cannot give up majority control.//<</if>> -<<if _PrivateOwnershipPercentage > 51 && $personalShares-1000 > $publicShares>> - <<link "1000">><<set $personalShares -= 1000>><<set $publicShares += 1000>><<set $cash += 1000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*either(98,99)))/100>><<replace "#CorpAction">><br><<print "You sold 1000 shares, driving the share price down slightly.">><</replace>><</link>><</if>> -<<if $personalShares-5000 > $publicShares>> - | <<link "5000">><<set $personalShares -= 5000>><<set $publicShares += 5000>><<set $cash += 5000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*either(98,99)))/100>><<replace "#CorpAction">><br><<print "You sold 5000 shares, driving the share price down slightly.">><</replace>><</link>><</if>> -<<if $personalShares-10000 > $publicShares>> - | <<link "10000">><<set $personalShares -= 10000>><<set $publicShares += 10000>><<set $cash += 10000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(97,99)))/100>><<replace "#CorpAction">><br><<print "You sold 10000 shares, driving the share price down slightly.">><</replace>><</link>><</if>> -<<if $personalShares-15000 > $publicShares>> - | <<link "15000">><<set $personalShares -= 15000>><<set $publicShares += 15000>><<set $cash += 10000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(96,98)))/100>><<replace "#CorpAction">><br><<print "You sold 15000 shares, driving the share price down somewhat.">><</replace>><</link>><</if>> -<<if $personalShares-20000 > $publicShares>> - | <<link "20000">><<set $personalShares -= 20000>><<set $publicShares += 20000>><<set $cash += 10000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(94,96)))/100>><<replace "#CorpAction">><br><<print "You sold 20000 shares, driving the share price down significantly.">><</replace>><</link>><</if>> +<</if>>/* closes actions that reduce private ownership percentage */ + +<<if _PublicOwnershipPercentage <= 5>>//You cannot make the corporation privately held.// +<<else>> /* actions that reduce public ownership percentage */ + <br>Purchase shares from corporation: + <<if $cash > 1000*$sharePrice>> + <<if $cash > 1000*$sharePrice>> + <<link "1000">><<set $personalShares += 1000>><<set $cash -= 1000*$sharePrice>><<set $corpCash += 1000*Math.floor($sharePrice)>><<set $sharePrice = (Math.trunc($sharePrice*either(98,99)))/100>><<replace "#CorpAction">><br><<print "You purchased 1000 shares from the corporation, driving the share price down slightly.">><</replace>><</link>><</if>> + <<if $cash > 5000*$sharePrice>> + | <<link "5000">><<set $personalShares += 5000>><<set $cash -= 5000*$sharePrice>><<set $corpCash += 5000*Math.floor($sharePrice)>><<set $sharePrice = (Math.trunc($sharePrice*either(98,99)))/100>><<replace "#CorpAction">><br><<print "You purchased 5000 shares from the corporation, driving the share price down slightly.">><</replace>><</link>><</if>> + <<if $cash > 10000*$sharePrice>> + | <<link "10000">><<set $personalShares += 10000>><<set $cash -= 10000*$sharePrice>><<set $corpCash += 10000*Math.floor($sharePrice)>><<set $sharePrice = (Math.trunc($sharePrice*random(97,99)))/100>><<replace "#CorpAction">><br><<print "You purchased 10000 shares from the corporation, driving the share price down slightly.">><</replace>><</link>><</if>> + <<if $cash > 15000*$sharePrice>> + | <<link "15000">><<set $personalShares += 15000>><<set $cash -= 15000*$sharePrice>><<set $corpCash += 15000*Math.floor($sharePrice)>><<set $sharePrice = (Math.trunc($sharePrice*random(96,98)))/100>><<replace "#CorpAction">><br><<print "You purchased 15000 shares from the corporation, driving the share price down somewhat.">><</replace>><</link>><</if>> + <<if $cash > 20000*$sharePrice>> + | <<link "20000">><<set $personalShares += 20000>><<set $cash -= 20000*$sharePrice>><<set $corpCash += 20000*Math.floor($sharePrice)>><<set $sharePrice = (Math.trunc($sharePrice*random(95,97)))/100>><<replace "#CorpAction">><br><<print "You purchased 20000 shares from the corporation, driving the share price down significantly.">><</replace>><</link>><</if>> + <<else>> + //You are unable to purchase 1000 shares at the current share price.// + <</if>> -<<if $cash > 1000*$sharePrice>> <br>Buy publicly held shares: - <<if _PublicOwnershipPercentage <= 5>>//You cannot make the corporation privately held.//<</if>> - <<if _PublicOwnershipPercentage < 49 && $publicShares > 1000 && $cash >= 1000*$sharePrice>> - <<link "1000">><<set $personalShares += 1000>><<set $publicShares -= 1000>><<set $cash -= 1000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*either(98,99)))/100>><<replace "#CorpAction">><br><<print "You bought 1000 shares, driving the share price up slightly.">><</replace>><</link>><</if>> - <<if $publicShares >= 5000 && $cash >= 5000*$sharePrice>> - | <<link "5000">><<set $personalShares += 5000>><<set $publicShares -= 5000>><<set $cash -= 5000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*either(98,99)))/100>><<replace "#CorpAction">><br><<print "You bought 5000 shares, driving the share price up slightly.">><</replace>><</link>><</if>> - <<if $publicShares >= 10000 && $cash >= 10000*$sharePrice>> - | <<link "10000">><<set $personalShares += 10000>><<set $publicShares -= 10000>><<set $cash -= 10000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(97,99)))/100>><<replace "#CorpAction">><br><<print "You bought 10000 shares, driving the share price up slightly.">><</replace>><</link>><</if>> - <<if $publicShares >= 15000 && $cash >= 15000*$sharePrice>> - | <<link "15000">><<set $personalShares += 15000>><<set $publicShares -= 15000>><<set $cash -= 15000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(96,98)))/100>><<replace "#CorpAction">><br><<print "You bought 15000 shares, driving the share price up somewhat.">><</replace>><</link>><</if>> - <<if $publicShares >= 20000 && $cash >= 20000*$sharePrice>> - | <<link "20000">><<set $personalShares += 20000>><<set $publicShares -= 20000>><<set $cash -= 20000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(94,96)))/100>><<replace "#CorpAction">><br><<print "You bought 20000 shares, driving the share price up significantly.">><</replace>><</link>><</if>> -<<else>> -You are unable to purchase 1000 shares at the current share price. -<</if>> + <<if $cash > 1000*$sharePrice>> + <<if $publicShares > 1000 && $cash >= 1000*$sharePrice>> + <<link "1000">><<set $personalShares += 1000>><<set $publicShares -= 1000>><<set $cash -= 1000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*either(101,102)))/100>><<replace "#CorpAction">><br><<print "You bought 1000 shares, driving the share price up slightly.">><</replace>><</link>><</if>> + <<if $publicShares > 5000 && $cash >= 5000*$sharePrice>> + | <<link "5000">><<set $personalShares += 5000>><<set $publicShares -= 5000>><<set $cash -= 5000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*either(101,102)))/100>><<replace "#CorpAction">><br><<print "You bought 5000 shares, driving the share price up slightly.">><</replace>><</link>><</if>> + <<if $publicShares > 10000 && $cash >= 10000*$sharePrice>> + | <<link "10000">><<set $personalShares += 10000>><<set $publicShares -= 10000>><<set $cash -= 10000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(101,103)))/100>><<replace "#CorpAction">><br><<print "You bought 10000 shares, driving the share price up slightly.">><</replace>><</link>><</if>> + <<if $publicShares > 15000 && $cash >= 15000*$sharePrice>> + | <<link "15000">><<set $personalShares += 15000>><<set $publicShares -= 15000>><<set $cash -= 15000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(102,104)))/100>><<replace "#CorpAction">><br><<print "You bought 15000 shares, driving the share price up somewhat.">><</replace>><</link>><</if>> + <<if $publicShares > 20000 && $cash >= 20000*$sharePrice>> + | <<link "20000">><<set $personalShares += 20000>><<set $publicShares -= 20000>><<set $cash -= 20000*$sharePrice>><<set $sharePrice = (Math.trunc($sharePrice*random(103,105)))/100>><<replace "#CorpAction">><br><<print "You bought 20000 shares, driving the share price up significantly.">><</replace>><</link>><</if>> + <<else>> + //You are unable to purchase 1000 shares at the current share price.// + <</if>> + + <br>Direct the corporation to buy back publicly held shares: + <<if $corpCash > 1000*$sharePrice>> + <<if $publicShares > 1000 && $corpCash >= 1000*$sharePrice>> + <<link "1000">><<set $publicShares -= 1000>><<set $corpCash -= 1000*Math.ceil($sharePrice)>><<set $sharePrice = (Math.trunc($sharePrice*either(101,102)))/100>><<replace "#CorpAction">><br><<print "The corporation bought back 1000 public shares, driving the share price up slightly.">><</replace>><</link>><</if>> + <<if $publicShares > 5000 && $corpCash >= 5000*$sharePrice>> + | <<link "5000">><<set $publicShares -= 5000>><<set $corpCash -= 5000*Math.ceil($sharePrice)>><<set $sharePrice = (Math.trunc($sharePrice*either(101,102)))/100>><<replace "#CorpAction">><br><<print "The corporation bought back 5000 public shares, driving the share price up slightly.">><</replace>><</link>><</if>> + <<if $publicShares > 10000 && $corpCash >= 10000*$sharePrice>> + | <<link "10000">><<set $publicShares -= 10000>><<set $corpCash -= 10000*Math.ceil($sharePrice)>><<set $sharePrice = (Math.trunc($sharePrice*random(101,103)))/100>><<replace "#CorpAction">><br><<print "The corporation bought back 10000 public shares, driving the share price up slightly.">><</replace>><</link>><</if>> + <<if $publicShares > 15000 && $corpCash >= 15000*$sharePrice>> + | <<link "15000">><<set $publicShares -= 15000>><<set $corpCash -= 15000*Math.ceil($sharePrice)>><<set $sharePrice = (Math.trunc($sharePrice*random(102,104)))/100>><<replace "#CorpAction">><br><<print "The corporation bought back 15000 public shares, driving the share price up somewhat.">><</replace>><</link>><</if>> + <<if $publicShares > 20000 && $corpCash >= 20000*$sharePrice>> + | <<link "20000">><<set $publicShares -= 20000>><<set $corpCash -= 20000*Math.ceil($sharePrice)>><<set $sharePrice = (Math.trunc($sharePrice*random(103,105)))/100>><<replace "#CorpAction">><br><<print "The corporation bought back 20000 public shares, driving the share price up significantly.">><</replace>><</link>><</if>> + <<else>> + //The corporation is unable to purchase 1000 shares at the current share price.// + <</if>> + +<</if>> /* closes actions that reduce public ownership percentage */ </span> <br><br> diff --git a/src/uncategorized/labReport.tw b/src/uncategorized/labReport.tw index 9102000b9870ff46e4d0d5e8ad6dfc093d69fe41..f3de21406ee832de69649adfcb143bac224e08df 100644 --- a/src/uncategorized/labReport.tw +++ b/src/uncategorized/labReport.tw @@ -9,7 +9,7 @@ <<elseif $researchLab.research != "none">> <<set $researchLab.productionTime -= (($researchLab.hired * 3) + ($researchLab.menials) * ($researchLab.aiModule))>> <<if $researchLab.productionTime <= 0>> - Your lab staff have @@.green;completed@@ their project. + Your lab staff have @@.green;completed@@ their research project, and <<if $researchLab.research == "Basic prosthetics interface">> <<set $researchLab.basicPLimbInterface = 1>> <<elseif $researchLab.research == "Advanced prosthetics interface">> @@ -27,6 +27,7 @@ <<elseif $researchLab.research == "Ocular implants">> <<set $researchLab.ocularImplant = 1>> <</if>> + they are awaiting your next instruction. <<set $researchLab.productionTime to 0, $researchLab.research to "none">> <<else>> Your lab staff are currently researching @@.yellow;$researchLab.research@@. @@ -34,7 +35,7 @@ <<elseif $researchLab.manufacture != "none">> <<set $researchLab.productionTime -= (($researchLab.hired * 3) + ($researchLab.menials) * ($researchLab.aiModule))>> <<if $researchLab.productionTime <= 0>> - Your lab staff have @@.green;completed@@ their project. + Your lab staff have @@.green;completed@@ their project, and <<if $researchLab.manufacture == "Basic prosthetics interface">> <<set $stockpile.basicPLimbInterface += 1>> <<elseif $researchLab.manufacture == "Advanced prosthetics interface">> @@ -52,7 +53,16 @@ <<elseif $researchLab.manufacture == "Ocular implants">> <<set $stockpile.ocularImplant += 1>> <</if>> - <<set $researchLab.productionTime = 0, $researchLab.manufacture = "none">> + <<set $researchLab.productionTime = 0>> + <span id="haltproduction"> + they are starting work on another unit. + <<link "Halt production">> + <<set $researchLab.manufacture = "none">> + <<replace "#haltproduction">> + they are awaiting your next instruction. + <</replace>> + <</link>> + </span> <<else>> Your lab staff are currently working on @@.yellow;$researchLab.manufacture@@. <</if>> diff --git a/src/uncategorized/saGuardsYou.tw b/src/uncategorized/saGuardsYou.tw index 4f6f9e0c7f37e43e4bcd3e870b0f2903ebe66580..5daec7e79b994725f87cb1c08572d301ff63e3f9 100644 --- a/src/uncategorized/saGuardsYou.tw +++ b/src/uncategorized/saGuardsYou.tw @@ -180,124 +180,56 @@ Being continually trusted with your life @@.hotpink;increases her devotion to yo <<if $bodyguardTrains == 1 && $slaves[$i].devotion > 95 && $slaves[$i].trust > 50 && $slaves[$i].combatSkill > 0 && $slaves[$i].intelligence > 0>> She's confident in her martial skills, but smart enough to know that she isn't immortal, and devoted enough to worry about who will protect you should she die. - <<set _bgTrains = 0>> - <<for $j = 0; $j < $slaves.length; $j++>> - <<if $slaves[$j].assignmentVisible == 1>> - <<if $slaves[$j].combatSkill > 0>> - <<if canWalk($slaves[$j])>> - <<if $slaves[$j].fetish != "mindbroken">> - <<if $slaves[$j].devotion > 50>> - <<if $slaves[$j].boobs < 8000>> - <<if $slaves[$j].preg < 20>> - <<set $seed += 1>> - <</if>> - <</if>> - <</if>> - <</if>> - <</if>> - <</if>> - <</if>> - <</for>> - <<if $seed < 2>> - <<set $subSlave = 0>> + <<set _successorCandidates = $slaves.filter( function(s) { return s.assignmentVisible == 1 && bodyguardSuccessorEligible(s); } )>> + <<set _combatSkilled = _successorCandidates.filter( function(s) { return s.combatSkill > 0; })>> + <<if _combatSkilled.length < 2>> + <<unset $subSlave>> + <<set _flawedTrainee = 0>> <<if $slaves[$i].relationship > 1>> - <<for $j = 0; $j < $slaves.length; $j++>> - <<if $slaves[$j].ID == $slaves[$i].relationshipTarget>> - <<if $slaves[$j].combatSkill == 0>> - <<if canWalk($slaves[$j])>> - <<if $slaves[$j].fetish != "mindbroken">> - <<if $slaves[$j].devotion > 50>> - <<if $slaves[$j].boobs < 8000>> - <<if $slaves[$j].preg < 20>> - She does her best to train $slaves[$j].slaveName whenever she can, hoping that her - <<if $slaves[$i].relationship > 4>> - wife - <<elseif $slaves[$i].relationship == 4>> - lover - <<elseif $slaves[$i].relationship == 3>> - girlfriend - <<else>> - best friend - <</if>> + <<set $subSlave = $slaves.find( function(s) { return s.ID == $slaves[$i].relationshipTarget && s.combatSkill == 0 && bodyguardSuccessorEligible(s); })>> + <<if def $subSlave>> + She does her best to train $subSlave.slaveName whenever she can, hoping that her + <<if $slaves[$i].relationship > 4>>wife<<elseif $slaves[$i].relationship == 4>>lover<<elseif $slaves[$i].relationship == 3>>girlfriend<<else>>best friend<</if>> can be made capable of stepping into her place. - <<set $subSlave = $slaves[$j]>> - <<set $seed = 1>> - <</if>> - <</if>> <</if>> - <</if>> - <</if>> - <</if>> - <</if>> - <</for>> <</if>> - <<if $seed == 0>> - <<if $Concubine != 0>> - <<if $Concubine.combatSkill == 0>> - <<if canWalk($Concubine)>> - <<if $Concubine.fetish != "mindbroken">> - <<if $Concubine.devotion > 50>> - <<if $Concubine.boobs < 8000>> - <<if $Concubine.preg < 20>> - She does her best to train $Concubine.slaveName whenever she can, hoping that your Concubine can be made capable of stepping into her place. - <<set $subSlave = $Concubine>> - <<set $seed = 1>> - <</if>> - <</if>> - <</if>> - <</if>> - <</if>> - <</if>> - <</if>> - <</if>> - <<if $seed == 0>> - <<if $HeadGirl != 0>> - <<if $HeadGirl.combatSkill == 0>> - <<if canWalk($HeadGirl)>> - <<if $HeadGirl.fetish != "mindbroken">> - <<if $HeadGirl.devotion > 50>> - <<if $HeadGirl.boobs < 8000>> - <<if $HeadGirl.preg < 20>> + <<if ndef $subSlave>> + <<if $HeadGirl != 0 && $HeadGirl.combatSkill == 0 && bodyguardSuccessorEligible($HeadGirl)>> She does her best to train $HeadGirl.slaveName whenever she can, hoping that your Head Girl can be made capable of stepping into her place. <<set $subSlave = $HeadGirl>> - <<set $seed = 1>> - <</if>> - <</if>> - <</if>> - <</if>> - <</if>> <</if>> + <</if>> + <<if ndef $subSlave>> + <<if $Concubine != 0 && $Concubine.combatSkill == 0 && $Concubine.devotion > 50 && $Concubine.muscles >= -30 && $Concubine.weight < 150 && $Concubine.butt < 10 && $Concubine.boobs < 25000 && $Concubine.belly < 5000 && $Concubine.balls < 20 && $Concubine.dick < 15 && $Concubine.fuckdoll == 0 && $Concubine.fetish != "mindbroken" && canWalk($Concubine)>> + She does her best to train $Concubine.slaveName whenever she can, hoping that your Concubine can be made capable of stepping into her place. + <<if $Concubine.boobs >= 8000 || $Concubine.butt >= 10 || $Concubine.belly >= 5000 || $Concubine.balls >= 10 || $Concubine.dick >= 10 || $Concubine.muscles < 0 || $Concubine.weight >= 100>> + Her body is poorly suited for combat, but she can learn to work around it with enough effort. + <<set _flawedTrainee = either(0,0,0,1,1,2)>> + <</if>> + <<set $subSlave = $Concubine>> <</if>> <</if>> - <<if $seed == 0>> - <<if $Wardeness != 0>> - <<if $Wardeness.combatSkill == 0>> - <<if canWalk($Wardeness)>> - <<if $Wardeness.fetish != "mindbroken">> - <<if $Wardeness.devotion > 50>> - <<if $Wardeness.boobs < 8000>> - <<if $Wardeness.preg < 20>> + <<if ndef $subSlave>> + <<if $Wardeness != 0 && $Wardeness.combatSkill == 0 && bodyguardSuccessorEligible($Wardeness)>> She does her best to train $Wardeness.slaveName whenever she can, hoping that your Wardeness can be made capable of stepping into her place. <<set $subSlave = $Wardeness>> - <<set $seed = 1>> - <</if>> - <</if>> - <</if>> - <</if>> - <</if>> - <</if>> <</if>> <</if>> - <<if $subSlave != 0>> - <<if ($slaves[$i].intelligence + $slaves[$i].intelligenceImplant) > random(1,10)>> - By the end of the week, she is satisfied that $subSlave.slaveName @@.green;has the combat skill@@ to contribute to your defense. - <<for $j = 0; $j < $slaves.length; $j++>> - <<if $slaves[$j].ID == $subSlave.ID>> - <<set $slaves[$j].combatSkill = 1>> - <<break>> + <<if ndef $subSlave>> + <<set $subSlave = _successorCandidates.find( function(s) { return s.combatSkill == 0; })>> + <<if def $subSlave>> + She does her best to train $subSlave.slaveName whenever she can, hoping that she can be made capable of stepping into her place. <</if>> - <</for>> <</if>> + <<if def $subSlave>> + <<if ($slaves[$i].intelligence + $slaves[$i].intelligenceImplant - _flawedTrainee) > random(1,10)>> + By the end of the week, she is satisfied that $subSlave.slaveName @@.green;has the combat skill@@ to contribute to your defense. + <<set _sgy = $slaves.findIndex( function(s) { return s.ID == $subSlave.ID;} )>> + <<set $slaves[_sgy].combatSkill = 1>> + <</if>> + <<else>> + She finds no suitable candidates to serve as her replacement, leaving her stressed over your future safety. The worry is exhausting and @@.red;bad for her health.@@ + <<set $slaves[$i].health -= 3>> <</if>> <<else>> She takes care to look after the skills of your other defensively capable slaves, satisfied that there are enough of them living in your penthouse. diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw index 2f4aace9b201f4ecd3f701ce9bead856e9202995..ed26e5017e9b8a2cd938f6f3685ed120dd38b626 100644 --- a/src/utility/slaveCreationWidgets.tw +++ b/src/utility/slaveCreationWidgets.tw @@ -3750,89 +3750,98 @@ Call as <<JFCSlave>> %/ <<widget "JFCSlave">> - <<set $JFCS.intelligence = 3>> + <<set $activeSlaveOneTimeMinAge = 20>> + <<set $activeSlaveOneTimeMaxAge = 36>> + <<include "Generate XX Slave">> + <<set $activeSlave.weight = random(-30,20), $activeSlave.waist = random(-30,10), $activeSlave.face = random(40,60)>> + <<if $activeSlave.faceShape == "masculine">> + <<set $activeSlave.faceShape = "sensual">> + <</if>> + <<if $activeSlave.boobShape == "saggy" || $activeSlave.boobShape == "downward-facing">> + <<set $activeSlave.boobShape = "perky">> + <</if>> + <<set $activeSlave.eyes = 1, $activeSlave.voice = 2>> <<switch $Role>> /* Opens security */ - <<case "lieutenant colonel">> - <<set $JFCS.devotion = random(96,100), $JFCS.trust = random(96), $JFCS.energy = random(96,100) $JFCS.health = random(51,60), $JFCS.intelligenceImplant = 1, $JFCS.intelligence = 3, $JFCS.career = either("a bodyguard", "a child soldier", "a kunoichi", "a law enforcement officer", "a military brat", "a prince", "a revolutionary", "a soldier", "a transporter", "an assassin", "an MS pilot", "captain of the kendo club", "in a militia", "a bouncer", "a bounty hunter", "a gang member", "a mercenary", "a prison guard", "a private detective", "a security guard", "a street thug", "an enforcer"), $JFCS.combatSkill = 1>> - <<case "bodyguard">> - <<set $JFCS.muscles = random(96,100), $JFCS.height = 171, $JFCS.health = 186 $JFCS.weight = random(-10,10), $JFCS.teeth = "pointy", $JFCS.amp = -4, $JFCS.career = either("a bodyguard", "a child soldier", "a kunoichi", "a law enforcement officer", "a military brat", "a prince", "a revolutionary", "a soldier", "a transporter", "an assassin", "an MS pilot", "captain of the kendo club", "in a militia"), $JFCS.combatSkill = 1>> - <<case "wardness">> - <<set $JFCS.energy = random(96,100), $JFCS.sexualFlaw = "malicious", $JFCS.fetish = "sadist", $JFCS.muscles = random(36,50), $JFCS.career = either("a security guard", "a mercenary", "an enforcer", "a private detective", "a bouncer", "a prison guard", "a street thug", "a gang member", "a bounty hunter"), $JFCS.combatSkill = 1>> + <<case "Lieutenant Colonel">> + <<set $activeSlave.devotion = random(96,100), $activeSlave.trust = random(96, 100), $activeSlave.energy = random(96,100), $activeSlave.health = random(51,60), $activeSlave.intelligenceImplant = 1, $activeSlave.intelligence = 3, $activeSlave.combatSkill = 1>> + <<set $activeSlave.career = either("a bodyguard", "a law enforcement officer", "a revolutionary", "a soldier", "a transporter", "an assassin", "in a militia", "a bouncer", "a bounty hunter", "a gang member", "a mercenary", "a prison guard", "a private detective", "a security guard", "a street thug", "an enforcer")>> + <<case "Bodyguard">> + <<set $activeSlave.devotion = 90, $activeSlave.trust = 80, $activeSlave.health = random(80,95), $activeSlave.muscles = random(30,70), $activeSlave.height = Math.round(Height.random($activeSlave, {skew: 3, spread: .2, limitMult: [1, 4]})), $activeSlave.health = 100, $activeSlave.weight = random(-10,10), $activeSlave.teeth = either("pointy", "normal"), $activeSlave.amp = either(-4, -4, 0, 0, 0, 0), $activeSlave.combatSkill = 1>> + <<set $activeSlave.career = either("a bodyguard", "a kunoichi", "a law enforcement officer", "a military brat", "a revolutionary", "a soldier", "a transporter", "an assassin", "in a militia")>> + <<case "Wardeness">> + <<set $activeSlave.devotion = 80, $activeSlave.trust = 80, $activeSlave.health = random(80,95), $activeSlave.energy = random(80,100), $activeSlave.sexualFlaw = either("malicious", "none", "none", "none", "none"), $activeSlave.fetish = "sadist", $activeSlave.fetishStrength = 100, $activeSlave.muscles = random(50,80), $activeSlave.combatSkill = 1>> + <<set $activeSlave.career = either("a security guard", "a mercenary", "an enforcer", "a private detective", "a bouncer", "a prison guard", "a street thug", "a gang member", "a bounty hunter")>> <<if $seeDicks > 0>> - <<set $JFCS.dick = 3, $JFCS.balls = 3, $JFCS.prostate = 3, $JFCS.hormones = -2, $JFCS.hormoneBalance = -500>> + <<set $activeSlave.dick = random(3,6), $activeSlave.balls = random(3,6), $activeSlave.scrotum = $activeSlave.balls, $activeSlave.prostate = either(1,1,1,2,2,3)>> <</if>> /* Closes Security */ /* Opens management */ - <<case "headgirl">> - <<set $JFCS.fetish = "dom", $JFCS.vagina = 0, $JFCS.entertainSkill = 101, $JFCS.whoreSkill = 101, $JFCS.analSkill = 101, $JFCS.oralSkill = 101, $JFCS.vaginalSkill = 101, $JFCS.career = either("a lawyer", "a leading arcology citizen", "a military officer", "a model-UN star", "a politician", "a student council president", "a Queen")>> + <<case "Headgirl">> + <<set $activeSlave.devotion = 90, $activeSlave.trust = 100, $activeSlave.health = random(80,95), $activeSlave.fetish = "dom", $activeSlave.fetishStrength = 100, $activeSlave.intelligenceImplant = 1, $activeSlave.energy = random(70,90), $activeSlave.intelligence = either(2,2,3), $activeSlave.entertainSkill = 100, $activeSlave.whoreSkill = 100, $activeSlave.analSkill = 100, $activeSlave.oralSkill = 100, $activeSlave.vaginalSkill = 100, $activeSlave.career = either("a lawyer", "a military officer", "a politician")>> <<if $seeDicks > 0>> - <<set $JFCS.dick = 3>> + <<set $activeSlave.dick = random(3,5), $activeSlave.balls = random(3,6), $activeSlave.scrotum = $activeSlave.balls, $activeSlave.prostate = either(1,1,2)>> <</if>> + <<set $activeSlave.vagina = random(3,4)>> <<if $AgePenalty == 0>> - <<set $JFCS.age = random(36,$retirementAge)>> + <<set $activeSlave.actualAge = random(36,$retirementAge-5)>> <<else>> - <<set $JFCS.age = random($minimumSlaveAge,$retirementAge)>> + <<set $activeSlave.actualAge = random(20,$retirementAge-5)>> <</if>> - <<case "teacher">> - <<set $JFCS.age = random(36,$retirementAge), $JFCS.intelligenceImplant = 1, $JFCS.face = random(41,60), $JFCS.career = either("a librarian", "a principal", "a private instructor", "a professor", "a scholar", "a scientist", "a teacher", "a teaching assistant")>> - <<case "nurse">> - <<set <<set $JFCS.age = random(36,$retirementAge) , $JFCS.fetish = "dom", $JFCS.muscles = random(6,50), $JFCS.face = random(41,60), $JFCS.career = either ("a doctor", "a medic", "a medical student", "a nurse", "a paramedic")>> - <<case "already pregnant attendant that has children">> - <<set $JFCS.age = random(36,$retirementAge), $JFCS.eyes = -2, $JFCS.fetish = either("dom","none"), $JFCS.ovaries = 1, $JFCS.bellyPreg = 15001, $JFCS.career = either ("a counselor", "a dispatch officer", "a lifeguard", "a masseuse", "a psychologist", "a therapist"), $JFCS.births = random (1,3), $JFCS.bellyPreg = 15001, $JFCS.pregKnown = 1, $JFCS.pregSource = 0 $JFCS.pregWeek = random(1,15)>> - <<case "not already pregnant attendant that does not have children">> - <<set $JFCS.age = random(36,$retirementAge), $JFCS.eyes = -2, $JFCS.fetish = either("dom","none"), $JFCS.ovaries = 1, $JFCS.bellyPreg = 15001, $JFCS.career = either ("a counselor", "a dispatch officer", "a lifeguard", "a masseuse", "a psychologist", "a therapist"), $JFCS.bellyImplant = 2001, $JFCS.births = 0>> - <<case "stewardess">> - <<set $JFCS.health = random(80,95), $JFCS.energy = random(96,100), $JFCS.fetish = "dom", $JFCS.fetishKown = 1, $JFCS.career = either("a barista", "a bartender", "a caregiver", "a charity worker", "a professional bartender", "a secretary", "a wedding planner", "an air hostess", "an estate agent", "an investor", "an office worker")>> - <<case "milkmaid">> - <<set $JFCS.muscles = random(31,60), $JFCS.oral = random(31,60), $JFCS.sexualQuirk = "caring", $JFCS.behavioralQuirk = "funny", $JFCS.career = either("a dairy worker", "a farmer's daughter", "a rancher", "a veterinarian")>> + <<set $activeSlave.physicalAge = $activeSlave.actualAge, $activeSlave.visualAge = $activeSlave.actualAge, $activeSlave.ovaryAge = $activeSlave.actualAge>> + <<case "Teacher">> + <<set $activeSlave.devotion = 80, $activeSlave.trust = 80, $activeSlave.health = random(80,95), $activeSlave.fetish = "dom", $activeSlave.fetishStrength = 100, $activeSlave.energy = random(70,90), $activeSlave.intelligenceImplant = 1, $activeSlave.intelligence = 3, $activeSlave.entertainSkill = 100, $activeSlave.whoreSkill = 100, $activeSlave.analSkill = 100, $activeSlave.oralSkill = 100, $activeSlave.vaginalSkill = 100, $activeSlave.face = random(41,90), $activeSlave.career = either("a librarian", "a principal", "a private instructor", "a professor", "a scholar", "a scientist", "a teacher", "a teaching assistant")>> <<if $seeDicks > 0>> - <<set $JFCS.dick = 3, $JFCS.balls = 3>> + <<set $activeSlave.dick = random(3,5), $activeSlave.balls = random(3,6), $activeSlave.scrotum = $activeSlave.balls, $activeSlave.prostate = either(1,1,1,2,2,3)>> + <</if>> + <<set $activeSlave.actualAge = random(36,$retirementAge-3)>> + <<set $activeSlave.vagina = random(3,4)>> + <<set $activeSlave.physicalAge = $activeSlave.actualAge, $activeSlave.visualAge = $activeSlave.actualAge, $activeSlave.ovaryAge = $activeSlave.actualAge>> + <<case "Nurse">> + <<set $activeSlave.devotion = 80, $activeSlave.trust = 80, $activeSlave.health = random(80,95), $activeSlave.fetish = "dom", $activeSlave.fetishStrength = 100, $activeSlave.muscles = random(6,50), $activeSlave.face = random(41,90), $activeSlave.sexualQuirk = "caring", $activeSlave.career = either("a doctor", "a medic", "a medical student", "a nurse", "a paramedic"), $activeSlave.intelligenceImplant = 1, $activeSlave.intelligence = either(2,2,3)>> + <<set $activeSlave.actualAge = random(36,$retirementAge-3)>> + <<set $activeSlave.physicalAge = $activeSlave.actualAge, $activeSlave.visualAge = $activeSlave.actualAge, $activeSlave.ovaryAge = $activeSlave.actualAge>> + <<case "Motherly Attendant">> + <<set $activeSlave.devotion = 90, $activeSlave.trust = 90, $activeSlave.health = random(80,95), $activeSlave.fetish = "submissive", $activeSlave.fetishStrength = 100, $activeSlave.face = random(60,90)>> + <<set $activeSlave.career = either("a counselor", "a dispatch officer", "a lifeguard", "a masseuse", "a psychologist", "a therapist"), $activeSlave.birthsTotal = random(1,3), $activeSlave.pregKnown = 1, $activeSlave.preg = random(20,35), $activeSlave.pregWeek = $activeSlave.preg>> + <<SetBellySize $activeSlave>> + <<set $activeSlave.actualAge = random(36,$retirementAge-3)>> + <<set $activeSlave.vagina = random(3,4)>> + <<set $activeSlave.physicalAge = $activeSlave.actualAge, $activeSlave.visualAge = $activeSlave.actualAge, $activeSlave.ovaryAge = $activeSlave.actualAge>> + <<case "Attendant">> + <<set $activeSlave.devotion = 90, $activeSlave.trust = 90, $activeSlave.health = random(80,95), $activeSlave.intelligenceImplant = 1, $activeSlave.intelligence = either(1,1,1,2,2,3), $activeSlave.fetish = "submissive", $activeSlave.fetishStrength = 100, $activeSlave.eyes = either(-2, 1, 1), $activeSlave.preg = 0, $activeSlave.face = random(60,90), $activeSlave.career = either("a counselor", "a masseuse", "a therapist")>> + <<set $activeSlave.actualAge = random(26,$retirementAge-3)>> + <<set $activeSlave.physicalAge = $activeSlave.actualAge, $activeSlave.visualAge = $activeSlave.actualAge, $activeSlave.ovaryAge = $activeSlave.actualAge>> + <<case "Stewardess">> + <<set $activeSlave.devotion = 80, $activeSlave.trust = 80, $activeSlave.health = random(80,95), $activeSlave.energy = random(70,90), $activeSlave.intelligenceImplant = 1, $activeSlave.intelligence = either(1,1,1,2,2,3), $activeSlave.fetish = "dom", $activeSlave.fetishStrength = 100, $activeSlave.career = either("a barista", "a bartender", "a caregiver", "a charity worker", "a professional bartender", "a secretary", "a wedding planner", "an air hostess", "an estate agent", "an investor", "an office worker")>> + <<case "Milkmaid">> + <<set $activeSlave.devotion = 80, $activeSlave.trust = 80, $activeSlave.health = random(80,95), $activeSlave.muscles = random(31,60), $activeSlave.oralSkill = random(31,60), $activeSlave.sexualQuirk = "caring", $activeSlave.behavioralQuirk = "funny", $activeSlave.career = either("a dairy worker", "a farmer's daughter", "a rancher", "a veterinarian"), $activeSlave.intelligenceImplant = 1, $activeSlave.intelligence = either(1,1,1,2,2)>> + <<if $seeDicks > 0>> + <<set $activeSlave.dick = random(3,5), $activeSlave.balls = random(4,9), $activeSlave.scrotum = $activeSlave.balls, $activeSlave.prostate = either(1,1,1,2)>> <</if>> <<if $AgePenalty == 0>> - <<set $JFCS.age = random(36,$retirementAge)>> + <<set $activeSlave.actualAge = random(36,$retirementAge-5)>> <<else>> - <<set $JFCS.age = random($minimumSlaveAge,$retirementAge)>> + <<set $activeSlave.actualAge = random(20,$retirementAge-5)>> <</if>> - - <<if $recruiter != 0>> - <<switch $recruiter>> - <<set $JFCS.devotion = random(51,60), $JFCS.entertainSkill = 101, $JFCS.career = either("a club recruiter", "a college scout", "a cult leader", "a girl scout", "a military recruiter", "a missionary", "a political activist", "a princess")>> - <<case 1>> - <<set $JFCS.devotion = random(51,60), $JFCS.entertainSkill = 101, $JFCS.career = either("a club recruiter", "a college scout", "a cult leader", "a girl scout", "a military recruiter", "a missionary", "a political activist", "a princess"), $JFCS.analCount = 101, $JFCS.oralCount = 101>> - <<case 2>> - <<set $JFCS.preg = random(6,10), $JFCS.pregKnown = 1, $JFCS.pregSource = 0 $JFCS.pregWeek = random(1,15)>> - <<case 3>> - <<set $JFCS.inflation = 3, $JFCS.bellyImplant = 2001>> - <<case 4>> - <<set $JFCS.dick = 3, $JFCS.balls = 3, $JFCS.prostate = 3, $JFCS.hormones = -2, $JFCS.hormoneBalance = -500>> - <<case 5>> - <<set $JFCS.face = random(10,20), $JFCS.ovaries = 0>> - <<case 6>> - <<set $JFCS.health = random(81,100), $JFCS.face = random(11,20)>> - <</switch>> - <</if>> - /* Closes management */ - /* Opens entertain */ - <<case "dj">> - <<set $JFCS.eyes = -2, $JFCS.entertainSkill = 101, $JFCS.muscles = random(6,95), $JFCS.face = random(96,100), $JFCS.career = either("a classical dancer", "a classical musician", "a dancer", "a house DJ", "a musician", "an aspiring pop star")>> - <<case "madam">> - <<set $JFCS.devotion = random(51,60), $JFCS.whoreSkill = 101, $JFCS.career = either("a Futanari Sister", "a child prostitute", "a criminal", "a juvenile delinquent", "a mistress", "a model", "a pageant star", "a porn star", "a prostitute", "a saleswoman", "a serial divorcee", "a stripper", "a trophy wife", "an exotic dancer", "a cum dump", "a meat toilet")>> + <<set $activeSlave.physicalAge = $activeSlave.actualAge, $activeSlave.visualAge = $activeSlave.actualAge, $activeSlave.ovaryAge = $activeSlave.actualAge>> + /* Closes management */ + /* Opens entertain */ + <<case "DJ">> + <<set $activeSlave.devotion = 80, $activeSlave.trust = 80, $activeSlave.health = random(80,95), $activeSlave.entertainSkill = 100, $activeSlave.muscles = random(6,30), $activeSlave.face = random(80,100), $activeSlave.career = either("a classical dancer", "a classical musician", "a dancer", "a house DJ", "a musician", "an aspiring pop star")>> + <<case "Madam">> + <<set $activeSlave.devotion = 80, $activeSlave.trust = 80, $activeSlave.health = random(80,95), $activeSlave.whoreSkill = 100, $activeSlave.career = either("a business owner", "a manager", "a pimp", "a procuress", "an innkeeper")>> <<if $seeDicks > 0>> - <<set $JFCS.dick = 3, $JFCS.balls = 3, $JFCS.prostate = 3, $JFCS.hormones = -2, $JFCS.hormoneBalance = -500>> + <<set $activeSlave.dick = random(3,5), $activeSlave.balls = random(3,5), $activeSlave.scrotum = $activeSlave.balls, $activeSlave.prostate = either(1,1,1,2)>> <</if>> <<if $AgePenalty == 0>> - <<set $JFCS.age = random(36,$retirementAge)>> + <<set $activeSlave.actualAge = random(36,$retirementAge-5)>> <<else>> - <<set $JFCS.age = random($minimumSlaveAge,$retirementAge)>> - <</if>> - <<case "lurcher">> - <<set $JFCS.devotion = random(51,60), $JFCS.trust = random (-100,-19), $JFCS.health = random (61,70)>> - <<if $seeDicks > 0>> - <<set $JFCS.dick = 3>> + <<set $activeSlave.actualAge = random(20,$retirementAge-5)>> <</if>> + <<set $activeSlave.physicalAge = $activeSlave.actualAge, $activeSlave.visualAge = $activeSlave.actualAge, $activeSlave.ovaryAge = $activeSlave.actualAge>> <<case "Concubine">> - <<set $JFCS.prestige = 3, $JFCS.oralCount = 201, $JFCS.analCount = 201, $JFCS.vaginalCount = 201, $JFCS.mammaryCount = 201, $JFCS.penetrativeCount = 201, $JFCS.entertainSkill = 101, $JFCS.face = random(96,100), $JFCS.devotion = random(96,100), $JFCS.trust = random(96,100), $JFCS.trust = random (-100,-19), $JFCS.health = random (61,70)>> + <<set $activeSlave.prestige = 3, $activeSlave.intelligenceImplant = 1, $activeSlave.energy = random(80,100), $activeSlave.intelligence = either(2,2,3), $activeSlave.entertainSkill = 100, $activeSlave.whoreSkill = 100, $activeSlave.analSkill = 100, $activeSlave.oralSkill = 100, $activeSlave.vaginalSkill = 100, $activeSlave.face = 100, $activeSlave.devotion = random(90,95), $activeSlave.trust = random(90,100), $activeSlave.health = random(60,80)>> /* Closes Entertain */ <</switch>> <</widget>> \ No newline at end of file