From c78bf6b83afa53346fcaf6858d5948b350fbf916 Mon Sep 17 00:00:00 2001 From: Jones <Jones> Date: Sat, 7 Dec 2019 00:30:42 +0100 Subject: [PATCH] more health changes --- src/SecExp/attackHandler.tw | 28 +-- src/SecExp/rebellionReport.tw | 32 +-- src/SecExp/secExpSmilingMan.tw | 7 +- src/endWeek/illness.js | 16 +- src/npc/databases/dSlavesDatabase.tw | 222 +++++++++--------- src/npc/databases/dfSlavesDatabase.tw | 18 +- src/npc/descriptions/fBellyFuck.tw | 2 +- src/npc/descriptions/limbs.js | 6 +- src/npc/fAbuse.tw | 2 +- src/npc/fFeelings.tw | 8 +- src/npc/rgASDump.tw | 2 +- src/npc/startingGirls/startingGirls.tw | 6 +- src/npc/uploadSlave.tw | 7 +- src/player/js/PlayerState.js | 25 +- src/pregmod/beastFucked.tw | 4 +- src/pregmod/birthStorm.tw | 4 +- src/pregmod/csec.tw | 7 +- src/pregmod/eliteSlave.tw | 4 +- src/pregmod/eliteTakeOverResult.tw | 4 +- src/pregmod/fSlaveFeed.tw | 2 +- src/pregmod/fSlaveSlaveDickConsummate.tw | 2 +- src/pregmod/fillUpButt.tw | 2 +- src/pregmod/fillUpFace.tw | 2 +- src/pregmod/forceFeeding.tw | 2 +- src/pregmod/newChildIntro.tw | 34 +-- src/pregmod/organFarmOptions.tw | 92 ++++---- src/pregmod/pRaped.tw | 8 +- src/pregmod/reTheSirenStrikesBack.tw | 13 +- src/pregmod/saAgent.tw | 2 +- src/pregmod/saClothes.tw | 11 +- src/pregmod/saInflation.tw | 95 ++++---- src/pregmod/seFCTVremote.tw | 6 +- src/pregmod/seFCTVshows.tw | 48 ++-- src/pregmod/widgets/bodySwapReaction.tw | 4 +- src/pregmod/widgets/bodyswapWidgets.tw | 7 +- src/pregmod/widgets/pregmodWidgets.tw | 6 +- src/pregmod/widgets/seBirthWidgets.tw | 26 +- src/societies/aztec/slaveSacrifice.tw | 2 +- src/uncategorized/arcadeReport.tw | 28 +-- src/uncategorized/bodyModification.tw | 6 +- src/uncategorized/brothelReport.tw | 35 +-- src/uncategorized/cellblockReport.tw | 36 +-- src/uncategorized/clinicReport.tw | 48 ++-- src/uncategorized/clubReport.tw | 32 +-- src/uncategorized/customSlave.tw | 13 +- src/uncategorized/dairyReport.tw | 40 ++-- src/uncategorized/genericPlotEvents.tw | 85 +++++-- src/uncategorized/hgApplication.tw | 2 +- src/uncategorized/hgSelect.tw | 4 +- src/uncategorized/householdLiquidator.tw | 5 +- src/uncategorized/jeSlaveDispute.tw | 18 +- src/uncategorized/lawCompliance.tw | 22 +- src/uncategorized/masterSuiteReport.tw | 12 +- src/uncategorized/motherDaughterWorkaround.tw | 2 +- src/uncategorized/multiImplant.tw | 77 +++--- src/uncategorized/newSlaveIntro.tw | 31 +-- src/uncategorized/nextWeek.tw | 2 +- src/uncategorized/pBombing.tw | 3 +- 58 files changed, 717 insertions(+), 552 deletions(-) diff --git a/src/SecExp/attackHandler.tw b/src/SecExp/attackHandler.tw index 470fd99e5cd..5b70d7dfe92 100644 --- a/src/SecExp/attackHandler.tw +++ b/src/SecExp/attackHandler.tw @@ -274,7 +274,7 @@ <<set _woundChance -= 2>> <</if>> <<set _woundChance -= 0.25 * (getLimbCount($Bodyguard, 105))>> - <<if $Bodyguard.health >= 50>> + <<if $Bodyguard.health.condition >= 50>> <<set _woundChance -= 1>> <</if>> <<if $Bodyguard.weight > 130>> @@ -318,18 +318,18 @@ <<set _i = $slaveIndices[$Bodyguard.ID]>> <<if $woundType == 1>> <<set $slaves[_i].voice = 0>> - <<set $slaves[_i].health -= 60>> + <<run healthDamage($slaves[$i], 60>> <<elseif $woundType == 2>> <<set $slaves[_i].eyes = -2>> - <<set $slaves[_i].health -= 30>> + <<run healthDamage($slaves[$i], 30>> <<elseif $woundType == 3>> <<run removeLimbs($slaves[_i], "all")>> - <<set $slaves[_i].health = -80>> + <<run healthDamage($slaves[$i], 80>> <<elseif $woundType >= 4>> - <<if $slaves[_i].health >= -60>> - <<set $slaves[_i].health -= 30>> + <<if $slaves[_i].health.health >= -60>> + <<run healthDamage($slaves[$i], 30>> <<else>> - <<set $slaves[_i].health = -90>> + <<run healthDamage($slaves[$i], -90 - $slaves[$i].health.health>> <</if>> <</if>> <</if>> @@ -400,7 +400,7 @@ <<set _woundChance -= 3>> <</if>> <<set _woundChance -= 0.25 * (getLimbCount($HeadGirl, 105))>> - <<if $HeadGirl.health >= 50>> + <<if $HeadGirl.health.condition >= 50>> <<set _woundChance -= 2>> <</if>> <<if $HeadGirl.weight > 130>> @@ -444,18 +444,18 @@ <<set _i = $slaveIndices[$HeadGirl.ID]>> <<if $woundType == 1>> <<set $slaves[_i].voice = 0>> - <<set $slaves[_i].health -= 60>> + <<run healthDamage($slaves[$i], 60>> <<elseif $woundType == 2>> <<set $slaves[_i].eyes = -2>> - <<set $slaves[_i].health -= 30>> + <<run healthDamage($slaves[$i], 30>> <<elseif $woundType == 3>> <<run removeLimbs($slaves[_i], "all")>> - <<set $slaves[_i].health = -80>> + <<run healthDamage($slaves[$i], 80>> <<elseif $woundType >= 4>> - <<if $slaves[_i].health >= -60>> - <<set $slaves[_i].health -= 30>> + <<if $slaves[_i].health.health >= -60>> + <<run healthDamage($slaves[$i], 30>> <<else>> - <<set $slaves[_i].health = -90>> + <<run healthDamage($slaves[$i], -90 - $slaves[$i].health.health>> <</if>> <</if>> <</if>> diff --git a/src/SecExp/rebellionReport.tw b/src/SecExp/rebellionReport.tw index cb2eebbb597..49492562a70 100644 --- a/src/SecExp/rebellionReport.tw +++ b/src/SecExp/rebellionReport.tw @@ -567,7 +567,7 @@ <<set _woundChance -= 2>> <</if>> <<set _woundChance -= 0.25 * (getLimbCount($Concubine, 105))>> - <<if $Concubine.health >= 50>> + <<if $Concubine.health.condition >= 50>> <<set _woundChance -= 1>> <</if>> <<if $Concubine.weight > 130>> @@ -615,10 +615,10 @@ <<run removeLimbs($Concubine, "all")>> <<elseif $woundType >= 4>> a stray shot severely wounded $him. - <<if $Concubine.health >= -60>> - <<set $Concubine.health -= 30>> + <<if $Concubine.health.health >= -60>> + <<run healthDamage($Concubine, 30>> <<else>> - <<set $Concubine.health = -90>> + <<run healthDamage($Concubine, 90)>> <</if>> <</if>> <</if>> @@ -628,7 +628,7 @@ <<set _woundChance -= 2>> <</if>> <<set _woundChance -= 0.25 * (getLimbCount($Bodyguard, 105))>> - <<if $Bodyguard.health >= 50>> + <<if $Bodyguard.health.condition >= 50>> <<set _woundChance -= 1>> <</if>> <<if $Bodyguard.weight > 130>> @@ -676,10 +676,10 @@ <<run removeLimbs($Bodyguard, "all")>> <<elseif $woundType >= 4>> A stray shot severely wounded _him2. - <<if $Bodyguard.health >= -60>> - <<set $Bodyguard.health -= 30>> + <<if $Bodyguard.health.health >= -60>> + <<run healthDamage($Bodyguard, 30)>> <<else>> - <<set $Bodyguard.health = -90>> + <<set $Bodyguard.health = -90 - $Bodyguard.health.health>> <</if>> <</if>> <</if>> @@ -736,7 +736,7 @@ <<set _woundChance -= 2>> <</if>> <<set _woundChance -= 0.25 * (getLimbCount($Concubine, 105))>> - <<if $Concubine.health >= 50>> + <<if $Concubine.health.condition >= 50>> <<set _woundChance -= 1>> <</if>> <<if $Concubine.weight > 130>> @@ -784,10 +784,10 @@ <<run removeLimbs($Concubine, "all")>> <<elseif $woundType >= 4>> a stray shot severely wounded $him. - <<if $Concubine.health >= -60>> - <<set $Concubine.health -= 30>> + <<if $Concubine.health.health >= -60>> + <<run healthDamage($Concubine, 30)>> <<else>> - <<set $Concubine.health = -90>> + <<run healthDamage($Concubine, -90 - $Concubine.health.health)>> <</if>> <</if>> <</if>> @@ -845,7 +845,7 @@ <<set _woundChance -= 2>> <</if>> <<set _woundChance -= 0.25 * (getLimbCount($Concubine, 105))>> - <<if $Concubine.health >= 50>> + <<if $Concubine.health.condition >= 50>> <<set _woundChance -= 1>> <</if>> <<if $Concubine.weight > 130>> @@ -893,10 +893,10 @@ <<run removeLimbs($Concubine, "all")>> <<elseif $woundType >= 4>> a stray shot severely wounded $him. - <<if $Concubine.health >= -60>> - <<set $Concubine.health -= 30>> + <<if $Concubine.health.health >= -60>> + <<run healthDamage($Concubine, 30)>> <<else>> - <<set $Concubine.health = -90>> + <<run healthDamage($Concubine, -90 - $Concubine.health.health)>> <</if>> <</if>> <</if>> diff --git a/src/SecExp/secExpSmilingMan.tw b/src/SecExp/secExpSmilingMan.tw index 749204989ad..7b53f91c93a 100644 --- a/src/SecExp/secExpSmilingMan.tw +++ b/src/SecExp/secExpSmilingMan.tw @@ -276,7 +276,12 @@ <<set $activeSlave.devotion = 5 * $relationshipLM>> <<set $activeSlave.trust = 5 * $relationshipLM>> <<set $activeSlave.face = random(10,50)>> - <<set $activeSlave.health = 70>> + <<set $activeSlave.health.condition = 70>> + <<set $activeSlave.health.shortDamage = 0>> + <<set $activeSlave.health.longDamage = 0>> + <<set $activeSlave.health.illness = 0>> + <<set $activeSlave.health.tired = 0>> + <<set $activeSlave.health.health = 70>> <<set $activeSlave.teeth = "normal">> <<set $activeSlave.areolae = 0>> <<set $activeSlave.anus = 0>> diff --git a/src/endWeek/illness.js b/src/endWeek/illness.js index de4287d9e04..28fe6724bae 100644 --- a/src/endWeek/illness.js +++ b/src/endWeek/illness.js @@ -15,7 +15,7 @@ */ window.illness = function illness(slave) { - let random = jsrandom(1, 100); // high rolls are good + const random = jsrandom(1, 100); // high rolls are good let assignBonus = 0; // bonus for healthy assignments // On the macro side of things disease could also happen to the acrology's population as the arcology becomes crowded, killing citizens and putting slaves at greater risk of getting ill. Again with upgrades/policies to mitigate the issue made availble TODO? if (slave.assignment === "rest" || slave.assignment === "rest in the spa" || slave.assignment === "get treatment in the clinic" || slave.assignment === "serve in the master suite" || slave.assignment === "please you") { @@ -60,7 +60,7 @@ window.illness = function illness(slave) { window.illnessPenalty = function illnessPenalty(slave) { // checks for illness (perhaps not needed, depending on implementation) and reduces the effectiveness of the slave accordingly -- 10, 25, 50, 85, 95% reduced if (slave.health.illness > 0) { - let penalty = (100 - Math.min(Math.pow(slave.health.illness, 2) * 5 + 5, 95)) / 100; + const penalty = (100 - Math.min(Math.pow(slave.health.illness, 2) * 5 + 5, 95)) / 100; return penalty; } else { return 1; @@ -68,7 +68,7 @@ window.illnessPenalty = function illnessPenalty(slave) { // checks for illness ( }; window.getIll = function getIll(slave) { // Once a new illness is rolled this determines how bad it is initially, chem levels seriously increase the chances of a higher initial value - let illness = jsrandom(1, 6) + jsrandom(1, 6) + jsrandom(1, 6) - Math.trunc(slave.health.chem / 15) ; + const illness = jsrandom(1, 6) + jsrandom(1, 6) + jsrandom(1, 6) - Math.trunc(slave.health.chem / 15) ; if (illness < 4) { slave.health.illness = 5; // 1.8% chance } else if (illness < 5) { @@ -83,11 +83,11 @@ window.getIll = function getIll(slave) { // Once a new illness is rolled this de }; window.nurseEffectiveness = function nurseEffectiveness(slave) { // A better nurse and/or less slaves/patients to look out for makes for a better chance of curing illness - let V = State.variables; - let clinicUpgrade = 1; // Creating a purchasable upgrade to increase the amount of slaves the nurse can handle -- TODO - let clinicScreening = 1; // Assumes the clinic is set to screening all slaves to improve their chances of staying healthy. Turning it off would allow the nurse to focus on just her patients in the clinic -- TODO + const V = State.variables; + const clinicUpgrade = 1; // Creating a purchasable upgrade to increase the amount of slaves the nurse can handle -- TODO + const clinicScreening = 1; // Assumes the clinic is set to screening all slaves to improve their chances of staying healthy. Turning it off would allow the nurse to focus on just her patients in the clinic -- TODO if (V.Nurse !== 0) { - let nurseEffectiveness = Math.trunc((V.Nurse.skill.nurse * clinicUpgrade / Math.min((V.CliniciIDs.length * 10 + (V.slaves.length * 2) * clinicScreening), 1)) * 20); + const nurseEffectiveness = Math.trunc((V.Nurse.skill.nurse * clinicUpgrade / Math.min((V.CliniciIDs.length * 10 + (V.slaves.length * 2) * clinicScreening), 1)) * 20); if (slave.health.illness > 1 && slave.assignment === "get treatment in the clinic") { if (nurseEffectiveness < 20) { return nurseEffectiveness; @@ -214,7 +214,7 @@ Carcinogens window.tired = function tired(slave) { - let V = State.variables; + const V = State.variables; let livingRules = 0; let assignment = 0; let muscles; diff --git a/src/npc/databases/dSlavesDatabase.tw b/src/npc/databases/dSlavesDatabase.tw index 8b21331368a..f3876e9ae0d 100644 --- a/src/npc/databases/dSlavesDatabase.tw +++ b/src/npc/databases/dSlavesDatabase.tw @@ -2,522 +2,522 @@ <<set _i = 900000>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Rose", _HS.birthName = "Rose", _HS.origin = "$He is a former maid with an unsettling obsessive streak.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, _HS.health = 40, _HS.devotion = 100, _HS.weight = 25, _HS.hColor = "chestnut", _HS.pubicHColor = "chestnut", _HS.hLength = 30, _HS.hStyle = "shoulder-length and in a bun", _HS.boobs = 700, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.entertainment = 1, _HS.clothes = "a nice maid outfit", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.career = "a maid", _HS.eyes = -1, _HS.eyewear = "corrective glasses">> +<<set _HS.slaveName = "Rose", _HS.birthName = "Rose", _HS.origin = "$He is a former maid with an unsettling obsessive streak.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, _HS.health.condition = 40, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 40, _HS.devotion = 100, _HS.weight = 25, _HS.hColor = "chestnut", _HS.pubicHColor = "chestnut", _HS.hLength = 30, _HS.hStyle = "shoulder-length and in a bun", _HS.boobs = 700, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.entertainment = 1, _HS.clothes = "a nice maid outfit", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.career = "a maid", _HS.eyes = -1, _HS.eyewear = "corrective glasses">> <<set $heroSlaves.push(_HS)>> /*maid dress, Excellent house slave, Will return if sold*/ /*Added origin, tweaked stats, made $him Submissive -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Red", _HS.birthName = "Red", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 22, _HS.physicalAge = 22, _HS.visualAge = 22, _HS.ovaryAge = 22, _HS.health = 20, _HS.devotion = 100, _HS.eyeColor = "blue", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.skin = "light", _HS.hStyle = "long and tied back", _HS.boobs = 400, _HS.butt = 2, _HS.vaginaLube = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.skill.anal = 100, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1>> +<<set _HS.slaveName = "Red", _HS.birthName = "Red", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 22, _HS.physicalAge = 22, _HS.visualAge = 22, _HS.ovaryAge = 22, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 100, _HS.eyeColor = "blue", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.skin = "light", _HS.hStyle = "long and tied back", _HS.boobs = 400, _HS.butt = 2, _HS.vaginaLube = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.skill.anal = 100, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1>> <<set $heroSlaves.push(_HS)>> /*changed eyes to blue, skin to light, double checked other stats*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Jewels", _HS.origin = "$He grew up sheltered and submissive, making $him an easy target for enslavement.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = -25, _HS.hColor = "light brown", _HS.pubicHColor = "light brown", _HS.skin = "pale", _HS.hStyle = "long", _HS.boobs = 650, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.intelligence = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.height = 165>> +<<set _HS.slaveName = "Jewels", _HS.origin = "$He grew up sheltered and submissive, making $him an easy target for enslavement.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = -25, _HS.hColor = "light brown", _HS.pubicHColor = "light brown", _HS.skin = "pale", _HS.hStyle = "long", _HS.boobs = 650, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.intelligence = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.height = 165>> <<set $heroSlaves.push(_HS)>> /*changed fetish from humiliation to submission, per original slave description, double checked other stats*/ /*Added origin -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Reine", _HS.origin = "$He is a former mercenary that ended up on a losing side in the byzantine Free City power games.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health = 60, _HS.devotion = -75, _HS.height = 190, _HS.muscles = 20, _HS.race = "white", _HS.hColor = "red", _HS.hStyle = "long and wild", _HS.boobs = 500, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.combat = 1, _HS.intelligence = -20, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishStrength = 100, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has beautiful Celtic warrior's tattoos in woad blue.", _HS.career = "a mercenary">> +<<set _HS.slaveName = "Reine", _HS.origin = "$He is a former mercenary that ended up on a losing side in the byzantine Free City power games.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health.condition = 60, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 60, _HS.devotion = -75, _HS.height = 190, _HS.muscles = 20, _HS.race = "white", _HS.hColor = "red", _HS.hStyle = "long and wild", _HS.boobs = 500, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.combat = 1, _HS.intelligence = -20, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishStrength = 100, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has beautiful Celtic warrior's tattoos in woad blue.", _HS.career = "a mercenary">> <<set $heroSlaves.push(_HS)>> /*Added origin, made some assumptions about $his background, changed fetish to submissive, added arrogant flaw -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Luna", _HS.birthName = "Luna", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.height = 157, _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hLength = 20, _HS.hStyle = "chin-length with bangs over one eye", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.butt = 3, _HS.buttTat = "tribal patterns", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.nosePiercing = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.clothes = "uncomfortable straps", _HS.attrXY = 40>> +<<set _HS.slaveName = "Luna", _HS.birthName = "Luna", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.height = 157, _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hLength = 20, _HS.hStyle = "chin-length with bangs over one eye", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.butt = 3, _HS.buttTat = "tribal patterns", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.nosePiercing = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.clothes = "uncomfortable straps", _HS.attrXY = 40>> <<set $heroSlaves.push(_HS)>> /*Tat should be lower back, "Wears a leather collar, a Scarab clitoris g-string, Tortoise shell leather harness, and a pair of black thigh high boots"*/ /*Corrected piercings -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Skye", _HS.birthName = "Skye", _HS.origin = "$He was fresh from the slave markets when you acquired $him.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = 20, _HS.weight = -20, _HS.height = 155, _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hLength = 40, _HS.hStyle = "chest-length", _HS.boobs = 500, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.nosePiercing = 2, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1>> +<<set _HS.slaveName = "Skye", _HS.birthName = "Skye", _HS.origin = "$He was fresh from the slave markets when you acquired $him.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 20, _HS.weight = -20, _HS.height = 155, _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hLength = 40, _HS.hStyle = "chest-length", _HS.boobs = 500, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.nosePiercing = 2, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1>> <<set $heroSlaves.push(_HS)>> /*Corrected piercings, added origin -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Piggy", _HS.birthName = "Chloë", _HS.origin = "$He was once a celebrity that protested the existence of slavery, but has now become a slave $himself.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = -75, _HS.weight = -20, _HS.eyeColor = "green", _HS.hColor = "dirty blonde", _HS.pubicHColor = "dirty blonde", _HS.skin = "white", _HS.hLength = 10, _HS.boobs = 300, _HS.butt = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.oral = 100, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishStrength = 100, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy">> +<<set _HS.slaveName = "Piggy", _HS.birthName = "Chloë", _HS.origin = "$He was once a celebrity that protested the existence of slavery, but has now become a slave $himself.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = -75, _HS.weight = -20, _HS.eyeColor = "green", _HS.hColor = "dirty blonde", _HS.pubicHColor = "dirty blonde", _HS.skin = "white", _HS.hLength = 10, _HS.boobs = 300, _HS.butt = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.oral = 100, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishStrength = 100, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy">> <<set $heroSlaves.push(_HS)>> /*Added origin, added bitchy, corrected eye color -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Sarah", _HS.birthName = "Sarah", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, _HS.health = 20, _HS.devotion = 20, _HS.height = 175, _HS.eyeColor = "grey", _HS.hColor = "dirty blonde", _HS.pubicHColor = "dirty blonde", _HS.skin = "white", _HS.hLength = 10, _HS.boobs = 400, _HS.butt = 2, _HS.face = 15, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.combat = 1, _HS.attrXX = 80, _HS.attrXY = 40, _HS.behavioralFlaw = "odd", _HS.custom.tattoo = "$He has an abstract tattoo of flowers and vines extending from $his left knee to $his pelvis to cover up a surgery scar. $His full name, blood type, and medical allergies are printed in matrix barcodes on each wrist.">> +<<set _HS.slaveName = "Sarah", _HS.birthName = "Sarah", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 20, _HS.height = 175, _HS.eyeColor = "grey", _HS.hColor = "dirty blonde", _HS.pubicHColor = "dirty blonde", _HS.skin = "white", _HS.hLength = 10, _HS.boobs = 400, _HS.butt = 2, _HS.face = 15, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.combat = 1, _HS.attrXX = 80, _HS.attrXY = 40, _HS.behavioralFlaw = "odd", _HS.custom.tattoo = "$He has an abstract tattoo of flowers and vines extending from $his left knee to $his pelvis to cover up a surgery scar. $His full name, blood type, and medical allergies are printed in matrix barcodes on each wrist.">> <<set $heroSlaves.push(_HS)>> /*Pretty face, barcodes on wrists, fighter*/ /*Corrected eyes, added combat skill, bisexual and odd, tweaked face -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Cuntbitch", _HS.birthName = "", _HS.birthSurname = "", _HS.origin = "$He was a slave trader until $he was betrayed by ambitious underlings and sold into enslavement.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 31, _HS.physicalAge = 31, _HS.visualAge = 31, _HS.ovaryAge = 31, _HS.health = 40, _HS.devotion = -100, _HS.muscles = 20, _HS.height = 183, _HS.race = "black", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "black", _HS.hStyle = "long and curly", _HS.boobs = 1400, _HS.boobsImplant = 800, _HS.nipplesPiercing = 2, _HS.boobsTat = "degradation", _HS.butt = 6, _HS.buttImplant = 3, _HS.buttTat = "degradation", _HS.lips = 35, _HS.lipsPiercing = 2, _HS.lipsTat = "degradation", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.vaginaTat = "degradation", _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "degradation", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.combat = 1, _HS.clothes = "restrictive latex", _HS.shoes = "heels", _HS.intelligence = -20, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has several 'tribal' style tattoos on $his arms from before $his enslavement.", _HS.career = "a slaver">> +<<set _HS.slaveName = "Cuntbitch", _HS.birthName = "", _HS.birthSurname = "", _HS.origin = "$He was a slave trader until $he was betrayed by ambitious underlings and sold into enslavement.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 31, _HS.physicalAge = 31, _HS.visualAge = 31, _HS.ovaryAge = 31, _HS.health.condition = 40, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 40, _HS.devotion = -100, _HS.muscles = 20, _HS.height = 183, _HS.race = "black", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "black", _HS.hStyle = "long and curly", _HS.boobs = 1400, _HS.boobsImplant = 800, _HS.nipplesPiercing = 2, _HS.boobsTat = "degradation", _HS.butt = 6, _HS.buttImplant = 3, _HS.buttTat = "degradation", _HS.lips = 35, _HS.lipsPiercing = 2, _HS.lipsTat = "degradation", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.vaginaTat = "degradation", _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "degradation", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.combat = 1, _HS.clothes = "restrictive latex", _HS.shoes = "heels", _HS.intelligence = -20, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has several 'tribal' style tattoos on $his arms from before $his enslavement.", _HS.career = "a slaver">> <<set $heroSlaves.push(_HS)>> /*Set birth name to 'unknown', tweaked obedience downwards, corrected tattoo's, added combat skill, clothes and shoes, arrogant -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Catherine", _HS.birthName = "Catherine", _HS.origin = "$He came from a wealthy background, but $he sold $himself into slavery to slake $his desire to submit to men and dominate women.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, _HS.health = 40, _HS.devotion = 20, _HS.nationality = "American", _HS.eyeColor = "blue", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.race = "white", _HS.hLength = 25, _HS.hStyle = "short and in a ponytail", _HS.boobs = 800, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.makeup = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.entertainment = 100, _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.attrXX = 55, _HS.attrXY = 60, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.eyes = -1, _HS.eyewear = "corrective glasses">> +<<set _HS.slaveName = "Catherine", _HS.birthName = "Catherine", _HS.origin = "$He came from a wealthy background, but $he sold $himself into slavery to slake $his desire to submit to men and dominate women.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, _HS.health.condition = 40, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 40, _HS.devotion = 20, _HS.nationality = "American", _HS.eyeColor = "blue", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.race = "white", _HS.hLength = 25, _HS.hStyle = "short and in a ponytail", _HS.boobs = 800, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.makeup = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.entertainment = 100, _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.attrXX = 55, _HS.attrXY = 60, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.eyes = -1, _HS.eyewear = "corrective glasses">> <<set $heroSlaves.push(_HS)>> /*corrected eye color, makeup, tweaked entertainskill, added 'arrogant' -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Lilly", _HS.birthName = "Lilly", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 30, _HS.height = 155, _HS.eyeColor = "green", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "extremely pale", _HS.hStyle = "long", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.vaginaTat = "degradation", _HS.anus = 3, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.attrXY = 40, _HS.hips = 2>> +<<set _HS.slaveName = "Lilly", _HS.birthName = "Lilly", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 30, _HS.height = 155, _HS.eyeColor = "green", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "extremely pale", _HS.hStyle = "long", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.vaginaTat = "degradation", _HS.anus = 3, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.attrXY = 40, _HS.hips = 2>> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Erica", _HS.birthName = "Erica", _HS.origin = "$He was sold into slavery after $his father was killed by political rivals.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = -10, _HS.devotion = 15, _HS.weight = -20, _HS.height = 152, _HS.markings = "freckled", _HS.eyes = 1, _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "fair", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clit = 4, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1>> +<<set _HS.slaveName = "Erica", _HS.birthName = "Erica", _HS.origin = "$He was sold into slavery after $his father was killed by political rivals.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health.condition = -10, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = -10, _HS.devotion = 15, _HS.weight = -20, _HS.height = 152, _HS.markings = "freckled", _HS.eyes = 1, _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "fair", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clit = 4, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1>> <<set $heroSlaves.push(_HS)>> /*corrected eyes, changed skin to 'freckled', tweaked height downward, added pseudophallus clit, added origin -BoneyM*/ /% corrected skin to fair?, changed markings to 'freckled' Bane70 %/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Sylvia", _HS.birthName = "Sylvia", _HS.origin = "$He was born a slave and knows no other life.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 26, _HS.physicalAge = 26, _HS.visualAge = 26, _HS.ovaryAge = 26, _HS.nationality = "Stateless", _HS.health = -10, _HS.devotion = 10, _HS.hColor = "black", _HS.hLength = 10, _HS.pubicHColor = "black", _HS.override_Skin = 1, _HS.skin = "spray tanned", _HS.boobs = 500, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "submissive", _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.career = "a slave">> +<<set _HS.slaveName = "Sylvia", _HS.birthName = "Sylvia", _HS.origin = "$He was born a slave and knows no other life.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 26, _HS.physicalAge = 26, _HS.visualAge = 26, _HS.ovaryAge = 26, _HS.nationality = "Stateless", _HS.health.condition = -10, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = -10, _HS.devotion = 10, _HS.hColor = "black", _HS.hLength = 10, _HS.pubicHColor = "black", _HS.override_Skin = 1, _HS.skin = "spray tanned", _HS.boobs = 500, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "submissive", _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.career = "a slave">> <<set $heroSlaves.push(_HS)>> /*Added origin, tweaked skills, added smart piercing set to submissive, removed buttslut -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Eryma", _HS.birthName = "Eryma", _HS.origin = "$He is a former gladiator that wagered $his freedom and lost.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, _HS.health = 100, _HS.devotion = -30, _HS.height = 175, _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 2, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.combat = 1, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.behavioralFlaw = "arrogant">> +<<set _HS.slaveName = "Eryma", _HS.birthName = "Eryma", _HS.origin = "$He is a former gladiator that wagered $his freedom and lost.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, _HS.health.condition = 100, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 100, _HS.devotion = -30, _HS.height = 175, _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 2, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.combat = 1, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.behavioralFlaw = "arrogant">> <<set $heroSlaves.push(_HS)>> /*fighter*/ /*Added combat skill, changed eye color and rules, added origin, added arrogant -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Amber", _HS.birthName = "Amber", _HS.origin = "$He is a former shut-in who built up enough debt to be sold into slavery after the death of $his parents.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = -100, _HS.weight = 40, _HS.eyeColor = "blue", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.skin = "pale", _HS.hStyle = "long", _HS.boobs = 800, _HS.face = 15, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.behavioralFlaw = "hates men", _HS.career = "a shut-in">> +<<set _HS.slaveName = "Amber", _HS.birthName = "Amber", _HS.origin = "$He is a former shut-in who built up enough debt to be sold into slavery after the death of $his parents.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = -100, _HS.weight = 40, _HS.eyeColor = "blue", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.skin = "pale", _HS.hStyle = "long", _HS.boobs = 800, _HS.face = 15, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.behavioralFlaw = "hates men", _HS.career = "a shut-in">> <<set $heroSlaves.push(_HS)>> /*SJW*/ /*Tweaked obedience downwards, increased weight and face, added origin, changed eye color, changed fetish to bisexual and added 'hates men' flaw -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Fio", _HS.birthName = "Fio", _HS.slaveSurname = "Rodan", _HS.birthSurname = "Rodan", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = -100, _HS.weight = -20, _HS.height = 175, _HS.hLength = 15, _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.boobs = 500, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.energy = 100, _HS.attrXY = 40, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has a tribal tattoo from $his right elbow up the shoulder and across $his back.">> +<<set _HS.slaveName = "Fio", _HS.birthName = "Fio", _HS.slaveSurname = "Rodan", _HS.birthSurname = "Rodan", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = -100, _HS.weight = -20, _HS.height = 175, _HS.hLength = 15, _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.boobs = 500, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.energy = 100, _HS.attrXY = 40, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has a tribal tattoo from $his right elbow up the shoulder and across $his back.">> <<set $heroSlaves.push(_HS)>> /*Corrected tattoo syntax, added nympho and arrogant -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Kiki", _HS.birthName = "Kiki", _HS.origin = "$He is a shinobi, and fanatically loyal to $his master.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 100, _HS.weight = -20, _HS.height = 175, _HS.nationality = "Japanese", _HS.race = "asian", _HS.origHColor = "black", _HS.override_H_Color = 1, _HS.hColor = "light purple", _HS.pubicHColor = "light purple", _HS.hLength = 10, _HS.hStyle = "short", _HS.boobs = 500, _HS.butt = 3, _HS.buttTat = "tribal patterns", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.whoring = 35, _HS.skill.entertainment = 35, _HS.skill.combat = 1, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.behavioralFlaw = "odd", _HS.custom.tattoo = "$He has Yakuza-style tattoos across $his back.", _HS.career = "an assassin">> +<<set _HS.slaveName = "Kiki", _HS.birthName = "Kiki", _HS.origin = "$He is a shinobi, and fanatically loyal to $his master.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 100, _HS.weight = -20, _HS.height = 175, _HS.nationality = "Japanese", _HS.race = "asian", _HS.origHColor = "black", _HS.override_H_Color = 1, _HS.hColor = "light purple", _HS.pubicHColor = "light purple", _HS.hLength = 10, _HS.hStyle = "short", _HS.boobs = 500, _HS.butt = 3, _HS.buttTat = "tribal patterns", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.whoring = 35, _HS.skill.entertainment = 35, _HS.skill.combat = 1, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.behavioralFlaw = "odd", _HS.custom.tattoo = "$He has Yakuza-style tattoos across $his back.", _HS.career = "an assassin">> <<set $heroSlaves.push(_HS)>> /*shinobi*/ /*Tweaked devotion upwards, added origin, corrected tattoo syntax, added odd quirk, added whoring and entertaining skill -BoneyM*/ /% added combat skill 'Shinobi' means ninja so $he would have combat skill by default %/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Lily", _HS.birthName = "Lily", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 10, _HS.weight = -20, _HS.height = 163, _HS.race = "white", _HS.eyeColor = "green", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.skin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 400, _HS.butt = 2, _HS.face = 55, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXY = 40>> +<<set _HS.slaveName = "Lily", _HS.birthName = "Lily", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 10, _HS.weight = -20, _HS.height = 163, _HS.race = "white", _HS.eyeColor = "green", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.skin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 400, _HS.butt = 2, _HS.face = 55, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXY = 40>> <<set $heroSlaves.push(_HS)>> /*Added green eyes, increased face, changed waist -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Terra", _HS.birthName = "Terra", _HS.ID = _i++, _HS.assignment = "be a servant", _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = -50, _HS.weight = -20, _HS.eyeColor = "amber", _HS.origHColor = "brown", _HS.override_H_Color = 1, _HS.hColor = "purple", _HS.pubicHColor = "purple", _HS.skin = "pale", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.clothes = "a nice maid outfit", _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "hates men">> +<<set _HS.slaveName = "Terra", _HS.birthName = "Terra", _HS.ID = _i++, _HS.assignment = "be a servant", _HS.birthWeek = random(0,51), _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = -50, _HS.weight = -20, _HS.eyeColor = "amber", _HS.origHColor = "brown", _HS.override_H_Color = 1, _HS.hColor = "purple", _HS.pubicHColor = "purple", _HS.skin = "pale", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.clothes = "a nice maid outfit", _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "hates men">> <<set $heroSlaves.push(_HS)>> /*Maid*/ /*Added 'hates men', changed eyes to amber, made $him a servant -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Feri", _HS.birthName = "Feri", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 26, _HS.physicalAge = 26, _HS.visualAge = 26, _HS.ovaryAge = 26, _HS.health = 20, _HS.devotion = -75, _HS.height = 175, _HS.hStyle = "long", _HS.hColor = "brown", _HS.pubicHColor = "brown", _HS.skin = "pale", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -20, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy">> +<<set _HS.slaveName = "Feri", _HS.birthName = "Feri", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 26, _HS.physicalAge = 26, _HS.visualAge = 26, _HS.ovaryAge = 26, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = -75, _HS.height = 175, _HS.hStyle = "long", _HS.hColor = "brown", _HS.pubicHColor = "brown", _HS.skin = "pale", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -20, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy">> <<set $heroSlaves.push(_HS)>> /*Snarky*/ /*Added 'submissive' and 'bitchy' -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Valentina", _HS.birthName = "Valentina", _HS.origin = "$He was once the bodyguard to a Russian drug lord, and was sold into slavery after his death by cocaine overdose.", _HS.ID = _i++, _HS.nationality = "Russian", _HS.birthWeek = random(0,51), _HS.actualAge = 29, _HS.physicalAge = 29, _HS.visualAge = 29, _HS.ovaryAge = 29, _HS.health = 100, _HS.devotion = 100, _HS.muscles = 100, _HS.height = 175, _HS.eyeColor = "green", _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.butt = 2, _HS.lips = 25, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.oral = 15, _HS.skill.anal = 35, _HS.skill.combat = 1, _HS.intelligence = 30, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a red star tattoo on $his back, and a hammer and sickle on $his right buttock.", _HS.custom.desc = "$He has a Slavic face with high cheekbones and a strong, pointed jaw. $He is a skilled martial artist.", _HS.faceShape = "masculine", _HS.career = "a bodyguard">> +<<set _HS.slaveName = "Valentina", _HS.birthName = "Valentina", _HS.origin = "$He was once the bodyguard to a Russian drug lord, and was sold into slavery after his death by cocaine overdose.", _HS.ID = _i++, _HS.nationality = "Russian", _HS.birthWeek = random(0,51), _HS.actualAge = 29, _HS.physicalAge = 29, _HS.visualAge = 29, _HS.ovaryAge = 29, _HS.health.condition = 100, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 100, _HS.devotion = 100, _HS.muscles = 100, _HS.height = 175, _HS.eyeColor = "green", _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.butt = 2, _HS.lips = 25, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.oral = 15, _HS.skill.anal = 35, _HS.skill.combat = 1, _HS.intelligence = 30, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a red star tattoo on $his back, and a hammer and sickle on $his right buttock.", _HS.custom.desc = "$He has a Slavic face with high cheekbones and a strong, pointed jaw. $He is a skilled martial artist.", _HS.faceShape = "masculine", _HS.career = "a bodyguard">> <<set $heroSlaves.push(_HS)>> /*Tweaked devotion up, changed eyes to green, corrected tattoo syntax, added combat skill -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Maria", _HS.birthName = "Maria", _HS.origin = "$He was sold into slavery on a legal technicality.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health = 40, _HS.devotion = 15, _HS.height = 155, _HS.race = "latina", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "brown", _HS.hLength = 25, _HS.hStyle = "in a bob", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.nipplesPiercing = 1, _HS.butt = 2, _HS.buttTat = "tribal patterns", _HS.face = -15, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.anus = 1, _HS.analArea = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.combat = 1, _HS.clothes = "attractive lingerie", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.sexualFlaw = "hates penetration">> +<<set _HS.slaveName = "Maria", _HS.birthName = "Maria", _HS.origin = "$He was sold into slavery on a legal technicality.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health.condition = 40, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 40, _HS.devotion = 15, _HS.height = 155, _HS.race = "latina", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "brown", _HS.hLength = 25, _HS.hStyle = "in a bob", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.nipplesPiercing = 1, _HS.butt = 2, _HS.buttTat = "tribal patterns", _HS.face = -15, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.anus = 1, _HS.analArea = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.combat = 1, _HS.clothes = "attractive lingerie", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.sexualFlaw = "hates penetration">> <<set $heroSlaves.push(_HS)>> /*fighter*/ /*Tweaked face down, added 'hates penetration' and combat skill -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Cecilia", _HS.birthName = "Cecilia", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 26, _HS.physicalAge = 26, _HS.visualAge = 26, _HS.ovaryAge = 26, _HS.health = 20, _HS.devotion = 100, _HS.height = 178, _HS.hColor = "brown", _HS.pubicHColor = "brown", _HS.skin = "white", _HS.hLength = 10, _HS.boobs = 650, _HS.nipplesPiercing = 2, _HS.boobsTat = "tribal patterns", _HS.butt = 3, _HS.buttTat = "tribal patterns", _HS.lipsPiercing = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.vaginaTat = "tribal patterns", _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.intelligence = 10, _HS.attrXY = 40>> +<<set _HS.slaveName = "Cecilia", _HS.birthName = "Cecilia", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 26, _HS.physicalAge = 26, _HS.visualAge = 26, _HS.ovaryAge = 26, _HS.health.condition = 40, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 40, _HS.devotion = 100, _HS.height = 178, _HS.hColor = "brown", _HS.pubicHColor = "brown", _HS.skin = "white", _HS.hLength = 10, _HS.boobs = 650, _HS.nipplesPiercing = 2, _HS.boobsTat = "tribal patterns", _HS.butt = 3, _HS.buttTat = "tribal patterns", _HS.lipsPiercing = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.vaginaTat = "tribal patterns", _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.intelligence = 10, _HS.attrXY = 40>> <<set $heroSlaves.push(_HS)>> /*Tweaked devotion up, added arrogant -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Elise", _HS.birthName = "Elise", _HS.origin = "$He is a spoiled former rich $girl who has been discarded by several former owners for $his attitude.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = -40, _HS.height = 155, _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.skin = "pale", _HS.hLength = 10, _HS.boobs = 400, _HS.butt = 2, _HS.buttTat = "tribal patterns", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.sexualFlaw = "hates penetration">> +<<set _HS.slaveName = "Elise", _HS.birthName = "Elise", _HS.origin = "$He is a spoiled former rich $girl who has been discarded by several former owners for $his attitude.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = -40, _HS.height = 155, _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.skin = "pale", _HS.hLength = 10, _HS.boobs = 400, _HS.butt = 2, _HS.buttTat = "tribal patterns", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.sexualFlaw = "hates penetration">> <<set $heroSlaves.push(_HS)>> /*hates sex*/ /*Changed eye color, hard to pick between 'hates penetration' and 'arrogant', chose the latter because it seems more central to the character. -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Santa", _HS.birthName = "Santa", _HS.origin = "$He claims that $he actually is Santa Claus.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = 10, _HS.height = 155, _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "strawberry blonde", _HS.pubicHColor = "strawberry blonde", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 650, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.intelligence = -50, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.sexualFlaw = "hates penetration", _HS.custom.desc = "$He has a verbal tic that causes $him to say 'ho, ho, ho' frequently.", _HS.weight = 35, _HS.clothes = "a Santa dress">> +<<set _HS.slaveName = "Santa", _HS.birthName = "Santa", _HS.origin = "$He claims that $he actually is Santa Claus.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 10, _HS.height = 155, _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "strawberry blonde", _HS.pubicHColor = "strawberry blonde", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 650, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.intelligence = -50, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.sexualFlaw = "hates penetration", _HS.custom.desc = "$He has a verbal tic that causes $him to say 'ho, ho, ho' frequently.", _HS.weight = 35, _HS.clothes = "a Santa dress">> <<set $heroSlaves.push(_HS)>> /*Changed eye color, added odd, tweaked vaginalSkill, added origin -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Joan", _HS.birthName = "Joan", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, _HS.health = 20, _HS.devotion = 15, _HS.height = 175, _HS.eyeColor = "blue", _HS.hColor = "brown", _HS.pubicHColor = "brown", _HS.hStyle = "long", _HS.boobs = 1000, _HS.boobsImplant = 600, _HS.butt = 4, _HS.face = 15, _HS.lips = 35, _HS.lipsImplant = 10, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.intelligence = 30, _HS.attrXX = 80, _HS.attrXY = 80, _HS.fetishKnown = 1>> +<<set _HS.slaveName = "Joan", _HS.birthName = "Joan", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 15, _HS.height = 175, _HS.eyeColor = "blue", _HS.hColor = "brown", _HS.pubicHColor = "brown", _HS.hStyle = "long", _HS.boobs = 1000, _HS.boobsImplant = 600, _HS.butt = 4, _HS.face = 15, _HS.lips = 35, _HS.lipsImplant = 10, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.intelligence = 30, _HS.attrXX = 80, _HS.attrXY = 80, _HS.fetishKnown = 1>> <<set $heroSlaves.push(_HS)>> /*heterochromia*/ /*Tweaked face upwards, changed eye color, changed health from 20 to 6 -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Belle", _HS.birthName = "Belle", _HS.origin = "Formerly used solely for titfucking, $he quickly became a nymphomaniac after experiencing 'proper' sex.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = -75, _HS.height = 155, _HS.boobs = 1200, _HS.boobsImplant = 1000, _HS.butt = 4, _HS.buttImplant = 3, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.intelligence = -30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.custom.tattoo = "$His breasts are tattooed with $his implant history, showing repeated additions.", _HS.sexualFlaw = "crude">> +<<set _HS.slaveName = "Belle", _HS.birthName = "Belle", _HS.origin = "Formerly used solely for titfucking, $he quickly became a nymphomaniac after experiencing 'proper' sex.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = -75, _HS.height = 155, _HS.boobs = 1200, _HS.boobsImplant = 1000, _HS.butt = 4, _HS.buttImplant = 3, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.intelligence = -30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.custom.tattoo = "$His breasts are tattooed with $his implant history, showing repeated additions.", _HS.sexualFlaw = "crude">> <<set $heroSlaves.push(_HS)>> /*rapey implant addict*/ /*Is 'rapey' a quirk? Guess so. Added odd. Changed eye color, added nympho, added origin. -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Sophia", _HS.birthName = "Sophia", _HS.origin = "A former Head Girl of a rich man's harem, $he is used to being in charge of others.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, _HS.health = 20, _HS.devotion = 25, _HS.height = 175, _HS.hColor = "brown", _HS.pubicHColor = "brown", _HS.skin = "white", _HS.hLength = 35, _HS.hStyle = "shoulder length", _HS.boobs = 1000, _HS.butt = 4, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXX = 0, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.behavioralFlaw = "arrogant">> +<<set _HS.slaveName = "Sophia", _HS.birthName = "Sophia", _HS.origin = "A former Head Girl of a rich man's harem, $he is used to being in charge of others.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20,, _HS.devotion = 25, _HS.height = 175, _HS.hColor = "brown", _HS.pubicHColor = "brown", _HS.skin = "white", _HS.hLength = 35, _HS.hStyle = "shoulder length", _HS.boobs = 1000, _HS.butt = 4, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXX = 0, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.behavioralFlaw = "arrogant">> <<set $heroSlaves.push(_HS)>> /*dislikes women*/ /*Added 'arrogant' and origin -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Fifi", _HS.birthName = "Fifi", _HS.slaveSurname = "la Mer", _HS.birthSurname = "la Mer", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 22, _HS.physicalAge = 22, _HS.visualAge = 22, _HS.ovaryAge = 22, _HS.health = 20, _HS.devotion = 25, _HS.height = 155, _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "ebony", _HS.race = "black", _HS.hLength = 10, _HS.hStyle = "short afro", _HS.boobs = 1000, _HS.nipplesPiercing = 2, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.clit = 3, _HS.clitPiercing = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.clothes = "attractive lingerie", _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.navelPiercing = 1>> +<<set _HS.slaveName = "Fifi", _HS.birthName = "Fifi", _HS.slaveSurname = "la Mer", _HS.birthSurname = "la Mer", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 22, _HS.physicalAge = 22, _HS.visualAge = 22, _HS.ovaryAge = 22, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 25, _HS.height = 155, _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "ebony", _HS.race = "black", _HS.hLength = 10, _HS.hStyle = "short afro", _HS.boobs = 1000, _HS.nipplesPiercing = 2, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.clit = 3, _HS.clitPiercing = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.clothes = "attractive lingerie", _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.navelPiercing = 1>> <<set $heroSlaves.push(_HS)>> /*big clit*/ /*Added big clit, increased nipple piercing, added clit piercing -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Jones", _HS.birthName = "Jones", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 25, _HS.physicalAge = 25, _HS.visualAge = 25, _HS.ovaryAge = 25, _HS.health = 40, _HS.devotion = 25, _HS.height = 175, _HS.race = "white", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "white", _HS.hLength = 40, _HS.hStyle = "long curls back in a ponytail", _HS.boobs = 400, _HS.butt = 1, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.combat = 1, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a large yakuza tattoo over $his shoulder, depicting roses and koi fishes swimming upstream.">> +<<set _HS.slaveName = "Jones", _HS.birthName = "Jones", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 25, _HS.physicalAge = 25, _HS.visualAge = 25, _HS.ovaryAge = 25, _HS.health.condition = 40, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 40, _HS.devotion = 25, _HS.height = 175, _HS.race = "white", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "white", _HS.hLength = 40, _HS.hStyle = "long curls back in a ponytail", _HS.boobs = 400, _HS.butt = 1, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.combat = 1, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a large yakuza tattoo over $his shoulder, depicting roses and koi fishes swimming upstream.">> <<set $heroSlaves.push(_HS)>> /*violent nymphomania, buttslut*/ /*Tweaked health upwards, corrected tattoo syntax, added combat skill -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Slave", _HS.birthName = "Vanessa", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 20, _HS.devotion = -75, _HS.height = 157, _HS.eyeColor = "blue", _HS.skin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 1200, _HS.butt = 3, _HS.lipsTat = "permanent makeup", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.oral = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a barcode tattooed on $his abdomen, and 'cut here' lines on $his arms and legs.", _HS.sexualFlaw = "self hating">> +<<set _HS.slaveName = "Slave", _HS.birthName = "Vanessa", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = -75, _HS.height = 157, _HS.eyeColor = "blue", _HS.skin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 1200, _HS.butt = 3, _HS.lipsTat = "permanent makeup", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.oral = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a barcode tattooed on $his abdomen, and 'cut here' lines on $his arms and legs.", _HS.sexualFlaw = "self hating">> <<set $heroSlaves.push(_HS)>> /*permashackles*/ /*Changed eyes to blue, added tattoos -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Carol", _HS.birthName = "Carol", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 60, _HS.weight = -20, _HS.height = 155, _HS.eyeColor = "blue", _HS.skin = "pale", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.boobs = 400, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a cherry blossom tattooed on $his forearm.", _HS.custom.desc = "$He is unnaturally flexible.">> +<<set _HS.slaveName = "Carol", _HS.birthName = "Carol", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 60, _HS.weight = -20, _HS.height = 155, _HS.eyeColor = "blue", _HS.skin = "pale", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.boobs = 400, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a cherry blossom tattooed on $his forearm.", _HS.custom.desc = "$He is unnaturally flexible.">> <<set $heroSlaves.push(_HS)>> /*red contacts*/ /*Reduced weight, changed eyes to blue, corrected tattoo syntax, added flexibility in customdesc, changed skin to pale -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Jennifer", _HS.birthName = "Jennifer", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 60, _HS.race = "white", _HS.hColor = "brunette", _HS.pubicHColor = "brunette", _HS.skin = "fair", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 3, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.entertainment = 35, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.height = 173>> +<<set _HS.slaveName = "Jennifer", _HS.birthName = "Jennifer", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 60, _HS.race = "white", _HS.hColor = "brunette", _HS.pubicHColor = "brunette", _HS.skin = "fair", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 3, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.entertainment = 35, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.height = 173>> <<set $heroSlaves.push(_HS)>> /*Added entertain skill -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Charity", _HS.birthName = "Charity", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 29, _HS.physicalAge = 29, _HS.visualAge = 29, _HS.ovaryAge = 29, _HS.health = 20, _HS.devotion = 90, _HS.race = "middle eastern", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "light olive", _HS.hLength = 80, _HS.hStyle = "very long", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.nipplesPiercing = 1, _HS.butt = 5, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.entertainment = 35, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has 'Charity' tattooed in cursive across the back of $his neck.">> +<<set _HS.slaveName = "Charity", _HS.birthName = "Charity", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 29, _HS.physicalAge = 29, _HS.visualAge = 29, _HS.ovaryAge = 29, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 90, _HS.race = "middle eastern", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "light olive", _HS.hLength = 80, _HS.hStyle = "very long", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.nipplesPiercing = 1, _HS.butt = 5, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.entertainment = 35, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has 'Charity' tattooed in cursive across the back of $his neck.">> <<set $heroSlaves.push(_HS)>> /*Changed $him to Arabic, corrected tattoo syntax, added entertain skill -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Riya", _HS.birthName = "Riya", _HS.origin = "$He grew up in a well-to-do family and discovered $his fetish for servitude in college, and $he decided to become the world's best slave and slave trainer in one.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 40, _HS.weight = -20, _HS.height = 155, _HS.race = "indo-aryan", _HS.eyeColor = "grey", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "brown", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.oral = 15, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a barcode of $his identifying information tattooed on $his left shoulder.", _HS.career = "a slaver">> +<<set _HS.slaveName = "Riya", _HS.birthName = "Riya", _HS.origin = "$He grew up in a well-to-do family and discovered $his fetish for servitude in college, and $he decided to become the world's best slave and slave trainer in one.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 40, _HS.weight = -20, _HS.height = 155, _HS.race = "indo-aryan", _HS.eyeColor = "grey", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "brown", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.oral = 15, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a barcode of $his identifying information tattooed on $his left shoulder.", _HS.career = "a slaver">> <<set $heroSlaves.push(_HS)>> /*Changed eyes to grey, reduced height and weight, added origin, smart piercing, entertain and whore skill (representing theoretical knowledge from being a trainer), added ear piercings -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Alice", _HS.birthName = "Alice", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 60, _HS.height = 155, _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 300, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a scar on $his abdomen from kidney surgery in $his youth.", _HS.sexualFlaw = "crude">> +<<set _HS.slaveName = "Alice", _HS.birthName = "Alice", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 60, _HS.height = 155, _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 300, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a scar on $his abdomen from kidney surgery in $his youth.", _HS.sexualFlaw = "crude">> <<set $heroSlaves.push(_HS)>> /*sexual one-upper*/ /*Changed eyes, added scar -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Raven", _HS.birthName = "Raven", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = 20, _HS.weight = -20, _HS.race = "white", _HS.eyeColor = "green", _HS.override_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.origHColor = "black", _HS.hColor = "black with blue highlights", _HS.eyebrowHColor = "black", _HS.pubicHColor = "black", _HS.underArmHColor = "black", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.nails = 2, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1>> +<<set _HS.slaveName = "Raven", _HS.birthName = "Raven", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 20, _HS.weight = -20, _HS.race = "white", _HS.eyeColor = "green", _HS.override_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.origHColor = "black", _HS.hColor = "black with blue highlights", _HS.eyebrowHColor = "black", _HS.pubicHColor = "black", _HS.underArmHColor = "black", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.nails = 2, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1>> <<set $heroSlaves.push(_HS)>> /*likes toys*/ /*Reduced weight, changed eyes, added nail polish -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Kino", _HS.birthName = "Kino", _HS.origin = "$He was formerly owned by someone who fancied themselves a geneticist, where $he acquired permanently discolored hair and odd fetishes.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 40, _HS.devotion = -75, _HS.height = 155, _HS.race = "white", _HS.eyeColor = "blue-green", _HS.override_H_Color = 1, _HS.hColor = "blue", _HS.pubicHColor = "blue", _HS.override_Skin = 1, _HS.skin = "spray tanned", _HS.hLength = 30, _HS.hStyle = "short, spiky, with a long shoulder-length lock leading from $his temples down, one on each side", _HS.boobs = 650, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.combat = 1, _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a vertical scar through $his right eye, is a dabbling artist, and is an oviposition fetishist.", _HS.eyes = -2>> +<<set _HS.slaveName = "Kino", _HS.birthName = "Kino", _HS.origin = "$He was formerly owned by someone who fancied themselves a geneticist, where $he acquired permanently discolored hair and odd fetishes.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 40, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 40, _HS.devotion = -75, _HS.height = 155, _HS.race = "white", _HS.eyeColor = "blue-green", _HS.override_H_Color = 1, _HS.hColor = "blue", _HS.pubicHColor = "blue", _HS.override_Skin = 1, _HS.skin = "spray tanned", _HS.hLength = 30, _HS.hStyle = "short, spiky, with a long shoulder-length lock leading from $his temples down, one on each side", _HS.boobs = 650, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.combat = 1, _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a vertical scar through $his right eye, is a dabbling artist, and is an oviposition fetishist.", _HS.eyes = -2>> <<set $heroSlaves.push(_HS)>> /*Added combat skill, increased health, added origin -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Vivienne", _HS.birthName = "Vivienne", _HS.origin = "$He is a former soldier who was sold into slavery after losing $his leg to an IED.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 39, _HS.physicalAge = 39, _HS.visualAge = 39, _HS.ovaryAge = 39, _HS.health = 20, _HS.devotion = 90, _HS.race = "white", _HS.eyeColor = "green", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.combat = 1, _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.attrXY = 1, _HS.fetishKnown = 1, _HS.backTat = "$He has a military tattoo on $his back.", _HS.custom.desc = "$His left leg is artificial, and $he has a number of scars on $his thigh and shoulder and a burn near $his temple.", _HS.career = "a soldier">> +<<set _HS.slaveName = "Vivienne", _HS.birthName = "Vivienne", _HS.origin = "$He is a former soldier who was sold into slavery after losing $his leg to an IED.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 39, _HS.physicalAge = 39, _HS.visualAge = 39, _HS.ovaryAge = 39, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 90, _HS.race = "white", _HS.eyeColor = "green", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.combat = 1, _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.attrXY = 1, _HS.fetishKnown = 1, _HS.backTat = "$He has a military tattoo on $his back.", _HS.custom.desc = "$His left leg is artificial, and $he has a number of scars on $his thigh and shoulder and a burn near $his temple.", _HS.career = "a soldier">> <<run configureLimbs(_HS, "left leg", 2)>> <<set $heroSlaves.push(_HS)>> /*missing left leg, burn scar, low sex drive, fighter*/ /*Added customdesc, fixed tattoo syntax, added combat skill, eye color and origin -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Lexi", _HS.birthName = "Lexi", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 25, _HS.weight = -20, _HS.height = 157, _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "bleached blonde", _HS.pubicHColor = "bleached blonde", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.oral = 35, _HS.attrXY = 40, _HS.fetishKnown = 1>> +<<set _HS.slaveName = "Lexi", _HS.birthName = "Lexi", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 25, _HS.weight = -20, _HS.height = 157, _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "bleached blonde", _HS.pubicHColor = "bleached blonde", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.oral = 35, _HS.attrXY = 40, _HS.fetishKnown = 1>> <<set $heroSlaves.push(_HS)>> /*Changed eyes to blue -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Blue", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 22, _HS.physicalAge = 22, _HS.visualAge = 22, _HS.ovaryAge = 22, _HS.health = 60, _HS.devotion = 35, _HS.height = 165, _HS.muscles = 20, _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "white", _HS.hStyle = "short", _HS.pubicHStyle = "bushy", _HS.boobs = 400, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 50, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.backTat = "$He has angel wings across $his back.", _HS.underArmHStyle = "bushy", _HS.clothes = "a comfortable bodysuit", _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug">> +<<set _HS.slaveName = "Blue", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 22, _HS.physicalAge = 22, _HS.visualAge = 22, _HS.ovaryAge = 22, _HS.health.condition = 60, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 60, _HS.devotion = 35, _HS.height = 165, _HS.muscles = 20, _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "white", _HS.hStyle = "short", _HS.pubicHStyle = "bushy", _HS.boobs = 400, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 50, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.backTat = "$He has angel wings across $his back.", _HS.underArmHStyle = "bushy", _HS.clothes = "a comfortable bodysuit", _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug">> <<set $heroSlaves.push(_HS)>> /*Fixed tattoo syntax -BoneyM "$He has hairy, unshaven armpits, bush and asscrack."*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Maya", _HS.birthName = "Maya", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health = 40, _HS.devotion = 100, _HS.height = 190, _HS.markings = "freckled", _HS.race = "white", _HS.eyeColor = "green", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.skin = "light", _HS.hLength = 10, _HS.boobs = 800, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.legsTat = "$His right thigh reads 'Fuck Me' in flowery script.", _HS.stampTat = "$He has a fairly generic tramp stamp.">> +<<set _HS.slaveName = "Maya", _HS.birthName = "Maya", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health.condition = 40, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 40, _HS.devotion = 100, _HS.height = 190, _HS.markings = "freckled", _HS.race = "white", _HS.eyeColor = "green", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.skin = "light", _HS.hLength = 10, _HS.boobs = 800, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.legsTat = "$His right thigh reads 'Fuck Me' in flowery script.", _HS.stampTat = "$He has a fairly generic tramp stamp.">> <<set $heroSlaves.push(_HS)>> /*Corrected tattoo syntax, changed skin to freckled, eyes to green, increased height -BoneyM*/ /% Corrected skin to light?, and changed markings to freckled Bane70 %/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Alexis", _HS.birthName = "Alexis", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 25, _HS.physicalAge = 25, _HS.visualAge = 25, _HS.ovaryAge = 25, _HS.health = 20, _HS.devotion = 60, _HS.muscles = 20, _HS.height = 150, _HS.race = "mixed race", _HS.eyeColor = "hazel", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "ebony", _HS.hStyle = "long", _HS.boobs = 800, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.clit = 1, _HS.clitPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 2, _HS.nosePiercing = 1, _HS.eyebrowPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -20, _HS.energy = 100, _HS.attrXY = 75, _HS.attrXX = 75, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a feminine personality despite $his high testosterone.", _HS.areolae = 2, _HS.nipples = "huge", _HS.voice = 1, _HS.navelPiercing = 1, _HS.tonguePiercing = 1>> +<<set _HS.slaveName = "Alexis", _HS.birthName = "Alexis", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 25, _HS.physicalAge = 25, _HS.visualAge = 25, _HS.ovaryAge = 25, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 60, _HS.muscles = 20, _HS.height = 150, _HS.race = "mixed race", _HS.eyeColor = "hazel", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "ebony", _HS.hStyle = "long", _HS.boobs = 800, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.clit = 1, _HS.clitPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 2, _HS.nosePiercing = 1, _HS.eyebrowPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -20, _HS.energy = 100, _HS.attrXY = 75, _HS.attrXX = 75, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a feminine personality despite $his high testosterone.", _HS.areolae = 2, _HS.nipples = "huge", _HS.voice = 1, _HS.navelPiercing = 1, _HS.tonguePiercing = 1>> <<set $heroSlaves.push(_HS)>> /*big clit*/ /*Changed eyes to hazel, increased clit, added a lot of piercings, changed fetish to nympho, fixed customdesc syntax -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Anneliese", _HS.birthName = "Anneliese", _HS.origin = "$He is a former Head Girl that fetishizes $his own degradation.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 31, _HS.physicalAge = 31, _HS.visualAge = 31, _HS.ovaryAge = 31, _HS.health = 20, _HS.devotion = 100, _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "golden", _HS.pubicHColor = "golden", _HS.skin = "pale", _HS.hStyle = "long", _HS.boobs = 800, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.anus = 2, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.clothes = "slutty jewelry", _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.fetishKnown = 1, _HS.custom.desc = "$He has the air of a princess.">> +<<set _HS.slaveName = "Anneliese", _HS.birthName = "Anneliese", _HS.origin = "$He is a former Head Girl that fetishizes $his own degradation.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 31, _HS.physicalAge = 31, _HS.visualAge = 31, _HS.ovaryAge = 31, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 100, _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "golden", _HS.pubicHColor = "golden", _HS.skin = "pale", _HS.hStyle = "long", _HS.boobs = 800, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.anus = 2, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.clothes = "slutty jewelry", _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.fetishKnown = 1, _HS.custom.desc = "$He has the air of a princess.">> <<set $heroSlaves.push(_HS)>> /*Changed eyes to blue, added origin, pierced ears, fixed customdesc syntax -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Riley", _HS.birthName = "Riley", _HS.origin = "$He sold $himself into slavery in an attempt to sate $his incredible sex drive.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 75, _HS.weight = -20, _HS.height = 180, _HS.hColor = "black", _HS.pubicHStyle = "black", _HS.skin = "pale", _HS.hLength = 10, _HS.pubicHStyle = "bald", _HS.underArmHStyle = "bald", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lipsPiercing = 2, _HS.tonguePiercing = 2, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.clitPiercing = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 100, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a scar on the back of $his head, concealed by $his hair.">> +<<set _HS.slaveName = "Riley", _HS.birthName = "Riley", _HS.origin = "$He sold $himself into slavery in an attempt to sate $his incredible sex drive.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 75, _HS.weight = -20, _HS.height = 180, _HS.hColor = "black", _HS.pubicHStyle = "black", _HS.skin = "pale", _HS.hLength = 10, _HS.pubicHStyle = "bald", _HS.underArmHStyle = "bald", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lipsPiercing = 2, _HS.tonguePiercing = 2, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.clitPiercing = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 100, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a scar on the back of $his head, concealed by $his hair.">> <<set $heroSlaves.push(_HS)>> /*compulsive masturbation*/ /*Moved customdesc to origin, added scar to customdesc, reduced weight, added nympho, added nipple and clit piercings -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Victoria", _HS.birthName = "Victoria", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = -7, _HS.devotion = 25, _HS.race = "white", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 650, _HS.boobsTat = "degradation", _HS.buttTat = "degradation", _HS.lipsTat = "degradation", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaTat = "degradation", _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "degradation", _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.addict = 999, _HS.intelligence = -90, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He is a permanent, irrecoverable aphrodisiac addict.">> +<<set _HS.slaveName = "Victoria", _HS.birthName = "Victoria", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health.condition = -7, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = -7, _HS.devotion = 25, _HS.race = "white", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 650, _HS.boobsTat = "degradation", _HS.buttTat = "degradation", _HS.lipsTat = "degradation", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaTat = "degradation", _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "degradation", _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.addict = 999, _HS.intelligence = -90, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He is a permanent, irrecoverable aphrodisiac addict.">> <<set $heroSlaves.push(_HS)>> /*Corrected customdesc syntax -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Aveline", _HS.birthName = "Aveline", _HS.origin = "$He was sold into slavery from a remote, primitive village.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 34, _HS.physicalAge = 34, _HS.visualAge = 34, _HS.ovaryAge = 34, _HS.health = 20, _HS.devotion = -75, _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.hLength = 25, _HS.hStyle = "in a bob", _HS.boobs = 400, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.stampTat = "$He has a barcode tattooed above $his butt.">> +<<set _HS.slaveName = "Aveline", _HS.birthName = "Aveline", _HS.origin = "$He was sold into slavery from a remote, primitive village.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 34, _HS.physicalAge = 34, _HS.visualAge = 34, _HS.ovaryAge = 34, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = -75, _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.hLength = 25, _HS.hStyle = "in a bob", _HS.boobs = 400, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.stampTat = "$He has a barcode tattooed above $his butt.">> <<set $heroSlaves.push(_HS)>> /*Added barcode tattoo and origin -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Emm", _HS.birthName = "Emm", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, _HS.health = 20, _HS.devotion = 40, _HS.weight = 20, _HS.race = "white", _HS.eyeColor = "green", _HS.hColor = "strawberry blonde", _HS.pubicHColor = "strawberry blonde", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 650, _HS.butt = 5, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.custom.desc = "$He is friendly, clever, and quick.">> +<<set _HS.slaveName = "Emm", _HS.birthName = "Emm", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 40, _HS.weight = 20, _HS.race = "white", _HS.eyeColor = "green", _HS.hColor = "strawberry blonde", _HS.pubicHColor = "strawberry blonde", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 650, _HS.butt = 5, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.custom.desc = "$He is friendly, clever, and quick.">> <<set $heroSlaves.push(_HS)>> /*fluctuating weight*/ /*Increased weight, added entertain and whore skill, added ear piercing, changed eyes -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Twenty", _HS.birthName = "Twenty", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = 40, _HS.weight = 20, _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "light", _HS.hStyle = "long", _HS.boobs = 800, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.intelligence = -50, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a paw print tattoo on $his left buttock.", _HS.custom.desc = "$He constantly uses 'pussy' and 'kitty' puns when permitted.", _HS.clothes = "kitty lingerie">> +<<set _HS.slaveName = "Twenty", _HS.birthName = "Twenty", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 40, _HS.weight = 20, _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "light", _HS.hStyle = "long", _HS.boobs = 800, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.intelligence = -50, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a paw print tattoo on $his left buttock.", _HS.custom.desc = "$He constantly uses 'pussy' and 'kitty' puns when permitted.", _HS.clothes = "kitty lingerie">> <<set $heroSlaves.push(_HS)>> /*Fixed tattoo and customdesc syntax -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Thorn", _HS.birthName = "Thorn", _HS.origin = "$He lived a hard life before becoming a slave.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 32, _HS.physicalAge = 32, _HS.visualAge = 32, _HS.ovaryAge = 32, _HS.health = 40, _HS.devotion = -50, _HS.muscles = 20, _HS.race = "black", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "dark", _HS.hLength = 10, _HS.boobs = 650, _HS.butt = 3, _HS.ovaries = 1, _HS.intelligence = -30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.custom.desc = "$He has many scars, including one over $his blind left eye.">> +<<set _HS.slaveName = "Thorn", _HS.birthName = "Thorn", _HS.origin = "$He lived a hard life before becoming a slave.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 32, _HS.physicalAge = 32, _HS.visualAge = 32, _HS.ovaryAge = 32, _HS.health.condition = 40, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 40, _HS.devotion = -50, _HS.muscles = 20, _HS.race = "black", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "dark", _HS.hLength = 10, _HS.boobs = 650, _HS.butt = 3, _HS.ovaries = 1, _HS.intelligence = -30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.custom.desc = "$He has many scars, including one over $his blind left eye.">> <<set $heroSlaves.push(_HS)>> /*Increased health, added origin, fixed customdesc syntax -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Kinsey", _HS.birthName = "Kinsey", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, _HS.health = 20, _HS.devotion = 10, _HS.height = 145, _HS.hColor = "black", _HS.pubicHColor = "black", _HS.hLength = 15, _HS.hStyle = "short, with the left side shaved", _HS.boobs = 500, _HS.butt = 4, _HS.buttImplant = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 2, _HS.nosePiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 100, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1>> +<<set _HS.slaveName = "Kinsey", _HS.birthName = "Kinsey", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 10, _HS.height = 145, _HS.hColor = "black", _HS.pubicHColor = "black", _HS.hLength = 15, _HS.hStyle = "short, with the left side shaved", _HS.boobs = 500, _HS.butt = 4, _HS.buttImplant = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 2, _HS.nosePiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 100, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1>> <<set $heroSlaves.push(_HS)>> /*Added nose piercing, reduced height, changed fetish to bisexual -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Sammy", _HS.birthName = "Sammy", _HS.origin = "$He chose to be a slave because the romanticized view of it $he had turns $him on.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = 25, _HS.weight = 20, _HS.height = 155, _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "pale", _HS.hLength = 80, _HS.hStyle = "ass-length", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 100, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.desc = "$He has fetishes for wedgies, spanking and herms.">> +<<set _HS.slaveName = "Sammy", _HS.birthName = "Sammy", _HS.origin = "$He chose to be a slave because the romanticized view of it $he had turns $him on.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 25, _HS.weight = 20, _HS.height = 155, _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "pale", _HS.hLength = 80, _HS.hStyle = "ass-length", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 100, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.desc = "$He has fetishes for wedgies, spanking and herms.">> <<set $heroSlaves.push(_HS)>> /*laid back*/ /*Added origin, increased weight, pierced ears, added customdesc -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Klara", _HS.birthName = "Klara", _HS.origin = "$He was forced into slavery and rather brutally broken in.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = -75, _HS.height = 175, _HS.race = "white", _HS.eyeColor = "blue", _HS.skin = "fair", _HS.hStyle = "long and braided", _HS.boobs = 800, _HS.butt = 4, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 35, _HS.skill.entertainment = 35, _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.brand["right buttock"] = "Cum slut", _HS.custom.tattoo = "'bitch whore' is tattooed on $his inner left thigh.">> +<<set _HS.slaveName = "Klara", _HS.birthName = "Klara", _HS.origin = "$He was forced into slavery and rather brutally broken in.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = -75, _HS.height = 175, _HS.race = "white", _HS.eyeColor = "blue", _HS.skin = "fair", _HS.hStyle = "long and braided", _HS.boobs = 800, _HS.butt = 4, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 35, _HS.skill.entertainment = 35, _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.brand["right buttock"] = "Cum slut", _HS.custom.tattoo = "'bitch whore' is tattooed on $his inner left thigh.">> <<set $heroSlaves.push(_HS)>> /*Fixed typo in customdesc, increased whore and entertainskill, changed eye color -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Lucy", _HS.birthName = "Lucy", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 40, _HS.race = "white", _HS.skin = "white", _HS.eyeColor = "blue", _HS.override_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.origHColor = "brown", _HS.hColor = "pale blonde", _HS.eyebrowHColor = "brown", _HS.pubicHColor = "brown", _HS.underArmHColor = "brown", _HS.hLength = 95, _HS.hStyle = "ass length", _HS.boobs = 300, _HS.butt = 3, _HS.buttTat = "degradation", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaTat = "degradation", _HS.ovaries = 1, _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.height = 165>> +<<set _HS.slaveName = "Lucy", _HS.birthName = "Lucy", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 40, _HS.race = "white", _HS.skin = "white", _HS.eyeColor = "blue", _HS.override_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.origHColor = "brown", _HS.hColor = "pale blonde", _HS.eyebrowHColor = "brown", _HS.pubicHColor = "brown", _HS.underArmHColor = "brown", _HS.hLength = 95, _HS.hStyle = "ass length", _HS.boobs = 300, _HS.butt = 3, _HS.buttTat = "degradation", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaTat = "degradation", _HS.ovaries = 1, _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.height = 165>> <<set $heroSlaves.push(_HS)>> /*innuendo*/ /*Added odd, changed eye color -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Mandy", _HS.birthName = "Mandy", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 60, _HS.hStyle = "long", _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.clothes = "attractive lingerie", _HS.attrXY = 40, _HS.fetishKnown = 1>> +<<set _HS.slaveName = "Mandy", _HS.birthName = "Mandy", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20,, _HS.devotion = 60, _HS.hStyle = "long", _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.clothes = "attractive lingerie", _HS.attrXY = 40, _HS.fetishKnown = 1>> <<set $heroSlaves.push(_HS)>> /*Couldn't find this slave in the thread or the submission page on the blog -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Dharma", _HS.birthName = "Dharma", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 26, _HS.physicalAge = 26, _HS.visualAge = 26, _HS.ovaryAge = 26, _HS.health = 20, _HS.devotion = -100, _HS.height = 175, _HS.race = "white", _HS.eyeColor = "green", _HS.hColor = "dark brown", _HS.pubicHColor = "dark brown", _HS.skin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 500, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.analArea = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has a henna tattoo on $his left forearm, and a butterfly tattoo on $his right calf.", _HS.custom.desc = "$He has high cheekbones on a heart shaped face.", _HS.faceShape = "cute", _HS.sexualQuirk = "size queen">> +<<set _HS.slaveName = "Dharma", _HS.birthName = "Dharma", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 26, _HS.physicalAge = 26, _HS.visualAge = 26, _HS.ovaryAge = 26, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = -100, _HS.height = 175, _HS.race = "white", _HS.eyeColor = "green", _HS.hColor = "dark brown", _HS.pubicHColor = "dark brown", _HS.skin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 500, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.analArea = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has a henna tattoo on $his left forearm, and a butterfly tattoo on $his right calf.", _HS.custom.desc = "$He has high cheekbones on a heart shaped face.", _HS.faceShape = "cute", _HS.sexualQuirk = "size queen">> <<set $heroSlaves.push(_HS)>> /*Fetish was set to 'arrogant' instead of quirk, corrected tattoo syntax -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Aya", _HS.birthName = "Aya", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = -25, _HS.race = "white", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.origHColor = "red", _HS.hColor = "bright red", _HS.eyebrowHColor = "red", _HS.pubicHColor = "red", _HS.underArmHColor = "red", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 2, _HS.nosePiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.skill.anal = 15, _HS.clothes = "attractive lingerie", _HS.intelligence = random(96,99), _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.custom.desc = "$He has piercings along $his collarbones and corset piercings with red ribbons down $his lower back and thighs.", _HS.height = 168>> +<<set _HS.slaveName = "Aya", _HS.birthName = "Aya", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = -25, _HS.race = "white", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.origHColor = "red", _HS.hColor = "bright red", _HS.eyebrowHColor = "red", _HS.pubicHColor = "red", _HS.underArmHColor = "red", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 2, _HS.nosePiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.skill.anal = 15, _HS.clothes = "attractive lingerie", _HS.intelligence = random(96,99), _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.custom.desc = "$He has piercings along $his collarbones and corset piercings with red ribbons down $his lower back and thighs.", _HS.height = 168>> <<set $heroSlaves.push(_HS)>> /*masochist*/ /*Added piercings, corrected customdesc syntax, added bitchy to fit with $his smart-ass masochist personality. -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Mikayla", _HS.birthName = "Mikayla", _HS.origin = "$He was previously owned by a creative sadist, who has left a variety of mental scars on $him.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = -25, _HS.weight = 20, _HS.height = 157, _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.clitPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -35, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.desc = "$He is extremely claustrophobic.">> +<<set _HS.slaveName = "Mikayla", _HS.birthName = "Mikayla", _HS.origin = "$He was previously owned by a creative sadist, who has left a variety of mental scars on $him.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = -25, _HS.weight = 20, _HS.height = 157, _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.clitPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -35, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.desc = "$He is extremely claustrophobic.">> <<set $heroSlaves.push(_HS)>> /*claustrophobia, pride*/ /*Fixed customdesc syntax, added pierced ears, corrected hair color, added origin and arrogant -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Xendra", _HS.birthName = "Xendra", _HS.origin = "$He was a hermit until $he became a slave, and went along with it out of boredom.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 40, _HS.devotion = 75, _HS.height = 175, _HS.race = "black", _HS.origEye = "brown", _HS.override_Eye_Color = 1, _HS.override_H_Color = 1, _HS.eyeColor = "purple", _HS.hColor = "white", _HS.skin = "dark", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.combat = 1, _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.custom.tattoo = "$He has a pair of full sleeve tattoos.", _HS.custom.desc = "$He has many scars, and is skilled with plants.", _HS.career = "a shut-in">> +<<set _HS.slaveName = "Xendra", _HS.birthName = "Xendra", _HS.origin = "$He was a hermit until $he became a slave, and went along with it out of boredom.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 40, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 40, _HS.devotion = 75, _HS.height = 175, _HS.race = "black", _HS.origEye = "brown", _HS.override_Eye_Color = 1, _HS.override_H_Color = 1, _HS.eyeColor = "purple", _HS.hColor = "white", _HS.skin = "dark", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.combat = 1, _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.custom.tattoo = "$He has a pair of full sleeve tattoos.", _HS.custom.desc = "$He has many scars, and is skilled with plants.", _HS.career = "a shut-in">> <<set $heroSlaves.push(_HS)>> /*toned, snuff, fighter*/ /*Increased health, added combatskill, bitchy and pierced ears, fixed tattoo and customdesc syntax, corrected skin color from 'white' to 'dark' -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Gwen", _HS.birthName = "Gwen", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 1, _HS.devotion = 60, _HS.race = "asian", _HS.hColor = "dark", _HS.pubicHColor = "dark", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 1, _HS.face = 60, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "off", _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 35, _HS.chastityVagina = 1, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has 'Use Backdoor' tattooed above $his vagina and, in tribal tattoos, 'Anal Slut' on $his back.", _HS.custom.desc = "$He wears a dog collar with lights that indicate $his arousal and was bought wearing a vaginal chastity belt.", _HS.height = 183>> +<<set _HS.slaveName = "Gwen", _HS.birthName = "Gwen", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 1, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 1, _HS.devotion = 60, _HS.race = "asian", _HS.hColor = "dark", _HS.pubicHColor = "dark", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 1, _HS.face = 60, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "off", _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 35, _HS.chastityVagina = 1, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has 'Use Backdoor' tattooed above $his vagina and, in tribal tattoos, 'Anal Slut' on $his back.", _HS.custom.desc = "$He wears a dog collar with lights that indicate $his arousal and was bought wearing a vaginal chastity belt.", _HS.height = 183>> <<set $heroSlaves.push(_HS)>> /* set nipples to pierced, changed fetish from bisexual to submissive, increased anal skill, dunno how to handle all the techno-implants $his tits etc. have as they don't seem to be size-increasing-focused, lowered health */ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Asha", _HS.birthName = "Asha", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 20, _HS.devotion = 60, _HS.weight = -20, _HS.nationality = "Russian", _HS.race = "white", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "white", _HS.hLength = 170, _HS.hStyle = "floor length", _HS.waist = -55, _HS.heels = 1, _HS.boobs = 1200, _HS.boobsImplant = 800, _HS.nipplesPiercing = 2, _HS.lactation = 1, _HS.lactationDuration = 2, _HS.butt = 6, _HS.buttImplant = 3, _HS.face = 15, _HS.faceImplant = 15, _HS.lips = 35, _HS.lipsImplant = 10, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 2, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has many girly tattoos.", _HS.custom.desc = "$He loves hair play.", _HS.navelPiercing = 1>> +<<set _HS.slaveName = "Asha", _HS.birthName = "Asha", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 60, _HS.weight = -20, _HS.nationality = "Russian", _HS.race = "white", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "white", _HS.hLength = 170, _HS.hStyle = "floor length", _HS.waist = -55, _HS.heels = 1, _HS.boobs = 1200, _HS.boobsImplant = 800, _HS.nipplesPiercing = 2, _HS.lactation = 1, _HS.lactationDuration = 2, _HS.butt = 6, _HS.buttImplant = 3, _HS.face = 15, _HS.faceImplant = 15, _HS.lips = 35, _HS.lipsImplant = 10, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 2, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has many girly tattoos.", _HS.custom.desc = "$He loves hair play.", _HS.navelPiercing = 1>> <<set $heroSlaves.push(_HS)>> /*Reduced weight, increased face and faceimplant, added piercings, corrected tattoo and customdesc syntax -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Emily", _HS.birthName = "Emily", _HS.origin = "Before $he was made a slave, $he was a wealthy, popular honor student.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = -25, _HS.height = 155, _HS.race = "white", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "white", _HS.hLength = 10, _HS.boobs = 400, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = random(96,100), _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.desc = "$He has a short nose and is very intelligent.">> +<<set _HS.slaveName = "Emily", _HS.birthName = "Emily", _HS.origin = "Before $he was made a slave, $he was a wealthy, popular honor student.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = -25, _HS.height = 155, _HS.race = "white", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "white", _HS.hLength = 10, _HS.boobs = 400, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = random(96,100), _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.desc = "$He has a short nose and is very intelligent.">> <<set $heroSlaves.push(_HS)>> /*Added origin, reduced age, fetish was 'arrogant', changed it to quirk, fixed customdesc syntax. -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Bitch", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = -20, _HS.devotion = -75, _HS.height = 155, _HS.eyeColor = "dark", _HS.pupil = "almond-shaped", _HS.hColor = "dark", _HS.skin = "pale", _HS.waist = -55, _HS.boobs = 300, _HS.butt = 5, _HS.lips = 35, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.eyebrowPiercing = 1, _HS.skill.oral = 35, _HS.intelligence = -60, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a heart shaped face and many scars.", _HS.faceShape = "cute", _HS.hips = 3, _HS.markings = "beauty">> +<<set _HS.slaveName = "Bitch", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health.condition = -20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = -20, _HS.devotion = -75, _HS.height = 155, _HS.eyeColor = "dark", _HS.pupil = "almond-shaped", _HS.hColor = "dark", _HS.skin = "pale", _HS.waist = -55, _HS.boobs = 300, _HS.butt = 5, _HS.lips = 35, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.eyebrowPiercing = 1, _HS.skill.oral = 35, _HS.intelligence = -60, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has a heart shaped face and many scars.", _HS.faceShape = "cute", _HS.hips = 3, _HS.markings = "beauty">> <<set $heroSlaves.push(_HS)>> /*Fixed customdesc syntax, changed eye color, added piercings, increased waist -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Nala", _HS.birthName = "Nala", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 10, _HS.muscles = 20, _HS.height = 180, _HS.hColor = "black", _HS.hStyle = "long and in a ponytail", _HS.boobs = 500, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1>> +<<set _HS.slaveName = "Nala", _HS.birthName = "Nala", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 10, _HS.muscles = 20, _HS.height = 180, _HS.hColor = "black", _HS.hStyle = "long and in a ponytail", _HS.boobs = 500, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1>> <<set $heroSlaves.push(_HS)>> /*First slave that didn't need fixing -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Ervona", _HS.birthName = "Ervona", _HS.origin = "$He was groomed just for you and believes $himself to be madly in love with you.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 40, _HS.devotion = 100, _HS.height = 178, _HS.override_H_Color = 1, _HS.hColor = "white", _HS.pubicHColor = "white", _HS.skin = "bronze", _HS.hLength = 25, _HS.hStyle = "chin length", _HS.boobs = 500, _HS.nipples = "inverted", _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.clitPiercing = 1, _HS.ovaries = 1, _HS.clothes = "attractive lingerie", _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40>> +<<set _HS.slaveName = "Ervona", _HS.birthName = "Ervona", _HS.origin = "$He was groomed just for you and believes $himself to be madly in love with you.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 40, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 40, _HS.devotion = 100, _HS.height = 178, _HS.override_H_Color = 1, _HS.hColor = "white", _HS.pubicHColor = "white", _HS.skin = "bronze", _HS.hLength = 25, _HS.hStyle = "chin length", _HS.boobs = 500, _HS.nipples = "inverted", _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.clitPiercing = 1, _HS.ovaries = 1, _HS.clothes = "attractive lingerie", _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40>> <<set $heroSlaves.push(_HS)>> /*love*/ /*Added origin, removed it from customdesc. Increased health.*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Koko", _HS.birthName = "Koko", _HS.origin = "$He may originally be from an island nation.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 60, _HS.devotion = -25, _HS.height = 175, _HS.override_H_Color = 1, _HS.race = "asian", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "brown", _HS.hLength = 10, _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 15, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He is trim and fit.">> +<<set _HS.slaveName = "Koko", _HS.birthName = "Koko", _HS.origin = "$He may originally be from an island nation.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 60, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 60, _HS.devotion = -25, _HS.height = 175, _HS.override_H_Color = 1, _HS.race = "asian", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "brown", _HS.hLength = 10, _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 15, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He is trim and fit.">> <<set $heroSlaves.push(_HS)>> /*genki*/ /*Pierced ears, added origin, corrected customdesc syntax. -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Jasmine", _HS.birthName = "Jasmine", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 25, _HS.height = 175, _HS.origRace = "white", _HS.race = "black", _HS.eyeColor = "blue-green", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.override_Skin = 1, _HS.hColor = "fair blonde", _HS.eyebrowHColor = "blonde", _HS.pubicHColor = "blonde", _HS.underArmHColor = "blonde", _HS.skin = "brown", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.attrXY = 40, _HS.fetish = "humiliation">> +<<set _HS.slaveName = "Jasmine", _HS.birthName = "Jasmine", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 25, _HS.height = 175, _HS.origRace = "white", _HS.race = "black", _HS.eyeColor = "blue-green", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.override_Skin = 1, _HS.hColor = "fair blonde", _HS.eyebrowHColor = "blonde", _HS.pubicHColor = "blonde", _HS.underArmHColor = "blonde", _HS.skin = "brown", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.attrXY = 40, _HS.fetish = "humiliation">> <<set $heroSlaves.push(_HS)>> /*Changed eyes -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Orena", _HS.birthName = "Orena", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 20, _HS.devotion = -90, _HS.override_H_Color = 1, _HS.race = "white", _HS.hColor = "pink", _HS.pubicHColor = "pink", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 1400, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.nosePiercing = 1, _HS.attrXY = 40, _HS.fetish = "arrogant", _HS.fetishKnown = 1, _HS.sexualFlaw = "hates penetration">> +<<set _HS.slaveName = "Orena", _HS.birthName = "Orena", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = -90, _HS.override_H_Color = 1, _HS.race = "white", _HS.hColor = "pink", _HS.pubicHColor = "pink", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 1400, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.nosePiercing = 1, _HS.attrXY = 40, _HS.fetish = "arrogant", _HS.fetishKnown = 1, _HS.sexualFlaw = "hates penetration">> <<set $heroSlaves.push(_HS)>> /*hates sex*/ /*Corrected hair color, added piercings, added 'hates penetration' -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Fatiah", _HS.birthName = "Fatiah", _HS.origin = "$He was taken as a slave by a Sultan, who presented $him as a gift to a surveyor.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 80, _HS.devotion = 45, _HS.weight = 20, _HS.height = 257, _HS.race = "middle eastern", _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.hColor = "black and oily", _HS.eyebrowHColor = "black", _HS.pubicHColor = "black", _HS.underArmHColor = "black", _HS.skin = "brown", _HS.hStyle = "long, but shaved on the left side", _HS.boobs = 1200, _HS.butt = 4, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.intelligence = -30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.attrKnown = 0, _HS.eyes = -1, _HS.eyewear = "corrective glasses", _HS.clothes = "a niqab and abaya", _HS.hips = 2>> +<<set _HS.slaveName = "Fatiah", _HS.birthName = "Fatiah", _HS.origin = "$He was taken as a slave by a Sultan, who presented $him as a gift to a surveyor.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 80, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 80, _HS.devotion = 45, _HS.weight = 20, _HS.height = 257, _HS.race = "middle eastern", _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.hColor = "black and oily", _HS.eyebrowHColor = "black", _HS.pubicHColor = "black", _HS.underArmHColor = "black", _HS.skin = "brown", _HS.hStyle = "long, but shaved on the left side", _HS.boobs = 1200, _HS.butt = 4, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.intelligence = -30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.attrKnown = 0, _HS.eyes = -1, _HS.eyewear = "corrective glasses", _HS.clothes = "a niqab and abaya", _HS.hips = 2>> <<set $heroSlaves.push(_HS)>> /*Increased height, reduced weight, reduced butt, fixed customdesc syntax -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "No Name", _HS.birthName = "No Name", _HS.origin = "A previous owner cultivated $his desire to escape slavery for his own amusement.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 50, _HS.devotion = -100, _HS.height = 165, _HS.weight = -20, _HS.muscles = 20, _HS.race = "mixed race", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "white", _HS.hStyle = "long", _HS.pubicHStyle = "neat", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "oral", _HS.anus = 2, _HS.ovaries = 1, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.custom.desc = "$He is fit and athletic.", _HS.behavioralFlaw = "arrogant", _HS.hips = 1>> +<<set _HS.slaveName = "No Name", _HS.birthName = "No Name", _HS.origin = "A previous owner cultivated $his desire to escape slavery for his own amusement.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 50, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 50, _HS.devotion = -100, _HS.height = 165, _HS.weight = -20, _HS.muscles = 20, _HS.race = "mixed race", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "white", _HS.hStyle = "long", _HS.pubicHStyle = "neat", _HS.boobs = 300, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "oral", _HS.anus = 2, _HS.ovaries = 1, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.custom.desc = "$He is fit and athletic.", _HS.behavioralFlaw = "arrogant", _HS.hips = 1>> <<set $heroSlaves.push(_HS)>> *//*hypno-anal/cum*/ /*Reduced weight, changed eyes, corrected customdesc syntax, added origin, increased rebelliousness, changed clitsetting to oral. -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Sara", _HS.birthName = "Sara", _HS.origin = "$He sold $himself into slavery after a pregnancy scare, desiring to give up control of $his life to someone better suited to running it.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 40, _HS.devotion = 60, _HS.height = 155, _HS.nationality = "Mexican", _HS.race = "latina", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.hColor = "dark red", _HS.eyebrowHColor = "red", _HS.pubicHColor = "red", _HS.underArmHColor = "red", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -40, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "masochist", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has $his medical allergies tattooed around $his wrist.", _HS.custom.desc = "$He has either a masochistic streak, a self-harm habit, or both.">> +<<set _HS.slaveName = "Sara", _HS.birthName = "Sara", _HS.origin = "$He sold $himself into slavery after a pregnancy scare, desiring to give up control of $his life to someone better suited to running it.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 40, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 40, _HS.devotion = 60, _HS.height = 155, _HS.nationality = "Mexican", _HS.race = "latina", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.hColor = "dark red", _HS.eyebrowHColor = "red", _HS.pubicHColor = "red", _HS.underArmHColor = "red", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -40, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "masochist", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has $his medical allergies tattooed around $his wrist.", _HS.custom.desc = "$He has either a masochistic streak, a self-harm habit, or both.">> <<set $heroSlaves.push(_HS)>> /*likes pain*/ /*Corrected tattoo syntax, added origin and customdesc, increased health -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Falcon", _HS.birthName = "Jamie", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 20, _HS.devotion = 25, _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.clothes = "a slave gown", _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has an implanted GPS tracker to find $him in case $his habit of stalking pretty girls gets the better of $him.">> +<<set _HS.slaveName = "Falcon", _HS.birthName = "Jamie", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 25, _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.clothes = "a slave gown", _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has an implanted GPS tracker to find $him in case $his habit of stalking pretty girls gets the better of $him.">> <<set $heroSlaves.push(_HS)>> /*proactive stalker hypnosis masseuse*/ /*Corrected birthname (was 'Jasmine'), changed eye color, added customdesc -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Beatrice (No. 525)", _HS.birthName = "Beatrice", _HS.origin = "$He comes from old money and sold $himself into slavery to satisfy $his obsession with the practice, believing $his family would buy $him back out of slavery later.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 20, _HS.devotion = 30, _HS.height = 155, _HS.race = "white", _HS.eyeColor = "blue-green", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.origHColor = "red", _HS.hColor = "bright red", _HS.eyebrowHColor = "red", _HS.pubicHColor = "red", _HS.underArmHColor = "red", _HS.skin = "pure white", _HS.hLength = 80, _HS.hStyle = "long and wavy, and down past $his ass", _HS.waist = -55, _HS.boobs = 800, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.clothes = "a slave gown", _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has a fine, intricate vine-like tattoo around $his right ankle.">> +<<set _HS.slaveName = "Beatrice (No. 525)", _HS.birthName = "Beatrice", _HS.origin = "$He comes from old money and sold $himself into slavery to satisfy $his obsession with the practice, believing $his family would buy $him back out of slavery later.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 30, _HS.height = 155, _HS.race = "white", _HS.eyeColor = "blue-green", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.origHColor = "red", _HS.hColor = "bright red", _HS.eyebrowHColor = "red", _HS.pubicHColor = "red", _HS.underArmHColor = "red", _HS.skin = "pure white", _HS.hLength = 80, _HS.hStyle = "long and wavy, and down past $his ass", _HS.waist = -55, _HS.boobs = 800, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.earPiercing = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.clothes = "a slave gown", _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has a fine, intricate vine-like tattoo around $his right ankle.">> <<set $heroSlaves.push(_HS)>> /*contraception but breeder naturally, well trained*/ /*Fetish was 'arrogant', changed it to flaw. Added origin, whore and entertainskill. Changed eye color, corrected tattoo syntax, pierced ears, reduced weight -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Yuuki", _HS.birthName = "Yuuki", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 45, _HS.height = 145, _HS.race = "asian", _HS.override_Eye_Color = 1, _HS.override_H_Color = 1, _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "fair", _HS.hStyle = "long and curly", _HS.waist = -55, _HS.boobs = 1000, _HS.butt = 5, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.oral = 100, _HS.skill.entertainment = 35, _HS.intelligence = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.sexualFlaw = "crude ">> +<<set _HS.slaveName = "Yuuki", _HS.birthName = "Yuuki", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 45, _HS.height = 145, _HS.race = "asian", _HS.override_Eye_Color = 1, _HS.override_H_Color = 1, _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "fair", _HS.hStyle = "long and curly", _HS.waist = -55, _HS.boobs = 1000, _HS.butt = 5, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.oral = 100, _HS.skill.entertainment = 35, _HS.intelligence = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.sexualFlaw = "crude ">> <<set $heroSlaves.push(_HS)>> /*mischievous tease*/ /*Reduced height, added entertainskill, added bitchy, changed eyes -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Elisa", _HS.birthName = "Elisa", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = -55, _HS.muscles = 20, _HS.height = 145, _HS.race = "white", _HS.eyeColor = "bright blue", _HS.hColor = "white-blonde", _HS.pubicHColor = "white-blonde", _HS.skin = "extremely pale", _HS.hStyle = "in a long braid", _HS.waist = -55, _HS.boobs = 500, _HS.butt = 4, _HS.face = 55, _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.skill.combat = 1, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.behavioralFlaw = "arrogant", _HS.sexualFlaw = "hates penetration", _HS.custom.desc = "An iron-willed, recently captured figure of a prominent anti-Free City guerrilla party, $he still clings strongly to traditional beliefs on Man's natural good, economic restriction, and monogamy. Excitable, girly, and sweet in comparison to $his natural brother, Martin, $he has a lovely singing voice. $He prays quite often, if allowed to.", _HS.mother = -9997, _HS.father = -9996>> +<<set _HS.slaveName = "Elisa", _HS.birthName = "Elisa", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = -55, _HS.muscles = 20, _HS.height = 145, _HS.race = "white", _HS.eyeColor = "bright blue", _HS.hColor = "white-blonde", _HS.pubicHColor = "white-blonde", _HS.skin = "extremely pale", _HS.hStyle = "in a long braid", _HS.waist = -55, _HS.boobs = 500, _HS.butt = 4, _HS.face = 55, _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.skill.combat = 1, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.behavioralFlaw = "arrogant", _HS.sexualFlaw = "hates penetration", _HS.custom.desc = "An iron-willed, recently captured figure of a prominent anti-Free City guerrilla party, $he still clings strongly to traditional beliefs on Man's natural good, economic restriction, and monogamy. Excitable, girly, and sweet in comparison to $his natural brother, Martin, $he has a lovely singing voice. $He prays quite often, if allowed to.", _HS.mother = -9997, _HS.father = -9996>> <<set $heroSlaves.push(_HS)>> /*also hates pen*/ /*martin's sibling*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Yvonne", _HS.birthName = "Yvonne", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, _HS.health = 20, _HS.devotion = 100, _HS.height = 190, _HS.eyeColor = "hazel", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "light", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 700, _HS.nipplesPiercing = 1, _HS.butt = 2, _HS.face = 55, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "all", _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.attrXY = 40, _HS.fetish = "pregnancy">> +<<set _HS.slaveName = "Yvonne", _HS.birthName = "Yvonne", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 100, _HS.height = 190, _HS.eyeColor = "hazel", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "light", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 700, _HS.nipplesPiercing = 1, _HS.butt = 2, _HS.face = 55, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "all", _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.attrXY = 40, _HS.fetish = "pregnancy">> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'Terminatrix' Heaven", _HS.birthName = "Gabrielle", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 80, _HS.devotion = 100, _HS.muscles = 50, _HS.height = 190, _HS.race = "black", _HS.hColor = "black", _HS.pubicHColor = "brown", _HS.skin = "black", _HS.hLength = 5, _HS.hStyle = "very short and a poor emulation of a military cut", _HS.boobs = 250, _HS.nipplesPiercing = 1, _HS.butt = 5, _HS.buttTat = "tribal patterns", _HS.lipsPiercing = 1, _HS.lipsTat = "tribal patterns", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaTat = "tribal patterns", _HS.clit = 2, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.earPiercing = 1, _HS.nosePiercing = 1, _HS.eyebrowPiercing = 1, _HS.navelPiercing = 1, _HS.shouldersTat = "tribal patterns", _HS.armsTat = "tribal patterns", _HS.legsTat = "tribal patterns", _HS.stampTat = "tribal patterns", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 35, _HS.skill.entertainment = 15, _HS.skill.combat = 1, _HS.clothes = "a comfortable bodysuit", _HS.collar = "heavy gold", _HS.shoes = "flats", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "Amongst the scars that decorate $his body, one in the shape of a heart can be made out on the top of $his right hand.">> +<<set _HS.slaveName = "'Terminatrix' Heaven", _HS.birthName = "Gabrielle", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 80, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 80, _HS.devotion = 100, _HS.muscles = 50, _HS.height = 190, _HS.race = "black", _HS.hColor = "black", _HS.pubicHColor = "brown", _HS.skin = "black", _HS.hLength = 5, _HS.hStyle = "very short and a poor emulation of a military cut", _HS.boobs = 250, _HS.nipplesPiercing = 1, _HS.butt = 5, _HS.buttTat = "tribal patterns", _HS.lipsPiercing = 1, _HS.lipsTat = "tribal patterns", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaTat = "tribal patterns", _HS.clit = 2, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "tribal patterns", _HS.earPiercing = 1, _HS.nosePiercing = 1, _HS.eyebrowPiercing = 1, _HS.navelPiercing = 1, _HS.shouldersTat = "tribal patterns", _HS.armsTat = "tribal patterns", _HS.legsTat = "tribal patterns", _HS.stampTat = "tribal patterns", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 35, _HS.skill.entertainment = 15, _HS.skill.combat = 1, _HS.clothes = "a comfortable bodysuit", _HS.collar = "heavy gold", _HS.shoes = "flats", _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "Amongst the scars that decorate $his body, one in the shape of a heart can be made out on the top of $his right hand.">> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Lilliana", _HS.birthName = "Zuzanna", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 25, _HS.physicalAge = 25, _HS.visualAge = 25, _HS.ovaryAge = 25, _HS.health = 13, _HS.devotion = 100, _HS.muscles = 100, _HS.height = 190, _HS.eyeColor = "white", _HS.eyes = -2, _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.hColor = "white with red stripes", _HS.eyebrowHColor = "white", _HS.pubicHColor = "white", _HS.underArmHColor = "white", _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.hLength = 100, _HS.hStyle = "back in a large ass length braid", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.boobs = 400, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.face = 15, _HS.faceImplant = 65, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.makeup = 2, _HS.nails = 1, _HS.earPiercing = 1, _HS.nosePiercing = 1, _HS.eyebrowPiercing = 1, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.skill.combat = 1, _HS.clothes = "nice business attire", _HS.collar = "leather with cowbell", _HS.shoes = "heels", _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1>> +<<set _HS.slaveName = "Lilliana", _HS.birthName = "Zuzanna", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 25, _HS.physicalAge = 25, _HS.visualAge = 25, _HS.ovaryAge = 25, _HS.health.condition = 13, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 13, _HS.devotion = 100, _HS.muscles = 100, _HS.height = 190, _HS.eyeColor = "white", _HS.eyes = -2, _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.hColor = "white with red stripes", _HS.eyebrowHColor = "white", _HS.pubicHColor = "white", _HS.underArmHColor = "white", _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.hLength = 100, _HS.hStyle = "back in a large ass length braid", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.boobs = 400, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.face = 15, _HS.faceImplant = 65, _HS.lipsPiercing = 1, _HS.tonguePiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.makeup = 2, _HS.nails = 1, _HS.earPiercing = 1, _HS.nosePiercing = 1, _HS.eyebrowPiercing = 1, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.skill.combat = 1, _HS.clothes = "nice business attire", _HS.collar = "leather with cowbell", _HS.shoes = "heels", _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1>> <<set $heroSlaves.push(_HS)>> /*Blind*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Jenna", _HS.birthName = "Jenna", _HS.ID = _i++, _HS.assignment = "please you", _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 30, _HS.devotion = 60, _HS.height = 145, _HS.skin = "pale", _HS.eyeColor = "violet", _HS.hColor = "red-blonde", _HS.pubicHColor = "red-blonde", _HS.hStyle = "waist-length", _HS.waist = -55, _HS.boobs = 650, _HS.butt = 6, _HS.face = 55, _HS.lips = 35, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "submissive", _HS.ovaries = 1, _HS.skill.oral = 100, _HS.clothes = "a string bikini", _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.tattoo = "$His name is tattooed in flowing cursive script across $his upper back. ">> +<<set _HS.slaveName = "Jenna", _HS.birthName = "Jenna", _HS.ID = _i++, _HS.assignment = "please you", _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health.condition = 30, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 30, _HS.devotion = 60, _HS.height = 145, _HS.skin = "pale", _HS.eyeColor = "violet", _HS.hColor = "red-blonde", _HS.pubicHColor = "red-blonde", _HS.hStyle = "waist-length", _HS.waist = -55, _HS.boobs = 650, _HS.butt = 6, _HS.face = 55, _HS.lips = 35, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "submissive", _HS.ovaries = 1, _HS.skill.oral = 100, _HS.clothes = "a string bikini", _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.tattoo = "$His name is tattooed in flowing cursive script across $his upper back. ">> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'Asspussy' Miss Julie O", _HS.birthName = "Leah", _HS.origin = "$He was sentenced to enslavement as a punishment for fraud and theft.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, _HS.health = 70, _HS.devotion = 100, _HS.height = 155, _HS.markings = "none", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "pale", _HS.hLength = 40, _HS.hStyle = "fashionable for a Free Cities 3rd Grade Teacher, up in a tight bun", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.clit = 1, _HS.clitPiercing = 3, _HS.clitSetting = "anal", _HS.boobs = 650, _HS.boobsImplant = 200, _HS.nipples = "huge", _HS.butt = 3, _HS.face = 15, _HS.faceImplant = 65, _HS.anus = 1, _HS.ovaries = 1, _HS.anusPiercing = 2, _HS.anusTat = "bleached", _HS.makeup = 2, _HS.nails = 2, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.clothes = "nice business attire", _HS.collar = "heavy gold", _HS.shoes = "heels", _HS.intelligence = -40, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.desc = "$His pale skin is lightly freckled, and $his nipples are dark tan. $He used to be sexually repressed, and used to hate anal sex.">> +<<set _HS.slaveName = "'Asspussy' Miss Julie O", _HS.birthName = "Leah", _HS.origin = "$He was sentenced to enslavement as a punishment for fraud and theft.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, _HS.health.condition = 70, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 70, _HS.devotion = 100, _HS.height = 155, _HS.markings = "none", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "pale", _HS.hLength = 40, _HS.hStyle = "fashionable for a Free Cities 3rd Grade Teacher, up in a tight bun", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.clit = 1, _HS.clitPiercing = 3, _HS.clitSetting = "anal", _HS.boobs = 650, _HS.boobsImplant = 200, _HS.nipples = "huge", _HS.butt = 3, _HS.face = 15, _HS.faceImplant = 65, _HS.anus = 1, _HS.ovaries = 1, _HS.anusPiercing = 2, _HS.anusTat = "bleached", _HS.makeup = 2, _HS.nails = 2, _HS.earPiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.clothes = "nice business attire", _HS.collar = "heavy gold", _HS.shoes = "heels", _HS.intelligence = -40, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.desc = "$His pale skin is lightly freckled, and $his nipples are dark tan. $He used to be sexually repressed, and used to hate anal sex.">> <<set $heroSlaves.push(_HS)>> /*huge nips*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Golden Cobra", _HS.birthName = "Auyala", _HS.origin = "$He was captured from West Central Africa.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 30, _HS.devotion = 100, _HS.muscles = 50, _HS.height = 190, _HS.nationality = "Central African", _HS.race = "black", _HS.eyes = 1, _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.eyeColor = "green", _HS.hColor = "golden blonde with copper streaks", _HS.eyebrowHColor = "blonde", _HS.pubicHColor = "blonde", _HS.underArmHColor = "blonde", _HS.skin = "brown", _HS.hLength = 35, _HS.hStyle = "shoulder-length, plaited in cornrow braids; a single thin braid adorned with several colorful feathers and fearsome fang of unknown origin is hanging aside $his left eye", _HS.pubicHStyle = "in a strip", _HS.waist = -55, _HS.boobs = 1450, _HS.nipplesPiercing = 2, _HS.butt = 5, _HS.lips = 55, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.clit = 2, _HS.clitPiercing = 2, _HS.clitSetting = "lesbian", _HS.anus = 2, _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.earPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.combat = 1, _HS.clothes = "slutty jewelry", _HS.collar = "heavy gold", _HS.shoes = "heels", _HS.intelligence = -30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has tattoo of cobra wrapping around $his neck, which head with wide open maw and inflated hood tattooed right at $his throat.", _HS.custom.desc = "$He has a streak of ritual scars resembling some very complex snake skin pattern running down $his spine from nape to tail-bone.">> +<<set _HS.slaveName = "Golden Cobra", _HS.birthName = "Auyala", _HS.origin = "$He was captured from West Central Africa.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health.condition = 30, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 30, _HS.devotion = 100, _HS.muscles = 50, _HS.height = 190, _HS.nationality = "Central African", _HS.race = "black", _HS.eyes = 1, _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.eyeColor = "green", _HS.hColor = "golden blonde with copper streaks", _HS.eyebrowHColor = "blonde", _HS.pubicHColor = "blonde", _HS.underArmHColor = "blonde", _HS.skin = "brown", _HS.hLength = 35, _HS.hStyle = "shoulder-length, plaited in cornrow braids; a single thin braid adorned with several colorful feathers and fearsome fang of unknown origin is hanging aside $his left eye", _HS.pubicHStyle = "in a strip", _HS.waist = -55, _HS.boobs = 1450, _HS.nipplesPiercing = 2, _HS.butt = 5, _HS.lips = 55, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.clit = 2, _HS.clitPiercing = 2, _HS.clitSetting = "lesbian", _HS.anus = 2, _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.earPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.combat = 1, _HS.clothes = "slutty jewelry", _HS.collar = "heavy gold", _HS.shoes = "heels", _HS.intelligence = -30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has tattoo of cobra wrapping around $his neck, which head with wide open maw and inflated hood tattooed right at $his throat.", _HS.custom.desc = "$He has a streak of ritual scars resembling some very complex snake skin pattern running down $his spine from nape to tail-bone.">> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'Top' Lillium", _HS.birthName = "Sarah", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, _HS.health = 90, _HS.devotion = 100, _HS.muscles = 20, _HS.height = 190, _HS.eyeColor = "green", _HS.origHColor = "red", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.hColor = "deep red", _HS.eyebrowHColor = "red", _HS.pubicHColor = "red", _HS.underArmHColor = "red", _HS.skin = "fair", _HS.hLength = 20, _HS.hStyle = "short and pleasantly frames $his face", _HS.waist = -55, _HS.boobs = 900, _HS.butt = 4, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "all", _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 100, _HS.skill.entertainment = 100, _HS.skill.combat = 1, _HS.clothes = "nice business attire", _HS.collar = "heavy gold", _HS.shoes = "flats", _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a small, grinning harlequin tattoo on $his inner thigh.", _HS.custom.desc = "In place of $his left hand's pinkie finger is a large pink scar that crosses the entire back of $his hand.">> +<<set _HS.slaveName = "'Top' Lillium", _HS.birthName = "Sarah", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, _HS.health.condition = 90, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 90, _HS.devotion = 100, _HS.muscles = 20, _HS.height = 190, _HS.eyeColor = "green", _HS.origHColor = "red", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.hColor = "deep red", _HS.eyebrowHColor = "red", _HS.pubicHColor = "red", _HS.underArmHColor = "red", _HS.skin = "fair", _HS.hLength = 20, _HS.hStyle = "short and pleasantly frames $his face", _HS.waist = -55, _HS.boobs = 900, _HS.butt = 4, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "all", _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 100, _HS.skill.entertainment = 100, _HS.skill.combat = 1, _HS.clothes = "nice business attire", _HS.collar = "heavy gold", _HS.shoes = "flats", _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a small, grinning harlequin tattoo on $his inner thigh.", _HS.custom.desc = "In place of $his left hand's pinkie finger is a large pink scar that crosses the entire back of $his hand.">> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Cammy", _HS.birthName = "Viktoriya", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, _HS.health = 80, _HS.devotion = 70, _HS.muscles = 75, _HS.height = 145, _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "pale", _HS.hStyle = "tied back into two long braids", _HS.boobs = 800, _HS.butt = 2.5, _HS.face = 15, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.clothes = "a comfortable bodysuit", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.custom.desc = "$He has a long horizontal scar on $his left cheek.">> +<<set _HS.slaveName = "Cammy", _HS.birthName = "Viktoriya", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, _HS.health.condition = 80, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 80, _HS.devotion = 70, _HS.muscles = 75, _HS.height = 145, _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "pale", _HS.hStyle = "tied back into two long braids", _HS.boobs = 800, _HS.butt = 2.5, _HS.face = 15, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.clothes = "a comfortable bodysuit", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.custom.desc = "$He has a long horizontal scar on $his left cheek.">> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Sheena", _HS.birthName = "Penelope", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 80, _HS.devotion = 90, _HS.height = 155, _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.hColor = "black with deep red highlights", _HS.eyebrowHColor = "red", _HS.pubicHColor = "red", _HS.underArmHColor = "red", _HS.skin = "pale", _HS.hStyle = "long and disheveled", _HS.waist = -55, _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lipsPiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.clitSetting = "anal", _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.makeup = 2, _HS.nails = 2, _HS.earPiercing = 2, _HS.nosePiercing = 1, _HS.navelPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 35, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.clothes = "a slutty outfit", _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has been heavily tattooed, with $his chest, thighs, and both arms covered in various punk-style pieces. The biggest and most impressive piece is the large logo of a legendary late 20th century punk band.">> +<<set _HS.slaveName = "Sheena", _HS.birthName = "Penelope", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health.condition = 80, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 80, _HS.devotion = 90, _HS.height = 155, _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.hColor = "black with deep red highlights", _HS.eyebrowHColor = "red", _HS.pubicHColor = "red", _HS.underArmHColor = "red", _HS.skin = "pale", _HS.hStyle = "long and disheveled", _HS.waist = -55, _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lipsPiercing = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.clitSetting = "anal", _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.makeup = 2, _HS.nails = 2, _HS.earPiercing = 2, _HS.nosePiercing = 1, _HS.navelPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 35, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.clothes = "a slutty outfit", _HS.intelligence = -30, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has been heavily tattooed, with $his chest, thighs, and both arms covered in various punk-style pieces. The biggest and most impressive piece is the large logo of a legendary late 20th century punk band.">> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'Funbags' Young", _HS.birthName = "Young", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = -10, _HS.devotion = 90, _HS.height = 175, _HS.nationality = "Korean", _HS.race = "asian", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hLength = 10, _HS.waist = -55, _HS.boobs = 3550, _HS.boobsImplant = 3000, _HS.nipplesPiercing = 1, _HS.areolae = 3, _HS.boobsTat = "degradation", _HS.butt = 2, _HS.face = 15, _HS.lipsPiercing = 2, _HS.lipsTat = "degradation", _HS.tonguePiercing = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.brand["chest"] = "SLUT", _HS.skill.oral = 100, _HS.aphrodisiacs = 1, _HS.addict = 22, _HS.collar = "shock punishment", _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1>> +<<set _HS.slaveName = "'Funbags' Young", _HS.birthName = "Young", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health.condition = -10, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = -10, _HS.devotion = 90, _HS.height = 175, _HS.nationality = "Korean", _HS.race = "asian", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hLength = 10, _HS.waist = -55, _HS.boobs = 3550, _HS.boobsImplant = 3000, _HS.nipplesPiercing = 1, _HS.areolae = 3, _HS.boobsTat = "degradation", _HS.butt = 2, _HS.face = 15, _HS.lipsPiercing = 2, _HS.lipsTat = "degradation", _HS.tonguePiercing = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.brand["chest"] = "SLUT", _HS.skill.oral = 100, _HS.aphrodisiacs = 1, _HS.addict = 22, _HS.collar = "shock punishment", _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1>> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Sakura", _HS.birthName = "Sakura", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 100, _HS.devotion = 100, _HS.muscles = 20, _HS.race = "asian", _HS.skin = "dark", _HS.hLength = 25, _HS.hStyle = "short and held back by a white bandana", _HS.boobs = 600, _HS.butt = 4, _HS.faceImplant = 15, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clit = 1, _HS.clitPiercing = 3, _HS.clitSetting = "humiliation", _HS.anus = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.whoring = 100, _HS.skill.entertainment = 100, _HS.skill.combat = 1, _HS.clothes = "a slutty outfit", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.fetishKnown = 1, _HS.custom.desc = "$He is an enthusiastic high school graduate, eager to make $his teacher proud by becoming the greatest slave known to any owner.", _HS.career = "a student">> +<<set _HS.slaveName = "Sakura", _HS.birthName = "Sakura", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health.condition = 100, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 100, _HS.devotion = 100, _HS.muscles = 20, _HS.race = "asian", _HS.skin = "dark", _HS.hLength = 25, _HS.hStyle = "short and held back by a white bandana", _HS.boobs = 600, _HS.butt = 4, _HS.faceImplant = 15, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clit = 1, _HS.clitPiercing = 3, _HS.clitSetting = "humiliation", _HS.anus = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.whoring = 100, _HS.skill.entertainment = 100, _HS.skill.combat = 1, _HS.clothes = "a slutty outfit", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.fetishKnown = 1, _HS.custom.desc = "$He is an enthusiastic high school graduate, eager to make $his teacher proud by becoming the greatest slave known to any owner.", _HS.career = "a student">> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Miss Maree", _HS.birthName = "Tina", _HS.origin = "A former headmistress, $he was sentenced to slavery after $he was caught training $his students to be lesbian trophy slaves.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, _HS.health = 100, _HS.devotion = -50, _HS.weight = 20, _HS.height = 155, _HS.nationality = "American", _HS.eyeColor = "green", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.skin = "pale", _HS.hStyle = "in a large bun", _HS.pubicHStyle = "in a strip", _HS.waist = -55, _HS.boobs = 1500, _HS.areolae = 3, _HS.boobsTat = "advertisements", _HS.butt = 6, _HS.face = 15, _HS.lips = 35, _HS.lipsTat = "permanent makeup", _HS.vaginaLube = 1, _HS.bellyAccessory = "a corset", _HS.ovaries = 1, _HS.anusTat = "flowers", _HS.earPiercing = 1, _HS.stampTat = "scenes", _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.collar = "leather with cowbell", _HS.shoes = "heels", _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 0, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.sexualFlaw = "hates men", _HS.custom.desc = "$He absolutely detests men.", _HS.career = "a principal">> +<<set _HS.slaveName = "Miss Maree", _HS.birthName = "Tina", _HS.origin = "A former headmistress, $he was sentenced to slavery after $he was caught training $his students to be lesbian trophy slaves.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, _HS.health.condition = 100, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 100, _HS.devotion = -50, _HS.weight = 20, _HS.height = 155, _HS.nationality = "American", _HS.eyeColor = "green", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.skin = "pale", _HS.hStyle = "in a large bun", _HS.pubicHStyle = "in a strip", _HS.waist = -55, _HS.boobs = 1500, _HS.areolae = 3, _HS.boobsTat = "advertisements", _HS.butt = 6, _HS.face = 15, _HS.lips = 35, _HS.lipsTat = "permanent makeup", _HS.vaginaLube = 1, _HS.bellyAccessory = "a corset", _HS.ovaries = 1, _HS.anusTat = "flowers", _HS.earPiercing = 1, _HS.stampTat = "scenes", _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.collar = "leather with cowbell", _HS.shoes = "heels", _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 0, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.sexualFlaw = "hates men", _HS.custom.desc = "$He absolutely detests men.", _HS.career = "a principal">> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Caroline", _HS.birthName = "Carl", _HS.ID = _i++, _HS.prestige = 1, _HS.prestigeDesc = "$He was once a rising Free Cities politician who argued for compulsory female enslavement, but $he became an addict, fell into debt, and was subsequently enslaved.", _HS.birthWeek = random(0,51), _HS.genes = "XY", _HS.actualAge = 44, _HS.physicalAge = 44, _HS.visualAge = 44, _HS.ovaryAge = 44, _HS.health = 60, _HS.devotion = 90, _HS.height = 145, _HS.heightImplant = -1, _HS.race = "white", _HS.nationality = "French", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.skin = "spray tanned", _HS.hLength = 70, _HS.hStyle = "ass-length", _HS.waist = -55, _HS.heels = 1, _HS.boobs = 1100, _HS.boobsImplant = 400, _HS.nipplesPiercing = 1, _HS.areolae = 1, _HS.butt = 4, _HS.buttImplant = 2, _HS.face = 55, _HS.faceImplant = 65, _HS.lips = 55, _HS.lipsImplant = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.preg = -2, _HS.anus = 2, _HS.anusTat = "bleached", _HS.makeup = 3, _HS.nails = 1, _HS.earPiercing = 1, _HS.navelPiercing = 1, _HS.legsTat = "degradation", _HS.stampTat = "degradation", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 15, _HS.skill.entertainment = 35, _HS.drugs = "breast injections", _HS.addict = 1, _HS.clothes = "slutty jewelry", _HS.collar = "tight steel", _HS.intelligence = -90, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has a tattoo down $his left arm, which reads 'Once a tall, muscular, handsome man with a big dick and big balls.'", _HS.custom.desc = "Since becoming a slave $he has been turned into a little bimbo.">> +<<set _HS.slaveName = "Caroline", _HS.birthName = "Carl", _HS.ID = _i++, _HS.prestige = 1, _HS.prestigeDesc = "$He was once a rising Free Cities politician who argued for compulsory female enslavement, but $he became an addict, fell into debt, and was subsequently enslaved.", _HS.birthWeek = random(0,51), _HS.genes = "XY", _HS.actualAge = 44, _HS.physicalAge = 44, _HS.visualAge = 44, _HS.ovaryAge = 44, _HS.health.condition = 60, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 60, _HS.devotion = 90, _HS.height = 145, _HS.heightImplant = -1, _HS.race = "white", _HS.nationality = "French", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.skin = "spray tanned", _HS.hLength = 70, _HS.hStyle = "ass-length", _HS.waist = -55, _HS.heels = 1, _HS.boobs = 1100, _HS.boobsImplant = 400, _HS.nipplesPiercing = 1, _HS.areolae = 1, _HS.butt = 4, _HS.buttImplant = 2, _HS.face = 55, _HS.faceImplant = 65, _HS.lips = 55, _HS.lipsImplant = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.preg = -2, _HS.anus = 2, _HS.anusTat = "bleached", _HS.makeup = 3, _HS.nails = 1, _HS.earPiercing = 1, _HS.navelPiercing = 1, _HS.legsTat = "degradation", _HS.stampTat = "degradation", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 15, _HS.skill.entertainment = 35, _HS.drugs = "breast injections", _HS.addict = 1, _HS.clothes = "slutty jewelry", _HS.collar = "tight steel", _HS.intelligence = -90, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has a tattoo down $his left arm, which reads 'Once a tall, muscular, handsome man with a big dick and big balls.'", _HS.custom.desc = "Since becoming a slave $he has been turned into a little bimbo.">> <<set $heroSlaves.push(_HS)>> <<if $seePreg != 0>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> - <<set _HS.slaveName = "'Milkmaid' Megan", _HS.birthName = "Megan", _HS.origin = "$He was sold to you from the public slave market, and was probably kidnapped or otherwise forced into slavery.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 34, _HS.physicalAge = 34, _HS.visualAge = 34, _HS.ovaryAge = 34, _HS.health = 100, _HS.devotion = 100, _HS.nationality = "American", _HS.skin = "light", _HS.hStyle = "long", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.boobs = 1350, _HS.lactation = 1, _HS.lactationDuration = 4, _HS.butt = 3, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.preg = 27, _HS.pregType = 1, _HS.pregWeek = 27, _HS.pregKnown = 1, _HS.belly = 5000, _HS.bellyPreg = 5000, _HS.counter.births = 1, _HS.counter.birthsTotal = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.brand["right buttock"] = "SLAVE", _HS.earPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =100, _HS.skill.entertainment = 35, _HS.skill.combat = 0, _HS.collar = "heavy gold", _HS.shoes = "flats", _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.face = 0, _HS.intelligence = 0>> + <<set _HS.slaveName = "'Milkmaid' Megan", _HS.birthName = "Megan", _HS.origin = "$He was sold to you from the public slave market, and was probably kidnapped or otherwise forced into slavery.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 34, _HS.physicalAge = 34, _HS.visualAge = 34, _HS.ovaryAge = 34, _HS.health.condition = 100, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 100, _HS.devotion = 100, _HS.nationality = "American", _HS.skin = "light", _HS.hStyle = "long", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.boobs = 1350, _HS.lactation = 1, _HS.lactationDuration = 4, _HS.butt = 3, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.preg = 27, _HS.pregType = 1, _HS.pregWeek = 27, _HS.pregKnown = 1, _HS.belly = 5000, _HS.bellyPreg = 5000, _HS.counter.births = 1, _HS.counter.birthsTotal = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.brand["right buttock"] = "SLAVE", _HS.earPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =100, _HS.skill.entertainment = 35, _HS.skill.combat = 0, _HS.collar = "heavy gold", _HS.shoes = "flats", _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.face = 0, _HS.intelligence = 0>> <<set $heroSlaves.push(_HS)>> <</if>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Horsepussy", _HS.birthName = "Amber", _HS.origin = "$He was sold to you from the public slave market, and was probably kidnapped or otherwise forced into slavery.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 35, _HS.physicalAge = 35, _HS.visualAge = 35, _HS.ovaryAge = 35, _HS.health = 80, _HS.devotion = 55.7, _HS.height = 170, _HS.race = "white", _HS.nationality = "American", _HS.eyeColor = "blue", _HS.skin = "pale", _HS.hLength = 10, _HS.boobs = 500, _HS.butt = 5, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.clitPiercing = 3, _HS.clitSetting = "vanilla", _HS.anus = 3, _HS.ovaries = 1, _HS.anusPiercing = 1, _HS.makeup = 1, _HS.brand["right buttock"] = "SLAVE", _HS.earPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =100, _HS.skill.entertainment = 35, _HS.collar = "heavy gold", _HS.shoes = "heels", _HS.intelligence = 96, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$His nickname, 'Horsepussy,' is tattooed on $his forehead.", _HS.custom.desc = "$His pussy has been extensively surgically altered. $His labia are large and puffy, sticking out nearly an inch from $his crotch. $His cunt is exquisitely pink at the center, but $his large labia are dark at the edges, almost black.", _HS.labia = 3>> +<<set _HS.slaveName = "Horsepussy", _HS.birthName = "Amber", _HS.origin = "$He was sold to you from the public slave market, and was probably kidnapped or otherwise forced into slavery.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 35, _HS.physicalAge = 35, _HS.visualAge = 35, _HS.ovaryAge = 35, _HS.health.condition = 80, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 80, _HS.devotion = 55.7, _HS.height = 170, _HS.race = "white", _HS.nationality = "American", _HS.eyeColor = "blue", _HS.skin = "pale", _HS.hLength = 10, _HS.boobs = 500, _HS.butt = 5, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.clitPiercing = 3, _HS.clitSetting = "vanilla", _HS.anus = 3, _HS.ovaries = 1, _HS.anusPiercing = 1, _HS.makeup = 1, _HS.brand["right buttock"] = "SLAVE", _HS.earPiercing = 1, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =100, _HS.skill.entertainment = 35, _HS.collar = "heavy gold", _HS.shoes = "heels", _HS.intelligence = 96, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$His nickname, 'Horsepussy,' is tattooed on $his forehead.", _HS.custom.desc = "$His pussy has been extensively surgically altered. $His labia are large and puffy, sticking out nearly an inch from $his crotch. $His cunt is exquisitely pink at the center, but $his large labia are dark at the edges, almost black.", _HS.labia = 3>> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Sakura", _HS.birthName = "Mei", _HS.origin = "$He is the winner of a martial arts slave tournament. You won $him in a bet.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 80, _HS.devotion = 40, _HS.muscles = 20, _HS.nationality = "Japanese", _HS.race = "asian", _HS.hColor = "black", _HS.hStyle = "long, tied into a neat ponytail", _HS.boobs = 300, _HS.butt = 1, _HS.face = 15, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "submissive", _HS.analArea = 1, _HS.ovaries = 1, _HS.skill.combat = 1, _HS.clothes = "choosing her own clothes", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a tattoo of falling cherry petals on $his back, starting at $his shoulder blades, down to $his butt.", _HS.custom.desc = "$He has a small scar on the back of $his right hand. $He was injured while participating in the finals of a national kendo tournament, and decided to keep the scar to remind $him of $his achievements.", _HS.career = "a kunoichi">> +<<set _HS.slaveName = "Sakura", _HS.birthName = "Mei", _HS.origin = "$He is the winner of a martial arts slave tournament. You won $him in a bet.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health.condition = 80, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 80, _HS.devotion = 40, _HS.muscles = 20, _HS.nationality = "Japanese", _HS.race = "asian", _HS.hColor = "black", _HS.hStyle = "long, tied into a neat ponytail", _HS.boobs = 300, _HS.butt = 1, _HS.face = 15, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "submissive", _HS.analArea = 1, _HS.ovaries = 1, _HS.skill.combat = 1, _HS.clothes = "choosing her own clothes", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a tattoo of falling cherry petals on $his back, starting at $his shoulder blades, down to $his butt.", _HS.custom.desc = "$He has a small scar on the back of $his right hand. $He was injured while participating in the finals of a national kendo tournament, and decided to keep the scar to remind $him of $his achievements.", _HS.career = "a kunoichi">> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Zhao Li", _HS.birthName = "Zhao Li", _HS.origin = "$He was caught and enslaved while working undercover.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 35, _HS.physicalAge = 35, _HS.visualAge = 35, _HS.ovaryAge = 35, _HS.health = 100, _HS.devotion = 100, _HS.muscles = 100, _HS.height = 175, _HS.race = "asian", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hStyle = "long, but tied into Chinese buns.", _HS.pubicHStyle = "in a strip", _HS.boobs = 755, _HS.butt = 4, _HS.face = 15, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clit = 1, _HS.clitPiercing = 3, _HS.clitSetting = "all", _HS.anus = 2, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.entertainment = 15, _HS.skill.combat = 1, _HS.clothes = "a comfortable bodysuit", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishStrength = 100, _HS.fetishKnown = 1, _HS.custom.desc = "$He was once a skilled police investigator. Even at $his age, $his long, enticing legs are proof that $he still retains $his natural strength and beauty.", _HS.career = "a police detective">> +<<set _HS.slaveName = "Zhao Li", _HS.birthName = "Zhao Li", _HS.origin = "$He was caught and enslaved while working undercover.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 35, _HS.physicalAge = 35, _HS.visualAge = 35, _HS.ovaryAge = 35, _HS.health.condition = 100, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 100, _HS.devotion = 100, _HS.muscles = 100, _HS.height = 175, _HS.race = "asian", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hStyle = "long, but tied into Chinese buns.", _HS.pubicHStyle = "in a strip", _HS.boobs = 755, _HS.butt = 4, _HS.face = 15, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.clit = 1, _HS.clitPiercing = 3, _HS.clitSetting = "all", _HS.anus = 2, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.entertainment = 15, _HS.skill.combat = 1, _HS.clothes = "a comfortable bodysuit", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishStrength = 100, _HS.fetishKnown = 1, _HS.custom.desc = "$He was once a skilled police investigator. Even at $his age, $his long, enticing legs are proof that $he still retains $his natural strength and beauty.", _HS.career = "a police detective">> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'Virago' Kissa", _HS.birthName = "", _HS.birthSurname = "", _HS.origin = "In spite of the great demand for $his kind, $he has apparently eluded enslavement until recently.", _HS.career = "a wanderer", _HS.ID = _i++, _HS.prestige = 1, _HS.prestigeDesc = "$He is a natural albino.", _HS.birthWeek = random(0,51), _HS.health = 100, _HS.devotion = 100, _HS.muscles = 50, _HS.height = 190, _HS.nationality = "Ugandan", _HS.race = "black", _HS.eyeColor = "pale grey", _HS.hColor = "white", _HS.pubicHColor = "white", _HS.skin = "extremely pale", _HS.hLength = 100, _HS.hStyle = "extremely long and bushy", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.boobs = 600, _HS.face = 55, _HS.lips = 35, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "oral", _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.skill.oral = 100, _HS.skill.whoring =100, _HS.skill.entertainment = 100, _HS.skill.combat = 3, _HS.rules.living = "luxurious", _HS.rules.speech = "permissive", _HS.rules.release = "permissive", _HS.collar = "pretty jewelry", _HS.shoes = "flats", _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.geneticQuirks = {albinism: 2}, _HS.custom.tattoo = "$His entire body is tattooed with a detailed map of $his arteries which, combined with $his albinism, gives $him a quasi-translucent quality.", _HS.custom.desc = "$His eyes are unsettling; though $his irises are a pale grey color, in some lights the whole eye takes on a red cast.">> +<<set _HS.slaveName = "'Virago' Kissa", _HS.birthName = "", _HS.birthSurname = "", _HS.origin = "In spite of the great demand for $his kind, $he has apparently eluded enslavement until recently.", _HS.career = "a wanderer", _HS.ID = _i++, _HS.prestige = 1, _HS.prestigeDesc = "$He is a natural albino.", _HS.birthWeek = random(0,51), _HS.health.condition = 100, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 100, _HS.devotion = 100, _HS.muscles = 50, _HS.height = 190, _HS.nationality = "Ugandan", _HS.race = "black", _HS.eyeColor = "pale grey", _HS.hColor = "white", _HS.pubicHColor = "white", _HS.skin = "extremely pale", _HS.hLength = 100, _HS.hStyle = "extremely long and bushy", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.boobs = 600, _HS.face = 55, _HS.lips = 35, _HS.vaginaLube = 1, _HS.clitPiercing = 3, _HS.clitSetting = "oral", _HS.ovaries = 1, _HS.anusTat = "bleached", _HS.skill.oral = 100, _HS.skill.whoring =100, _HS.skill.entertainment = 100, _HS.skill.combat = 3, _HS.rules.living = "luxurious", _HS.rules.speech = "permissive", _HS.rules.release = "permissive", _HS.collar = "pretty jewelry", _HS.shoes = "flats", _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.geneticQuirks = {albinism: 2}, _HS.custom.tattoo = "$His entire body is tattooed with a detailed map of $his arteries which, combined with $his albinism, gives $him a quasi-translucent quality.", _HS.custom.desc = "$His eyes are unsettling; though $his irises are a pale grey color, in some lights the whole eye takes on a red cast.">> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Annabelle", _HS.birthName = "Annabelle", _HS.origin = "$He came to be a slave not long after fleeing farm life for the Free Cities.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = -65, _HS.height = 155, _HS.nationality = "American", _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.hStyle = "braided into pigtails", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.boobs = 500, _HS.butt = 4, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.whoring = 15, _HS.attrXY = 40, _HS.behavioralFlaw = "hates women", _HS.custom.desc = "The pale skin within $his tan lines is lightly freckled.", _HS.markings = "freckles", _HS.career = "a farmer">> +<<set _HS.slaveName = "Annabelle", _HS.birthName = "Annabelle", _HS.origin = "$He came to be a slave not long after fleeing farm life for the Free Cities.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = -65, _HS.height = 155, _HS.nationality = "American", _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.hStyle = "braided into pigtails", _HS.pubicHStyle = "bushy", _HS.waist = -55, _HS.boobs = 500, _HS.butt = 4, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.whoring = 15, _HS.attrXY = 40, _HS.behavioralFlaw = "hates women", _HS.custom.desc = "The pale skin within $his tan lines is lightly freckled.", _HS.markings = "freckles", _HS.career = "a farmer">> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'Vampire' Elvira", _HS.birthName = "Elvira", _HS.career = "a service worker", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, _HS.health = 90, _HS.devotion = 100, _HS.height = 145, _HS.nationality = "Swedish", _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.hLength = 85, _HS.hStyle = "ass-length", _HS.waist = -55, _HS.boobs = 650, _HS.boobsImplant = 200, _HS.nipplesPiercing = 2, _HS.butt = 3, _HS.buttImplant = 1, _HS.face = 55, _HS.faceImplant = 15, _HS.lips = 35, _HS.tonguePiercing = 1, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.brand["right buttock"] = "your initials", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =100, _HS.skill.entertainment = 15, _HS.rules.living = "luxurious", _HS.clothes = "choosing her own clothes", _HS.collar = "heavy gold", _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1>> +<<set _HS.slaveName = "'Vampire' Elvira", _HS.birthName = "Elvira", _HS.career = "a service worker", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, _HS.health.condition = 90, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 90, _HS.devotion = 100, _HS.height = 145, _HS.nationality = "Swedish", _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.hLength = 85, _HS.hStyle = "ass-length", _HS.waist = -55, _HS.boobs = 650, _HS.boobsImplant = 200, _HS.nipplesPiercing = 2, _HS.butt = 3, _HS.buttImplant = 1, _HS.face = 55, _HS.faceImplant = 15, _HS.lips = 35, _HS.tonguePiercing = 1, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.clitPiercing = 1, _HS.anus = 3, _HS.ovaries = 1, _HS.brand["right buttock"] = "your initials", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =100, _HS.skill.entertainment = 15, _HS.rules.living = "luxurious", _HS.clothes = "choosing her own clothes", _HS.collar = "heavy gold", _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1>> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'Creamy' Mayu", _HS.birthName = "Mayu", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 100, _HS.devotion = 100, _HS.weight = 20, _HS.height = 190, _HS.nationality = "Japanese", _HS.race = "asian", _HS.eyeColor = "blue", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 7500, _HS.nipples = "huge", _HS.areolae = 3, _HS.boobsTat = "bovine patterns", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 7, _HS.buttTat = "bovine patterns", _HS.face = 15, _HS.faceImplant = 65, _HS.lips = 35, _HS.lipsTat = "bovine patterns", _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaTat = "bovine patterns", _HS.counter.births = 1, _HS.counter.birthsTotal = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "bovine patterns", _HS.earPiercing = 1, _HS.shouldersTat = "bovine patterns", _HS.armsTat = "bovine patterns", _HS.legsTat = "bovine patterns", _HS.stampTat = "bovine patterns", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.rules.living = "luxurious", _HS.rules.speech = "permissive", _HS.rules.release = "permissive", _HS.rules.relationship = "permissive", _HS.clothes = "a nice maid outfit", _HS.collar = "leather with cowbell", _HS.shoes = "flats", _HS.intelligence = 30, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1, _HS.custom.desc = "$He is quite sweaty, often soaking though any clothing $he is wearing.">> +<<set _HS.slaveName = "'Creamy' Mayu", _HS.birthName = "Mayu", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health.condition = 100, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 100, _HS.devotion = 100, _HS.weight = 20, _HS.height = 190, _HS.nationality = "Japanese", _HS.race = "asian", _HS.eyeColor = "blue", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 7500, _HS.nipples = "huge", _HS.areolae = 3, _HS.boobsTat = "bovine patterns", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 7, _HS.buttTat = "bovine patterns", _HS.face = 15, _HS.faceImplant = 65, _HS.lips = 35, _HS.lipsTat = "bovine patterns", _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaTat = "bovine patterns", _HS.counter.births = 1, _HS.counter.birthsTotal = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.anusTat = "bovine patterns", _HS.earPiercing = 1, _HS.shouldersTat = "bovine patterns", _HS.armsTat = "bovine patterns", _HS.legsTat = "bovine patterns", _HS.stampTat = "bovine patterns", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.rules.living = "luxurious", _HS.rules.speech = "permissive", _HS.rules.release = "permissive", _HS.rules.relationship = "permissive", _HS.clothes = "a nice maid outfit", _HS.collar = "leather with cowbell", _HS.shoes = "flats", _HS.intelligence = 30, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1, _HS.custom.desc = "$He is quite sweaty, often soaking though any clothing $he is wearing.">> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'Submissive' Cindy", _HS.birthName = "Cindy", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 100, _HS.devotion = 100, _HS.muscles = 20, _HS.height = 175, _HS.nationality = "Indonesian", _HS.race = "asian", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.custom.tattoo = "$He has a barcode tattooed on the top of $his head.", _HS.pubicHStyle = "bushy", _HS.boobs = 600, _HS.nipplesPiercing = 1, _HS.boobsTat = "tribal patterns", _HS.butt = 2, _HS.buttTat = "tribal patterns", _HS.face = 55, _HS.faceImplant = 15, _HS.lips = 35, _HS.lipsPiercing = 1, _HS.lipsTat = "tribal patterns", _HS.tonguePiercing = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.vaginaTat = "tribal patterns", _HS.preg = -2, _HS.clitPiercing = 3, _HS.clitSetting = "all", _HS.ovaries = 1, _HS.anusPiercing = 1, _HS.anusTat = "bleached", _HS.earPiercing = 1, _HS.nosePiercing = 1, _HS.eyebrowPiercing = 1, _HS.navelPiercing = 1, _HS.shouldersTat = "tribal patterns", _HS.armsTat = "tribal patterns", _HS.legsTat = "tribal patterns", _HS.stampTat = "tribal patterns", _HS.skill.oral = 35, _HS.skill.combat = 1, _HS.rules.living = "luxurious", _HS.rules.speech = "permissive", _HS.rules.release = "permissive", _HS.rules.relationship = "permissive", _HS.clothes = "attractive lingerie", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = -70, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$His skin is unnaturally perfect, totally without blemishes. $He radiates unnatural health and resilience.">> +<<set _HS.slaveName = "'Submissive' Cindy", _HS.birthName = "Cindy", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health.condition = 100, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 100, _HS.devotion = 100, _HS.muscles = 20, _HS.height = 175, _HS.nationality = "Indonesian", _HS.race = "asian", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.custom.tattoo = "$He has a barcode tattooed on the top of $his head.", _HS.pubicHStyle = "bushy", _HS.boobs = 600, _HS.nipplesPiercing = 1, _HS.boobsTat = "tribal patterns", _HS.butt = 2, _HS.buttTat = "tribal patterns", _HS.face = 55, _HS.faceImplant = 15, _HS.lips = 35, _HS.lipsPiercing = 1, _HS.lipsTat = "tribal patterns", _HS.tonguePiercing = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 1, _HS.vaginaTat = "tribal patterns", _HS.preg = -2, _HS.clitPiercing = 3, _HS.clitSetting = "all", _HS.ovaries = 1, _HS.anusPiercing = 1, _HS.anusTat = "bleached", _HS.earPiercing = 1, _HS.nosePiercing = 1, _HS.eyebrowPiercing = 1, _HS.navelPiercing = 1, _HS.shouldersTat = "tribal patterns", _HS.armsTat = "tribal patterns", _HS.legsTat = "tribal patterns", _HS.stampTat = "tribal patterns", _HS.skill.oral = 35, _HS.skill.combat = 1, _HS.rules.living = "luxurious", _HS.rules.speech = "permissive", _HS.rules.release = "permissive", _HS.rules.relationship = "permissive", _HS.clothes = "attractive lingerie", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = -70, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$His skin is unnaturally perfect, totally without blemishes. $He radiates unnatural health and resilience.">> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Anna", _HS.birthName = "Anna", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 60, _HS.height = 175, _HS.skin = "white", _HS.hLength = 10, _HS.boobs = 800, _HS.butt = 3, _HS.vaginaLube = 1, _HS.analArea = 1, _HS.ovaries = 1, _HS.attrXY = 40, _HS.fetishKnown = 1>> +<<set _HS.slaveName = "Anna", _HS.birthName = "Anna", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 60, _HS.height = 175, _HS.skin = "white", _HS.hLength = 10, _HS.boobs = 800, _HS.butt = 3, _HS.vaginaLube = 1, _HS.analArea = 1, _HS.ovaries = 1, _HS.attrXY = 40, _HS.fetishKnown = 1>> <<set $heroSlaves.push(_HS)>> /*Removed eyecolor customdesc -BoneyM*/ <<if $seeExtreme == 1>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Mouse", _HS.birthName = "Mouse", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = -50, _HS.weight = 20, _HS.height = 152, _HS.override_H_Color = 1, _HS.pubicHColor = "purple", _HS.skin = "pale", _HS.eyeColor = "blue", _HS.hColor = "purple", _HS.hLength = 10, _HS.boobs = 1000, _HS.areolae = 1, _HS.butt = 5, _HS.lipsTat = "permanent makeup", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.analArea = 1, _HS.ovaries = 1, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.voice = 0, _HS.nipples = "puffy">> +<<set _HS.slaveName = "Mouse", _HS.birthName = "Mouse", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = -50, _HS.weight = 20, _HS.height = 152, _HS.override_H_Color = 1, _HS.pubicHColor = "purple", _HS.skin = "pale", _HS.eyeColor = "blue", _HS.hColor = "purple", _HS.hLength = 10, _HS.boobs = 1000, _HS.areolae = 1, _HS.butt = 5, _HS.lipsTat = "permanent makeup", _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.analArea = 1, _HS.ovaries = 1, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.voice = 0, _HS.nipples = "puffy">> <<run removeLimbs(_HS, "all")>> <<set $heroSlaves.push(_HS)>> /*Increased nipples and areolae, changed eye color, added mute -BoneyM*/ @@ -529,46 +529,46 @@ /* put some of $his custom description in $his origin (box stuff), tagged as amp, lowered obedience, increased weight but lowered health, changed skin color from white to pale */ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Yukiko", _HS.birthName = "Yukiko", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = 100, _HS.weight = -20, _HS.race = "asian", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "very fair", _HS.hStyle = "long, and in a hime cut", _HS.boobs = 500, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.clothes = "a slave gown", _HS.intelligence = -40, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.custom.desc = "$He is a work of art: stoic, mysterious, doll-like, — and always smiling.", _HS.voice = 0>> +<<set _HS.slaveName = "Yukiko", _HS.birthName = "Yukiko", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 100, _HS.weight = -20, _HS.race = "asian", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "very fair", _HS.hStyle = "long, and in a hime cut", _HS.boobs = 500, _HS.butt = 3, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.clothes = "a slave gown", _HS.intelligence = -40, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.custom.desc = "$He is a work of art: stoic, mysterious, doll-like, — and always smiling.", _HS.voice = 0>> <<run removeLimbs(_HS, "all")>> <<set $heroSlaves.push(_HS)>> /* not much to change, lowered weight ('perfect slim body'), set to mute and changed flaw to odd- described as creepy */ <<if $seePreg != 0>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'Fucknugget' Pillow", _HS.birthName = "Anika", _HS.origin = "$He sold $himself into slavery to escape life on the streets.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 37, _HS.physicalAge = 37, _HS.visualAge = 37, _HS.ovaryAge = 37, _HS.health = 80, _HS.devotion = 100, _HS.weight = 40, _HS.origRace = "white", _HS.override_Race = 1, _HS.race = "latina", _HS.eyeColor = "blue", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.hStyle = "long", _HS.waist = -100, _HS.boobs = 6260, _HS.boobsImplant = 4200, _HS.nipplesPiercing = 2, _HS.areolae = 3, _HS.boobsTat = "flowers", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 12, _HS.buttImplant = 1, _HS.buttTat = "flowers", _HS.face = 55, _HS.faceImplant = 15, _HS.lips = 55, _HS.lipsImplant = 10, _HS.lipsPiercing = 2, _HS.lipsTat = "flowers", _HS.tonguePiercing = 2, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.vaginaTat = "flowers", _HS.preg = 37, _HS.pregType = 1, _HS.pregWeek = 37, _HS.pregKnown = 1, _HS.belly = 13000, _HS.bellyPreg = 13000, _HS.counter.births = 2, _HS.counter.birthsTotal = 2, _HS.clitPiercing = 3, _HS.clitSetting = "boobs", _HS.anus = 2, _HS.ovaries = 1, _HS.anusPiercing = 2, _HS.anusTat = "flowers", _HS.makeup = 3, _HS.earPiercing = 2, _HS.nosePiercing = 2, _HS.eyebrowPiercing = 2, _HS.navelPiercing = 2, _HS.shouldersTat = "advertisements", _HS.stampTat = "flowers", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 15, _HS.aphrodisiacs = 1, _HS.addict = 99, _HS.clothes = "restrictive latex", _HS.collar = "leather with cowbell", _HS.intelligence = -70, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1>> +<<set _HS.slaveName = "'Fucknugget' Pillow", _HS.birthName = "Anika", _HS.origin = "$He sold $himself into slavery to escape life on the streets.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 37, _HS.physicalAge = 37, _HS.visualAge = 37, _HS.ovaryAge = 37, _HS.health.condition = 80, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 80, _HS.devotion = 100, _HS.weight = 40, _HS.origRace = "white", _HS.override_Race = 1, _HS.race = "latina", _HS.eyeColor = "blue", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.hStyle = "long", _HS.waist = -100, _HS.boobs = 6260, _HS.boobsImplant = 4200, _HS.nipplesPiercing = 2, _HS.areolae = 3, _HS.boobsTat = "flowers", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 12, _HS.buttImplant = 1, _HS.buttTat = "flowers", _HS.face = 55, _HS.faceImplant = 15, _HS.lips = 55, _HS.lipsImplant = 10, _HS.lipsPiercing = 2, _HS.lipsTat = "flowers", _HS.tonguePiercing = 2, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.vaginaTat = "flowers", _HS.preg = 37, _HS.pregType = 1, _HS.pregWeek = 37, _HS.pregKnown = 1, _HS.belly = 13000, _HS.bellyPreg = 13000, _HS.counter.births = 2, _HS.counter.birthsTotal = 2, _HS.clitPiercing = 3, _HS.clitSetting = "boobs", _HS.anus = 2, _HS.ovaries = 1, _HS.anusPiercing = 2, _HS.anusTat = "flowers", _HS.makeup = 3, _HS.earPiercing = 2, _HS.nosePiercing = 2, _HS.eyebrowPiercing = 2, _HS.navelPiercing = 2, _HS.shouldersTat = "advertisements", _HS.stampTat = "flowers", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 15, _HS.aphrodisiacs = 1, _HS.addict = 99, _HS.clothes = "restrictive latex", _HS.collar = "leather with cowbell", _HS.intelligence = -70, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1>> <<run removeLimbs(_HS, "all")>> <<set $heroSlaves.push(_HS)>> <</if>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'DoL Toy' Allie", _HS.birthName = "Aliana", _HS.origin = "$He is an enslaved member of an anti-slavery extremist group.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 33, _HS.physicalAge = 33, _HS.visualAge = 33, _HS.ovaryAge = 33, _HS.health = 80, _HS.devotion = 65, _HS.height = 155, _HS.nationality = "Mexican", _HS.race = "latina", _HS.override_H_Color = 1, _HS.hColor = "raven black with red highlights", _HS.skin = "brown", _HS.hLength = 10, _HS.waist = -55, _HS.boobs = 700, _HS.butt = 3, _HS.face = 15, _HS.lips = 35, _HS.lipsTat = "permanent makeup", _HS.vagina = 2, _HS.vaginaLube = 1, _HS.bellyAccessory = "an extreme corset", _HS.clitPiercing = 3, _HS.clitSetting = "submissive", _HS.anus = 2, _HS.ovaries = 1, _HS.stampTat = "degradation", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =35, _HS.skill.entertainment = 15, _HS.collar = "heavy gold", _HS.shoes = "heels", _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.tattoo = "$His left butt cheek is tattooed with a small shield bearing the words 'Daughter of Liberty' with a large red 'not' symbol added over it.">> +<<set _HS.slaveName = "'DoL Toy' Allie", _HS.birthName = "Aliana", _HS.origin = "$He is an enslaved member of an anti-slavery extremist group.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 33, _HS.physicalAge = 33, _HS.visualAge = 33, _HS.ovaryAge = 33, _HS.health.condition = 80, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 80, _HS.devotion = 65, _HS.height = 155, _HS.nationality = "Mexican", _HS.race = "latina", _HS.override_H_Color = 1, _HS.hColor = "raven black with red highlights", _HS.skin = "brown", _HS.hLength = 10, _HS.waist = -55, _HS.boobs = 700, _HS.butt = 3, _HS.face = 15, _HS.lips = 35, _HS.lipsTat = "permanent makeup", _HS.vagina = 2, _HS.vaginaLube = 1, _HS.bellyAccessory = "an extreme corset", _HS.clitPiercing = 3, _HS.clitSetting = "submissive", _HS.anus = 2, _HS.ovaries = 1, _HS.stampTat = "degradation", _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =35, _HS.skill.entertainment = 15, _HS.collar = "heavy gold", _HS.shoes = "heels", _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.tattoo = "$His left butt cheek is tattooed with a small shield bearing the words 'Daughter of Liberty' with a large red 'not' symbol added over it.">> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'Onahole' Lian the Liberty Whore", _HS.birthName = "Lian", _HS.origin = "$He is an enslaved member of an anti-slavery extremist group.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, _HS.health = -70, _HS.devotion = 100, _HS.muscles = 20, _HS.nationality = "Chinese", _HS.race = "asian", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.waist = -100, _HS.boobs = 2000, _HS.boobsImplant = 600, _HS.areolae = 2, _HS.butt = 8, _HS.face = 55, _HS.faceImplant = 65, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.clit = 2, _HS.anus = 2, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =100, _HS.collar = "shock punishment", _HS.shoes = "flats", _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1>> +<<set _HS.slaveName = "'Onahole' Lian the Liberty Whore", _HS.birthName = "Lian", _HS.origin = "$He is an enslaved member of an anti-slavery extremist group.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, _HS.health.condition = -50, _HS.health.shortDamage = 0, _HS.health.longDamage = 20, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = -70, _HS.devotion = 100, _HS.muscles = 20, _HS.nationality = "Chinese", _HS.race = "asian", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.waist = -100, _HS.boobs = 2000, _HS.boobsImplant = 600, _HS.areolae = 2, _HS.butt = 8, _HS.face = 55, _HS.faceImplant = 65, _HS.vagina = 3, _HS.vaginaLube = 1, _HS.clit = 2, _HS.anus = 2, _HS.skill.vaginal = 100, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring =100, _HS.collar = "shock punishment", _HS.shoes = "flats", _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1>> <<run removeLimbs(_HS, "all")>> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'Quiet' Fay", _HS.birthName = "", _HS.birthSurname = "", _HS.origin = "Having always been a mute with no desire to communicate $his origin, you aren't sure where $he's from or how $he ended up here.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = -20, _HS.devotion = -100, _HS.height = 145, _HS.hColor = "brown", _HS.pubicHColor = "brown", _HS.skin = "white", _HS.hStyle = "long and disheveled", _HS.boobs = 400, _HS.butt = 2, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.oral = 15, _HS.clothes = "a nice maid outfit", _HS.attrXY = 40, _HS.fetish = "submissive", _HS.custom.tattoo = "There's an 'X' imprinted on $his throat where $his larynx would be.", _HS.custom.desc = "$He earned $his name from $his permanent silence and fae physique.", _HS.voice = 0>> +<<set _HS.slaveName = "'Quiet' Fay", _HS.birthName = "", _HS.birthSurname = "", _HS.origin = "Having always been a mute with no desire to communicate $his origin, you aren't sure where $he's from or how $he ended up here.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = -20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = -20, _HS.devotion = -100, _HS.height = 145, _HS.hColor = "brown", _HS.pubicHColor = "brown", _HS.skin = "white", _HS.hStyle = "long and disheveled", _HS.boobs = 400, _HS.butt = 2, _HS.vaginaLube = 1, _HS.ovaries = 1, _HS.skill.oral = 15, _HS.clothes = "a nice maid outfit", _HS.attrXY = 40, _HS.fetish = "submissive", _HS.custom.tattoo = "There's an 'X' imprinted on $his throat where $his larynx would be.", _HS.custom.desc = "$He earned $his name from $his permanent silence and fae physique.", _HS.voice = 0>> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Flora", _HS.birthName = "Flora", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 25, _HS.weight = -20, _HS.height = 155, _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 100, _HS.skill.anal = 35, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.custom.desc = "$He fits perfectly into a pillowcase.">> +<<set _HS.slaveName = "Flora", _HS.birthName = "Flora", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 25, _HS.weight = -20, _HS.height = 155, _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 100, _HS.skill.anal = 35, _HS.energy = 100, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy", _HS.custom.desc = "$He fits perfectly into a pillowcase.">> <<run removeLimbs(_HS, "all")>> <<set $heroSlaves.push(_HS)>> /*bitchy arrogant*/ /*Added 'bitchy' quirk, reduced height and weight, added customdesc -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Cunt", _HS.birthName = "Cunt", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = -10, _HS.devotion = 10, _HS.race = "white", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "white", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.heels = 1, _HS.boobs = 800, _HS.boobsImplant = 600, _HS.butt = 4, _HS.buttImplant = 2, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.clitPiercing = 1, _HS.anus = 2, _HS.anusTat = "tribal patterns", _HS.nosePiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 35, _HS.intelligence = -70, _HS.attrXY = 40, _HS.attrKnown = 0, _HS.fetish = "mindbroken", _HS.fetishKnown = 1>> +<<set _HS.slaveName = "Cunt", _HS.birthName = "Cunt", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health.condition = -10, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = -10, _HS.devotion = 10, _HS.race = "white", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "white", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.heels = 1, _HS.boobs = 800, _HS.boobsImplant = 600, _HS.butt = 4, _HS.buttImplant = 2, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.clitPiercing = 1, _HS.anus = 2, _HS.anusTat = "tribal patterns", _HS.nosePiercing = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 35, _HS.intelligence = -70, _HS.attrXY = 40, _HS.attrKnown = 0, _HS.fetish = "mindbroken", _HS.fetishKnown = 1>> <<set $heroSlaves.push(_HS)>> /*mindbroken*/ /*Tweaked smart piercing setting, corrected piercings -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Fleshlight", _HS.birthName = "Fleshlight", _HS.origin = "Nothing remains of the person $he originally was, either mentally or physically.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 60, _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.skin = "spray tanned", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 800, _HS.boobsImplant = 600, _HS.butt = 5, _HS.buttImplant = 2, _HS.lips = 55, _HS.lipsImplant = 2, _HS.lipsTat = "permanent makeup", _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.makeup = 3, _HS.nails = 3, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "mindbroken", _HS.fetishKnown = 1, _HS.custom.desc = "$He has many surgical scars and something seems off about $him.">> +<<set _HS.slaveName = "Fleshlight", _HS.birthName = "Fleshlight", _HS.origin = "Nothing remains of the person $he originally was, either mentally or physically.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 60, _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.skin = "spray tanned", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 800, _HS.boobsImplant = 600, _HS.butt = 5, _HS.buttImplant = 2, _HS.lips = 55, _HS.lipsImplant = 2, _HS.lipsTat = "permanent makeup", _HS.vagina = 2, _HS.vaginaLube = 1, _HS.anus = 2, _HS.ovaries = 1, _HS.makeup = 3, _HS.nails = 3, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.shoes = "heels", _HS.attrXY = 40, _HS.fetish = "mindbroken", _HS.fetishKnown = 1, _HS.custom.desc = "$He has many surgical scars and something seems off about $him.">> <<run App.Medicine.Modification.addScar(_HS, "left breast", "surgical", 2)>> <<run App.Medicine.Modification.addScar(_HS, "right breast", "surgical", 2)>> <<run App.Medicine.Modification.addScar(_HS, "left buttock", "surgical", 2)>> @@ -578,7 +578,7 @@ /*Added origin, makeup and nails, changed eyes -BoneyM*/ <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Whore", _HS.birthName = "Whore", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health = 20, _HS.devotion = 100, _HS.height = 155, _HS.skin = "white", _HS.hStyle = "long and in a braid", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetish = "mindbroken", _HS.fetishKnown = 1, _HS.custom.desc = "$He is a complete mental blank; to $him, there is only the Master.">> +<<set _HS.slaveName = "Whore", _HS.birthName = "Whore", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 100, _HS.height = 155, _HS.skin = "white", _HS.hStyle = "long and in a braid", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetish = "mindbroken", _HS.fetishKnown = 1, _HS.custom.desc = "$He is a complete mental blank; to $him, there is only the Master.">> <<set $heroSlaves.push(_HS)>> /*Fixed customdesc syntax, changed hair from blue -BoneyM*/ @@ -587,17 +587,17 @@ <<if $familyTesting == 1>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Camille", _HS.birthName = "Camille", _HS.ID = _i++, _HS.origin = "$He is half of a famous musical duo, along with $his twin sister. They fled to the Free Cities.", _HS.career = "an aspiring pop star", _HS.prestige = 1, _HS.prestigeDesc = "$He is a famed singer; citizens would pay top prices to feel $his mouth around their dicks.", _HS.birthWeek = 16, _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 40, _HS.weight = -10, _HS.muscles = 10, _HS.height = 170, _HS.nationality = "American", _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.skin = "pale", _HS.hLength = 60, _HS.hStyle = "neat, with thick luxurious bangs.", _HS.waist = -55, _HS.voice = 2, _HS.boobs = 300, _HS.boobShape = "perky", _HS.butt = 2, _HS.face = 100, _HS.lips = 25, _HS.earPiercing = 1, _HS.skill.oral = 15, _HS.skill.entertainment = 100, _HS.energy = 50, _HS.attrXX = 80, _HS.fetish = "boobs", _HS.fetishStrength = 70, _HS.behavioralFlaw = "arrogant", _HS.sexualFlaw = "hates men", _HS.custom.desc = "$He has an identical twin sister named Kennerly, from whom $he hates to be parted. They're from the former United States.", _HS.mother = -9999, _HS.father = -9998>> +<<set _HS.slaveName = "Camille", _HS.birthName = "Camille", _HS.ID = _i++, _HS.origin = "$He is half of a famous musical duo, along with $his twin sister. They fled to the Free Cities.", _HS.career = "an aspiring pop star", _HS.prestige = 1, _HS.prestigeDesc = "$He is a famed singer; citizens would pay top prices to feel $his mouth around their dicks.", _HS.birthWeek = 16, _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health.condition = 40, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 40, _HS.weight = -10, _HS.muscles = 10, _HS.height = 170, _HS.nationality = "American", _HS.race = "white", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.skin = "pale", _HS.hLength = 60, _HS.hStyle = "neat, with thick luxurious bangs.", _HS.waist = -55, _HS.voice = 2, _HS.boobs = 300, _HS.boobShape = "perky", _HS.butt = 2, _HS.face = 100, _HS.lips = 25, _HS.earPiercing = 1, _HS.skill.oral = 15, _HS.skill.entertainment = 100, _HS.energy = 50, _HS.attrXX = 80, _HS.fetish = "boobs", _HS.fetishStrength = 70, _HS.behavioralFlaw = "arrogant", _HS.sexualFlaw = "hates men", _HS.custom.desc = "$He has an identical twin sister named Kennerly, from whom $he hates to be parted. They're from the former United States.", _HS.mother = -9999, _HS.father = -9998>> <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Kennerly", _HS.birthName = "Kennerly", _HS.ID = _i++, _HS.origin = "$He is half of a famous musical duo, along with $his twin sister. They fled to the Free Cities.", _HS.career = "an aspiring pop star", _HS.prestige = 1, _HS.prestigeDesc = "$He is a famed singer; citizens would pay top prices to feel $his mouth around their dicks.", _HS.birthWeek = 16, _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 40, _HS.weight = 10, _HS.height = 167, _HS.nationality = "American", _HS.race = "white", _HS.markings = "beauty mark", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.skin = "pale", _HS.hLength = 60, _HS.hStyle = "neat, with thick luxurious bangs.", _HS.waist = -55, _HS.voice = 2, _HS.boobs = 500, _HS.boobShape = "perky", _HS.butt = 2, _HS.face = 100, _HS.lips = 15, _HS.earPiercing = 1, _HS.navelPiercing = 1, _HS.skill.oral = 15, _HS.skill.entertainment = 100, _HS.energy = 50, _HS.attrXX = 80, _HS.fetish = "boobs", _HS.fetishStrength = 70, _HS.behavioralFlaw = "arrogant", _HS.sexualFlaw = "hates men", _HS.custom.desc = "$He has an identical twin sister named Camille, from whom $he hates to be parted. They're from the former United States.", _HS.mother = -9999, _HS.father = -9998>> +<<set _HS.slaveName = "Kennerly", _HS.birthName = "Kennerly", _HS.ID = _i++, _HS.origin = "$He is half of a famous musical duo, along with $his twin sister. They fled to the Free Cities.", _HS.career = "an aspiring pop star", _HS.prestige = 1, _HS.prestigeDesc = "$He is a famed singer; citizens would pay top prices to feel $his mouth around their dicks.", _HS.birthWeek = 16, _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health.condition = 40, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 40, _HS.weight = 10, _HS.height = 167, _HS.nationality = "American", _HS.race = "white", _HS.markings = "beauty mark", _HS.eyeColor = "blue", _HS.hColor = "blonde", _HS.skin = "pale", _HS.hLength = 60, _HS.hStyle = "neat, with thick luxurious bangs.", _HS.waist = -55, _HS.voice = 2, _HS.boobs = 500, _HS.boobShape = "perky", _HS.butt = 2, _HS.face = 100, _HS.lips = 15, _HS.earPiercing = 1, _HS.navelPiercing = 1, _HS.skill.oral = 15, _HS.skill.entertainment = 100, _HS.energy = 50, _HS.attrXX = 80, _HS.fetish = "boobs", _HS.fetishStrength = 70, _HS.behavioralFlaw = "arrogant", _HS.sexualFlaw = "hates men", _HS.custom.desc = "$He has an identical twin sister named Camille, from whom $he hates to be parted. They're from the former United States.", _HS.mother = -9999, _HS.father = -9998>> <<set $heroSlaves.push(_HS)>> <</if>> /* <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "STANDARD", _HS.birthName = "STANDARD", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health = 20, _HS.devotion = 60, _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.anusTat = "bleached", _HS.skill.vaginal = 0, _HS.skill.oral = 0, _HS.skill.anal = 0, _HS.attrXY = 40, _HS.fetishKnown = 1>> +<<set _HS.slaveName = "STANDARD", _HS.birthName = "STANDARD", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 60, _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.skin = "white", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 3, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.anus = 1, _HS.anusTat = "bleached", _HS.skill.vaginal = 0, _HS.skill.oral = 0, _HS.skill.anal = 0, _HS.attrXY = 40, _HS.fetishKnown = 1>> <<set $heroSlaves.push(_HS)>> */ diff --git a/src/npc/databases/dfSlavesDatabase.tw b/src/npc/databases/dfSlavesDatabase.tw index a5e86e94504..4cc18566f18 100644 --- a/src/npc/databases/dfSlavesDatabase.tw +++ b/src/npc/databases/dfSlavesDatabase.tw @@ -2,48 +2,48 @@ <<set _i = 700000>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Cherry", _HS.birthName = "Cherry", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 75, _HS.actualAge = 18, _HS.physicalAge = 18, _HS.visualAge = 18, _HS.ovaryAge = 18, _HS.eyeColor = "light brown", _HS.pubicHColor = "black", _HS.skin = "white", _HS.hColor = "black", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.lipsTat = "Two cherries are tattooed on $his left cheek.", _HS.buttTat = "Two cherries are tattooed on $his right butt cheek.", _HS.clitPiercing = 2, _HS.counter.birthsTotal = 1>> +<<set _HS.slaveName = "Cherry", _HS.birthName = "Cherry", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 75, _HS.actualAge = 18, _HS.physicalAge = 18, _HS.visualAge = 18, _HS.ovaryAge = 18, _HS.eyeColor = "light brown", _HS.pubicHColor = "black", _HS.skin = "white", _HS.hColor = "black", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.lipsTat = "Two cherries are tattooed on $his left cheek.", _HS.buttTat = "Two cherries are tattooed on $his right butt cheek.", _HS.clitPiercing = 2, _HS.counter.birthsTotal = 1>> /*vag implant, vibe nips*/ <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Strawberry", _HS.birthName = "Strawberry", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 30, _HS.physicalAge = 30, _HS.visualAge = 30, _HS.ovaryAge = 30, _HS.health = 20, _HS.devotion = 40, _HS.height = 175, _HS.eyeColor = "dark brown", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.waist = -55, _HS.boobs = 1000, _HS.boobsImplant = 400, _HS.nipplesPiercing = 1, _HS.butt = 5, _HS.buttImplant = 2, _HS.lips = 35, _HS.lipsImplant = 10, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.fetishKnown = 1, _HS.lipsTat = "Strawberries are tattooed on $his left cheek.", _HS.buttTat = "Strawberries are tattooed on $his right buttock.", _HS.clitPiercing = 2, _HS.counter.birthsTotal = 2>> +<<set _HS.slaveName = "Strawberry", _HS.birthName = "Strawberry", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 30, _HS.physicalAge = 30, _HS.visualAge = 30, _HS.ovaryAge = 30, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 40, _HS.height = 175, _HS.eyeColor = "dark brown", _HS.hColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.waist = -55, _HS.boobs = 1000, _HS.boobsImplant = 400, _HS.nipplesPiercing = 1, _HS.butt = 5, _HS.buttImplant = 2, _HS.lips = 35, _HS.lipsImplant = 10, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.fetishKnown = 1, _HS.lipsTat = "Strawberries are tattooed on $his left cheek.", _HS.buttTat = "Strawberries are tattooed on $his right buttock.", _HS.clitPiercing = 2, _HS.counter.birthsTotal = 2>> /*vibe nips, muscles*/ <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Melon", _HS.birthName = "Melon", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 20, _HS.devotion = 50, _HS.height = 175, _HS.eyeColor = "blue", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.hLength = 10, _HS.hStyle = "short", _HS.pubicHStyle = "waxed", _HS.boobs = 1800, _HS.boobsImplant = 800, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.lips = 35, _HS.lipsImplant = 10, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 100, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.lipsTat = "Watermelons are tattooed on $his face.", _HS.buttTat = "Watermelons are tattooed on $his buttocks.", _HS.teeth = "removable", _HS.clitPiercing = 2, _HS.lipsPiercing = 2, _HS.counter.birthsTotal = 1>> +<<set _HS.slaveName = "Melon", _HS.birthName = "Melon", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 50, _HS.height = 175, _HS.eyeColor = "blue", _HS.hColor = "red", _HS.pubicHColor = "red", _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.hLength = 10, _HS.hStyle = "short", _HS.pubicHStyle = "waxed", _HS.boobs = 1800, _HS.boobsImplant = 800, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.lips = 35, _HS.lipsImplant = 10, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 100, _HS.skill.anal = 15, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.lipsTat = "Watermelons are tattooed on $his face.", _HS.buttTat = "Watermelons are tattooed on $his buttocks.", _HS.teeth = "removable", _HS.clitPiercing = 2, _HS.lipsPiercing = 2, _HS.counter.birthsTotal = 1>> /*vibe nips, saliva implant*/ <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Carambola", _HS.birthName = "Carambola", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 25, _HS.physicalAge = 25, _HS.visualAge = 25, _HS.ovaryAge = 25, _HS.health = 20, _HS.devotion = 90, _HS.height = 175, _HS.eyeColor = "light green", _HS.hColor = "dark blonde", _HS.pubicHColor = "dark blonde", _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.hLength = 60, _HS.hStyle = "curly and long, and in pigtails", _HS.pubicHStyle = "waxed", _HS.boobs = 650, _HS.nipplesPiercing = 1, _HS.butt = 8, _HS.buttImplant = 4, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 3, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 100, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.lipsTat = "Carambolas — starfruits — are tattooed on $his face.", _HS.buttTat = "Carambolas — starfruits — are tattooed on $his buttocks.", _HS.clitPiercing = 2, _HS.tonguePiercing = 1, _HS.clothes = "no clothing", _HS.collar = "bell collar", _HS.heels = 1>> +<<set _HS.slaveName = "Carambola", _HS.birthName = "Carambola", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 25, _HS.physicalAge = 25, _HS.visualAge = 25, _HS.ovaryAge = 25, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 90, _HS.height = 175, _HS.eyeColor = "light green", _HS.hColor = "dark blonde", _HS.pubicHColor = "dark blonde", _HS.override_Skin = 1, _HS.skin = "sun tanned", _HS.hLength = 60, _HS.hStyle = "curly and long, and in pigtails", _HS.pubicHStyle = "waxed", _HS.boobs = 650, _HS.nipplesPiercing = 1, _HS.butt = 8, _HS.buttImplant = 4, _HS.lips = 35, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 3, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 100, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.lipsTat = "Carambolas — starfruits — are tattooed on $his face.", _HS.buttTat = "Carambolas — starfruits — are tattooed on $his buttocks.", _HS.clitPiercing = 2, _HS.tonguePiercing = 1, _HS.clothes = "no clothing", _HS.collar = "bell collar", _HS.heels = 1>> /*vibe nips, saliva implant lube*/ <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Banana", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health = 20, _HS.devotion = 65, _HS.race = "latina", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "brown", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.pubicHStyle = "waxed", _HS.boobs = 400, _HS.nipplesPiercing = 1, _HS.butt = 5, _HS.lips = 35, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 100, _HS.skill.anal = 35, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.lipsTat = "Bananas are tattooed on $his face.", _HS.buttTat = "Bananas are tattooed on $his buttocks.", _HS.teeth = "removable", _HS.clitPiercing = 2, _HS.hips = 1, _HS.labia = 2, _HS.clit = 1, _HS.bald = 1, _HS.hStyle = "bald", _HS.pubicHStyle = "bald", _HS.underArmHStyle = "bald", _HS.intelligence = -30>> +<<set _HS.slaveName = "Banana", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 65, _HS.race = "latina", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "brown", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.pubicHStyle = "waxed", _HS.boobs = 400, _HS.nipplesPiercing = 1, _HS.butt = 5, _HS.lips = 35, _HS.vagina = 2, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 100, _HS.skill.anal = 35, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.lipsTat = "Bananas are tattooed on $his face.", _HS.buttTat = "Bananas are tattooed on $his buttocks.", _HS.teeth = "removable", _HS.clitPiercing = 2, _HS.hips = 1, _HS.labia = 2, _HS.clit = 1, _HS.bald = 1, _HS.hStyle = "bald", _HS.pubicHStyle = "bald", _HS.underArmHStyle = "bald", _HS.intelligence = -30>> /*vibe nips, big pusslips+clit*/ <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Green Grape", _HS.birthName = "Green Grape", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health = 20, _HS.devotion = 40, _HS.actualAge = 18, _HS.physicalAge = 18, _HS.visualAge = 18, _HS.ovaryAge = 18, _HS.race = "mixed race", _HS.eyeColor = "green", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.boobs = 650, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.lipsTat = "Green grapes are tattooed on $his face.", _HS.buttTat = "Green grapes are tattooed on $his buttocks.", _HS.mother = -9995, _HS.father = -9994, _HS.clitPiercing = 2, _HS.intelligence = -60>> +<<set _HS.slaveName = "Green Grape", _HS.birthName = "Green Grape", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 40, _HS.actualAge = 18, _HS.physicalAge = 18, _HS.visualAge = 18, _HS.ovaryAge = 18, _HS.race = "mixed race", _HS.eyeColor = "green", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.boobs = 650, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.lipsTat = "Green grapes are tattooed on $his face.", _HS.buttTat = "Green grapes are tattooed on $his buttocks.", _HS.mother = -9995, _HS.father = -9994, _HS.clitPiercing = 2, _HS.intelligence = -60>> /*vibe nips, implant link to sister*/ <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Purple Grape", _HS.birthName = "Purple Grape", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health = 20, _HS.devotion = 40, _HS.race = "mixed race", _HS.eyeColor = "black", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "brown", _HS.hLength = 60, _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.boobs = 650, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.lipsTat = "Purple grapes are tattooed on $his face.", _HS.buttTat = "Purple grapes are tattooed on $his buttocks.", _HS.mother = -9995, _HS.father = -9994, _HS.clitPiercing = 2, _HS.intelligence = -60>> +<<set _HS.slaveName = "Purple Grape", _HS.birthName = "Purple Grape", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 40, _HS.race = "mixed race", _HS.eyeColor = "black", _HS.hColor = "black", _HS.pubicHColor = "black", _HS.skin = "brown", _HS.hLength = 60, _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.boobs = 650, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.vagina = 1, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 1, _HS.ovaries = 1, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.lipsTat = "Purple grapes are tattooed on $his face.", _HS.buttTat = "Purple grapes are tattooed on $his buttocks.", _HS.mother = -9995, _HS.father = -9994, _HS.clitPiercing = 2, _HS.intelligence = -60>> /*vibe nips, implant link to sister <<set $heroSlaves.push(_HS)>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Apple", _HS.birthName = "Apple", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health = 20, _HS.devotion = 75, _HS.muscles = 20, _HS.eyeColor = "dark brown", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hColor = "black", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lips = 55, _HS.lipsTat = "permanent makeup", _HS.vagina = 3, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug", _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.lipsTat = "Cored apples are tattooed on $his face.", _HS.buttTat = "Cored apples are tattooed $his on buttocks.", _HS.intelligence = -60, _HS.clitPiercing = 2>> +<<set _HS.slaveName = "Apple", _HS.birthName = "Apple", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 75, _HS.muscles = 20, _HS.eyeColor = "dark brown", _HS.pubicHColor = "black", _HS.skin = "pale", _HS.hColor = "black", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.boobs = 500, _HS.nipplesPiercing = 1, _HS.butt = 3, _HS.lips = 55, _HS.lipsTat = "permanent makeup", _HS.vagina = 3, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 35, _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug", _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.lipsTat = "Cored apples are tattooed on $his face.", _HS.buttTat = "Cored apples are tattooed $his on buttocks.", _HS.intelligence = -60, _HS.clitPiercing = 2>> /*vibe nips, stupid, sensitive, no masturb implant*/ <<set $heroSlaves.push(_HS)>> <<if $seeExtreme == 1>> <<set _HS = App.Entity.SlaveState.makeSkeleton()>> - <<set _HS.slaveName = "Plum", _HS.birthName = "Plum", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health = 20, _HS.devotion = 75, _HS.muscles = 30, _HS.weight = 20, _HS.eyeColor = "brown", _HS.hColor = "brown", _HS.skin = "pale", _HS.hLength = 20, _HS.hStyle = "short and wavy", _HS.pubicHStyle = "waxed", _HS.boobs = 400, _HS.nipplesPiercing = 1, _HS.butt = 2, _HS.lips = 35, _HS.vagina = 4, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug", _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.lipsTat = "Cored plums are tattooed on $his face.", _HS.buttTat = "Cored plums are tattooed on $his buttocks.", _HS.custom.desc = "$He has massive C-clamp piercings in $his back that allow $him to act as furniture, and a truly enormous vagina.", _HS.clitPiercing = 2, _HS.corsetPiercing = 1, _HS.sexualFlaw = "self hating", _HS.clothes = "no clothing", _HS.vaginalAccessory = "long, huge dildo">> + <<set _HS.slaveName = "Plum", _HS.birthName = "Plum", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health.condition = 20, _HS.health.shortDamage = 0, _HS.health.longDamage = 0, _HS.health.illness = 0, _HS.health.tired = 0, _HS.health.health = 20, _HS.devotion = 75, _HS.muscles = 30, _HS.weight = 20, _HS.eyeColor = "brown", _HS.hColor = "brown", _HS.skin = "pale", _HS.hLength = 20, _HS.hStyle = "short and wavy", _HS.pubicHStyle = "waxed", _HS.boobs = 400, _HS.nipplesPiercing = 1, _HS.butt = 2, _HS.lips = 35, _HS.vagina = 4, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.skill.vaginal = 15, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug", _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.lipsTat = "Cored plums are tattooed on $his face.", _HS.buttTat = "Cored plums are tattooed on $his buttocks.", _HS.custom.desc = "$He has massive C-clamp piercings in $his back that allow $him to act as furniture, and a truly enormous vagina.", _HS.clitPiercing = 2, _HS.corsetPiercing = 1, _HS.sexualFlaw = "self hating", _HS.clothes = "no clothing", _HS.vaginalAccessory = "long, huge dildo">> /*vibe nips, can act as furniture*/ <<set $heroSlaves.push(_HS)>> <</if>> diff --git a/src/npc/descriptions/fBellyFuck.tw b/src/npc/descriptions/fBellyFuck.tw index fa95e1a0564..06617e62d81 100644 --- a/src/npc/descriptions/fBellyFuck.tw +++ b/src/npc/descriptions/fBellyFuck.tw @@ -85,7 +85,7 @@ When you get to $his rear, you slap $his and then spread $his cheeks for easier access to $his <<if canDoVaginal($activeSlave)>>cunt. <<= VCheck.Vaginal()>><<else>>asshole. <<= VCheck.Anal()>><</if>> Heaving upward, you push $him fully onto $his belly, then lean into $him, fucking $him in a unique spin on the wheelbarrow position<<if $PC.dick == 0>> with your strap-on<</if>> and setting $his tightly packed gut to jiggling. $He moans in mixed pain and pleasure as you bring $him over the edge and, by the time you finish with $him and allow $him to return to $his duties, it's clear <<if $activeSlave.belly > $activeSlave.pregAdaptation*2000>> that your recent escapades @@.red;have done lasting damage to $his body.@@ - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<else>> that you've left $him thoroughly exhausted. <</if>> diff --git a/src/npc/descriptions/limbs.js b/src/npc/descriptions/limbs.js index a14dbde9482..960873ce585 100644 --- a/src/npc/descriptions/limbs.js +++ b/src/npc/descriptions/limbs.js @@ -53,7 +53,8 @@ App.Desc.limbChange = function() { if (slave.PLimb < 1 && isProstheticAvailable(slave, "interfaceP1")) { implant = true; r += `<<link "Install basic interface">>` + - `<<set $activeSlave.PLimb = 1, $activeSlave.health -= 10>>` + + `<<set $activeSlave.PLimb = 1>> + <<run healthDamage($activeSlave, 10)>>` + `<<replace "#amputate">><<= App.Desc.limbChange().prosthetic($activeSlave, ${JSON.stringify(oldLimbs)}, "${returnTo}")>><</replace>>` + `<</link>>`; } @@ -63,7 +64,8 @@ App.Desc.limbChange = function() { } implant = true; r += `<<link "Install advanced interface">>` + - `<<set $activeSlave.PLimb = 2, $activeSlave.health -= 10>>` + + `<<set $activeSlave.PLimb = 2>> + <<run healthDamage($activeSlave, 10)>>` + `<<replace "#amputate">><<= App.Desc.limbChange().prosthetic($activeSlave, ${JSON.stringify(oldLimbs)}, "${returnTo}")>><</replace>>` + `<</link>>`; } diff --git a/src/npc/fAbuse.tw b/src/npc/fAbuse.tw index e298e324c1e..cc555d2733d 100644 --- a/src/npc/fAbuse.tw +++ b/src/npc/fAbuse.tw @@ -440,7 +440,7 @@ from your victim. <<if $activeSlave.bellyPreg >= 600000>> The rough fucking was @@.red;very unhealthy@@ for $his massive pregnancy. - <<set $activeSlave.health -= 40>> + <<run healthDamage($activeSlave, 40)>> <</if>> <<if ($activeSlave.ID == $Bodyguard.ID)>> diff --git a/src/npc/fFeelings.tw b/src/npc/fFeelings.tw index 91fe9a79263..4fbe2aec64d 100644 --- a/src/npc/fFeelings.tw +++ b/src/npc/fFeelings.tw @@ -92,8 +92,8 @@ <</if>> <</if>> -<<if $activeSlave.devotion > 50 && $activeSlave.health < -20>> - I feel <<if $activeSlave.health < -50>>really <</if>><<s>>ick, <<Master>>. +<<if $activeSlave.devotion > 50 && $activeSlave.health.condition < -20>> + I feel <<if $activeSlave.health.condition < -50>>really <</if>><<s>>ick, <<Master>>. <<if $activeSlave.trust > 20>> I wi<<sh>> you could give me <<s>>omething to ea<<s>>e the pain. <</if>> @@ -745,7 +745,7 @@ My favorite part of my body i<<s>> <<if ($activeSlave.curatives > 1) || $activeSlave.inflationType == "curative">> <<if $activeSlave.inflationType == "curative">> - <<if ($activeSlave.health < 0)>> + <<if ($activeSlave.health.condition < 0)>> I don't feel good, but I can almo<<s>>t feel the curative<<s>> fi<<x>>ing me, even if the belly i<<s>> a little uncomfortable. Thank you, <<Master>>. <<elseif ($activeSlave.physicalAge > 35)>> I can almo<<s>>t feel the curative<<s>> working. They make me feel like a young, pregnant $girl! Thank you, <<Master>>. @@ -753,7 +753,7 @@ My favorite part of my body i<<s>> I can almo<<s>>t feel the curative<<s>> working. They're pretty incredible, even if the belly i<<s>> a little uncomfortable. Thank you, <<Master>>. <</if>> <<else>> - <<if ($activeSlave.health < 0)>> + <<if ($activeSlave.health.condition < 0)>> I don't feel good, but I can almo<<s>>t feel the curative<<s>> fi<<x>>ing me. Thank you, <<Master>>. <<elseif ($activeSlave.physicalAge > 35)>> I can almo<<s>>t feel the curative<<s>> working. They make me feel <<s>>o young! Thank you, <<Master>>. diff --git a/src/npc/rgASDump.tw b/src/npc/rgASDump.tw index 34235efc79e..fa63877df97 100644 --- a/src/npc/rgASDump.tw +++ b/src/npc/rgASDump.tw @@ -54,7 +54,7 @@ <<set $activeSlave.trust += 10>> <<set $activeSlave.devotion += 10>> <<elseif $PC.career == "gang">> - <<set $activeSlave.health += 5>> + <<run increaseCondition($activeSlave, 5)>> <<if $activeSlave.skill.combat < 1>> <<set $activeSlave.skill.combat += 1>> <</if>> diff --git a/src/npc/startingGirls/startingGirls.tw b/src/npc/startingGirls/startingGirls.tw index ea2b37c1122..1c9c7b20264 100644 --- a/src/npc/startingGirls/startingGirls.tw +++ b/src/npc/startingGirls/startingGirls.tw @@ -568,8 +568,8 @@ __You are customizing this slave:__ <</if>> <br> -<<options $activeSlave.health>> - ''Health:'' +<<options $activeSlave.health.condition>> + ''Condition:'' <<optionlt -20 -40 "Unhealthy">> @@.red;Unhealthy.@@ <<optionlt 20 0 "Healthy">> @@ -1692,7 +1692,7 @@ __You are customizing this slave:__ <br> <<link "Wellspring">> <<StartingGirlsWorkaround>> - <<set $activeSlave.skill.anal = 0, $activeSlave.skill.oral = 0, $activeSlave.skill.vaginal = 0, $activeSlave.skill.whoring = 0, $activeSlave.skill.entertainment = 0, $activeSlave.skill.combat = 0, $activeSlave.actualAge = 18, $activeSlave.visualAge = 18, $activeSlave.physicalAge = 18, $activeSlave.fetishKnown = 0, $activeSlave.attrKnown = 0, $activeSlave.health = 10, $activeSlave.intelligence = -100, $activeSlave.intelligenceImplant = 0, $activeSlave.vagina = 3, $activeSlave.anus = 3, $activeSlave.ovaries = 1, $activeSlave.dick = 5, $activeSlave.balls = 5, $activeSlave.prostate = 1, $activeSlave.lactation = 2, $activeSlave.lactationDuration = 2, $activeSlave.nipples = "huge", $activeSlave.boobs = 10000>> + <<set $activeSlave.skill.anal = 0, $activeSlave.skill.oral = 0, $activeSlave.skill.vaginal = 0, $activeSlave.skill.whoring = 0, $activeSlave.skill.entertainment = 0, $activeSlave.skill.combat = 0, $activeSlave.actualAge = 18, $activeSlave.visualAge = 18, $activeSlave.physicalAge = 18, $activeSlave.fetishKnown = 0, $activeSlave.attrKnown = 0, $activeSlave.health.condition = 10, $activeSlave.intelligence = -100, $activeSlave.intelligenceImplant = 0, $activeSlave.vagina = 3, $activeSlave.anus = 3, $activeSlave.ovaries = 1, $activeSlave.dick = 5, $activeSlave.balls = 5, $activeSlave.prostate = 1, $activeSlave.lactation = 2, $activeSlave.lactationDuration = 2, $activeSlave.nipples = "huge", $activeSlave.boobs = 10000>> <<goto "Starting Girls">> <</link>> //Capable of producing all kinds of useful fluids// diff --git a/src/npc/uploadSlave.tw b/src/npc/uploadSlave.tw index ade6c497c5f..abe57628d63 100644 --- a/src/npc/uploadSlave.tw +++ b/src/npc/uploadSlave.tw @@ -39,7 +39,12 @@ indentureRestrictions: 0, birthWeek: random(0,51), age: $activeSlave.age, ageImplant: $activeSlave.ageImplant, -health: $activeSlave.health, +condition: $activeSlave.health.condition, +shortDamage: $activeSlave.health.shortDamage, +longDamage: $activeSlave.health.longDamage, +illness: $activeSlave.health.illness, +tired: $activeSlave.health.tired, +health: $activeSlave.health.health, minorInjury: 0, trust: $activeSlave.trust, oldTrust: $activeSlave.trust, diff --git a/src/player/js/PlayerState.js b/src/player/js/PlayerState.js index bcd52993894..f7011595335 100644 --- a/src/player/js/PlayerState.js +++ b/src/player/js/PlayerState.js @@ -375,7 +375,30 @@ App.Entity.PlayerState = class PlayerState { * * 50 - 90: Extremely healthy * * 90 - : Unnaturally healthy */ - this.health = 100; + this.health.condition = 0; + /** your short term health damage */ + this.health.shortDamage = 0; + /** your long term health damage */ + this.health.longDamage = 0; + /** + * your current illness status + * * 0 : Not ill + * * 1 : A little under the weather + * * 2 : Minor illness + * * 3 : Ill + * * 4 : serious illness + * * 5 : dangerous illness + */ + this.health.illness = 0; + /** + * your current level of exhaustion + * * 0 - 50 : Perfectly fine + * * 50 - 80 : tired + * * 80 - 100 : exhausted + */ + this.health.tired = 0; + /** your combined health (condition - short - long) */ + this.health.health = 0; /** * you have a minor injury ("black eye", "bruise", "split lip") * @type {number | string} diff --git a/src/pregmod/beastFucked.tw b/src/pregmod/beastFucked.tw index 1794fc423de..1c9603e7918 100644 --- a/src/pregmod/beastFucked.tw +++ b/src/pregmod/beastFucked.tw @@ -289,7 +289,7 @@ before calling in the _animal.species. The _animal.species slowly saunters up to <<if (!_used.vagina && _sexAct == "vaginal") || (!_used.anus && _sexAct == "anal")>> The pain of having such a _animal.dickSize cock take $his <<if _sexAct == "anal">>anal <</if>>virginity has @@.red;damaged $his health.@@ - <<set $activeSlave.health -= 5>> + <<run healthDamage($activeSlave, 5)>> <</if>> <</if>> @@ -378,7 +378,7 @@ before calling in the _animal.species. The _animal.species slowly saunters up to <<case "feline">> The _animal.species begins to move, thrusting faster and faster. The $girl beneath can't stop a groan of pain from escaping $his lips as the barbs on its dick @@.red;rub the inside of $his _orifice raw.@@ After a few minutes of painful coupling, the _animal.species's thrusts finally slow, then stop completely. With a <<if _animal.species != "cat">>deep bellow<<else>>loud //meow//<</if>>, he finally dismounts, gives you a long look, then stalks off. - <<set $activeSlave.health -= 1>> + <<run healthDamage($activeSlave, 1)>> <<switch _sexAct>> <<case "vaginal">> <<if $activeSlave.vagina < 2>> diff --git a/src/pregmod/birthStorm.tw b/src/pregmod/birthStorm.tw index 9c590a244b5..770552a677b 100644 --- a/src/pregmod/birthStorm.tw +++ b/src/pregmod/birthStorm.tw @@ -163,13 +163,13 @@ The remote surgery allows the removal of the pregnancy generator through convent <<if $activeSlave.vagina < 6>> <<set $activeSlave.vagina = 10>> <</if>> - <<set $activeSlave.health -= 80>> + <<run healthDamage($activeSlave, 80)>> <<else>> <<if lastPregRule($activeSlave,$defaultRules)>><<set $activeSlave.preg = -1>><<else>><<set $activeSlave.preg = 0>><</if>> /* I think, it's not logical to break her reproductive system out of repair, if she is only type 1 broodmother. In this case she have to birth only like 5-10 fully grown babies, others get progressively smaller. It's should be even smaller stress to body then for "normal" hyperpregnant with 15-20+ children - they have to birth them all at full size.*/ <<if $activeSlave.vagina < 6>> <<set $activeSlave.vagina = 6>> <</if>> - <<set $activeSlave.health -= 30>> + <<run healthDamage($activeSlave, 30)>> <</if>> <<if _curBabies > 0>> diff --git a/src/pregmod/csec.tw b/src/pregmod/csec.tw index 8e7b06e47f9..5b1d7ffe300 100644 --- a/src/pregmod/csec.tw +++ b/src/pregmod/csec.tw @@ -553,11 +553,12 @@ Since $his <<if $activeSlave.mpreg == 1>>ass<<else>>vagina<</if>> was spared fro <</if>> <<else>> As with all surgery @@.red;$his health has been slightly affected.@@ - <<set $activeSlave.health -= 5>> + <<run healthDamage($activeSlave, 5)>> <</if>> <<if $activeSlave.wombImplant == "restraint">> The uterine support mesh built into $his womb was irreversibly damaged and had to be carefully extracted. Such an invasive surgery carried @@.red;major health complications.@@ - <<set $activeSlave.health -= 30, $activeSlave.wombImplant = "none">> + <<set $activeSlave.wombImplant = "none">> + <<run healthDamage( $activeSlave, 30)>> <</if>> <<if $activeSlave.womb.length == 0>> /* Only if pregnancy is really ended... */ @@ -579,7 +580,7 @@ Since $his <<if $activeSlave.mpreg == 1>>ass<<else>>vagina<</if>> was spared fro Since $he is already in surgery and $his body already stretched, it would be possible to preserve $his pregnant appearance via fillable implant. <<link "Do it.">> <<replace "#bir">> - <<if $PC.skill.medicine >= 100>><<set $activeSlave.health -= 5>><<else>><<set $activeSlave.health -= 10>><</if>> + <<if $PC.skill.medicine >= 100>><<run healthDamage($activeSlave, 5)>><<else>><<run healthDamage($activeSlave, 10)>><</if>> Installation of belly implant is relatively simple procedure. Using the fact that $his body and internal organs have already adapted to pregnancy, it's possible to greatly expand the initial size of implant. $He will still look pregnant post surgery and recovery. <br> <<if ($activeSlave.devotion > 50)>> diff --git a/src/pregmod/eliteSlave.tw b/src/pregmod/eliteSlave.tw index 04204962c9b..b9a0faf1fe8 100644 --- a/src/pregmod/eliteSlave.tw +++ b/src/pregmod/eliteSlave.tw @@ -42,10 +42,10 @@ You check to see if any potential breeding slaves are on auction. <<if $eliteAuc <</if>> <</if>> <<if $arcologies[0].FSPaternalist > 20>> - <<set $activeSlave.health = 100>> + <<set $activeSlave.health.condition = 100, $activeSlave.health.shortDamage = 0, $activeSlave.health.longDamage = 0, $activeSlave.health.illness = 0, $activeSlave.health.tired = 0, $activeSlave.health.health = 100>> <<set $activeSlave.intelligenceImplant = 30>> <<else>> - <<set $activeSlave.health = random(10,60)>> + <<set $activeSlave.health.condition = random(10,60), $activeSlave.health.shortDamage = random(0, 5), $activeSlave.health.longDamage = random(0, 5), $activeSlave.health.illness = 0, $activeSlave.health.tired = random(10, 40), $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.intelligenceImplant = either(0,15,30)>> <</if>> <<if $arcologies[0].FSSlimnessEnthusiast > 20>> diff --git a/src/pregmod/eliteTakeOverResult.tw b/src/pregmod/eliteTakeOverResult.tw index fa416f5bbf9..3e04426c0e5 100644 --- a/src/pregmod/eliteTakeOverResult.tw +++ b/src/pregmod/eliteTakeOverResult.tw @@ -155,7 +155,7 @@ <<set $activeSlave.intelligenceImplant = 30>> <<set $activeSlave.skill.entertainment = 0>> <<set $activeSlave.skill.whoring = 0>> - <<set $activeSlave.health = random(60,75)>> + <<set $activeSlave.health.condition = random(60,75), $activeSlave.health.shortDamage = 0, $activeSlave.health.longDamage = 0, $activeSlave.health.illness = 0, $activeSlave.health.tired = random(0, 20), $activeSlave.health.health = $activeSlave.health.condition>> <<set $activeSlave.canRecruit = 0>> <<run newSlave($activeSlave)>> /* skip New Slave Intro */ <<set $activeSlave.recruiter = 0>> /* override New Slave Intro */ @@ -201,7 +201,7 @@ <<set $activeSlave.intelligenceImplant = 30>> <<set $activeSlave.skill.entertainment = 0>> <<set $activeSlave.skill.whoring = 0>> - <<set $activeSlave.health = random(60,75)>> + <<set $activeSlave.health.condition = random(60,75), $activeSlave.health.shortDamage = 0, $activeSlave.health.longDamage = 0, $activeSlave.health.illness = 0, $activeSlave.health.tired = random(0, 20), $activeSlave.health.health = $activeSlave.health.condition>> <<set $activeSlave.canRecruit = 0>> <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>> <<run newSlave($activeSlave)>> /* skip New Slave Intro */ diff --git a/src/pregmod/fSlaveFeed.tw b/src/pregmod/fSlaveFeed.tw index a49c14148e4..3f728846a71 100644 --- a/src/pregmod/fSlaveFeed.tw +++ b/src/pregmod/fSlaveFeed.tw @@ -763,7 +763,7 @@ Next, you see to $activeSlave.slaveName. <<if $activeSlave.inflation == 3>> <<if canWalk($activeSlave)>>$He gingerly leaves your office, massaging $his over-stuffed belly as $he goes<<else>>$His belly is so taut it barely wobbles at all as $he is helped from your office<</if>>. Being filled so full @@.red;surely had negative effects@@ on $his health. - <<set $activeSlave.health -= 1>> + <<run healthDamage($activeSlave, 1)>> <<elseif $activeSlave.inflation == 2>> <<if canWalk($activeSlave)>>$He gingerly leaves your office, massaging $his stuffed belly as $he goes<<else>>$His belly wobbles heavily as $he is helped from your office<</if>>. <<elseif $activeSlave.inflation == 1>> diff --git a/src/pregmod/fSlaveSlaveDickConsummate.tw b/src/pregmod/fSlaveSlaveDickConsummate.tw index b01264c7816..84d054c0509 100644 --- a/src/pregmod/fSlaveSlaveDickConsummate.tw +++ b/src/pregmod/fSlaveSlaveDickConsummate.tw @@ -394,7 +394,7 @@ You call $slaverapistx.slaveName into the room. <</if>> <</if>> /* closes losing virginity */ _He2 begins playing with $him immediately, slapping, pinching and licking $his boobs while bouncing on the meaty shaft. Occasionally _he2 stops, denying $activeSlave.slaveName release by painfully squeezing and smacking the sensitive shaft. By the end of the session $activeSlave.slaveName's abused, pent-up penis has shot several massive and painful loads into the blissfully satisfied $slaverapistx.slaveName, leaving $him lying on the bed, shaking in horror and @@.red;utter exhaustion,@@ while $slaverapistx.slaveName reaps the opportunity to continue painfully tormenting $him. - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<set $activeSlave.counter.penetrative += 3, $penetrativeTotal += 3, $slaverapistx.counter.vaginal += 3, $vaginalTotal += 3>> <<elseif ($slaverapistx.energy > 95) && ($slaverapistx.devotion > 20)>> diff --git a/src/pregmod/fillUpButt.tw b/src/pregmod/fillUpButt.tw index 8c19c33858e..82d69722e21 100644 --- a/src/pregmod/fillUpButt.tw +++ b/src/pregmod/fillUpButt.tw @@ -373,7 +373,7 @@ before shoving the equipment into $his <<set $activeSlave.inflation += 1>> <<if $activeSlave.inflation == 3>> <<if canWalk($activeSlave)>>$He gingerly leaves your office, massaging $his bloated guts as $he goes<<else>>$His belly wobbles heavily as $he is helped from your office<</if>>. Being filled so full @@.red;surely had negative effects@@ on $his health. - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<elseif $activeSlave.inflation == 2>> <<if canWalk($activeSlave)>>$He gingerly leaves your office, massaging $his full guts as $he goes<<else>>$His belly wobbles heavily as $he is helped from your office<</if>>. <<elseif $activeSlave.inflation == 1>> diff --git a/src/pregmod/fillUpFace.tw b/src/pregmod/fillUpFace.tw index 65837d3d565..61f4953fada 100644 --- a/src/pregmod/fillUpFace.tw +++ b/src/pregmod/fillUpFace.tw @@ -218,7 +218,7 @@ You attach a hose to $dairyName tap with the pipes set to pump $activeSlave.infl <<set $activeSlave.inflation += 1>> <<if $activeSlave.inflation == 3>> <<if canWalk($activeSlave)>>$He gingerly leaves your office, massaging $his over-stuffed belly as $he goes<<else>>$His belly wobbles heavily as $he is helped from your office<</if>>. Being filled so full @@.red;surely had negative effects@@ on $his health. - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<elseif $activeSlave.inflation == 2>> <<if canWalk($activeSlave)>>$He gingerly leaves your office, massaging $his stuffed belly as $he goes<<else>>$His belly wobbles heavily as $he is helped from your office<</if>>. <<elseif $activeSlave.inflation == 1>> diff --git a/src/pregmod/forceFeeding.tw b/src/pregmod/forceFeeding.tw index 6311876a9d0..7c0a9354186 100644 --- a/src/pregmod/forceFeeding.tw +++ b/src/pregmod/forceFeeding.tw @@ -532,7 +532,7 @@ and a little jiggle from $his gut. $His belly wobbles heavily as $he is helped from your office. <</if>> Being filled so full @@.red;surely had negative effects@@ on $his health. - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<elseif $activeSlave.inflation == 2>> <<if canWalk($activeSlave)>> $He gingerly leaves your office, massaging $his stuffed belly as $he goes. diff --git a/src/pregmod/newChildIntro.tw b/src/pregmod/newChildIntro.tw index 1356003f194..f69a4bbbc4f 100644 --- a/src/pregmod/newChildIntro.tw +++ b/src/pregmod/newChildIntro.tw @@ -661,7 +661,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <<set $activeSlave.brand[_brandTarget] = $brandDesign.primary>> <<set $activeSlave.devotion -= 25>> <<set $activeSlave.trust -= 30>> -<<set $activeSlave.health -= 20>> +<<run healthDamage($activeSlave, 20)>> <<replace "#result">> You drag $him to the body modification studio and strap $him down with $his _brandTarget clear and defenseless. $He doesn't understand what's on, becoming even more confused as disinfectant is applied to $his _brandTarget. $He can't see the approaching brand, <<if !canSee($activeSlave)>>of course, <</if>>but eventually $he feels the radiated heat on $his skin and manages to get one inarticulate, wordless noise of terror out before the dreadful sizzling noise and the sweet smell of burning flesh. If $he trusted you at all before, @@.mediumorchid;$he doesn't now,@@ and $he's got the @@.gold;agonizing@@ @@.red;injury@@ to remind $him should $he start to forget. <<if ($arcologies[0].FSSubjugationistRace == $activeSlave.race) && ($arcologies[0].FSSubjugationist > 0)>> @@ -995,9 +995,9 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <</if>> <</if>> -<<if $activeSlave.health < -20>> +<<if $activeSlave.health.condition < -20>> <br><<link "Address $his medical issues">> - <<set $activeSlave.health += 10>> + <<run improveCondition($activeSlave, 10)>> <<set $activeSlave.trust += 4>> <<replace "#result">> Since $he came out of the tank rather unhealthy, you give $him a comprehensive medical exam with the help of the remote surgery. You apply care to @@.green;address@@ some of the most outstanding concerns. After the checkup, $he happily @@.mediumaquamarine;expresses $his thanks@@ for making $him feel better. @@ -1014,7 +1014,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <<if $activeSlave.balls > 0>> <br><<link "Geld $him">> <<set $activeSlave.balls = 0>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<set $activeSlave.trust -= 100>> <<replace "#result">> You escort $him to the remote surgery and strap $him face-down with $his legs spread. $He doesn't understand what's happening, but giggles at the sensations running through $his numb body. $He's so drugged and drowsy with @@.red;surgical recovery@@ that it takes a while for $him to figure out what's happened. When $he does, $his poor mind scarcely processes the @@.gold;horror@@ of what's happened. $He spends the rest of the week dimly trying to find where $his balls went. @@ -1035,7 +1035,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <br><<link "Clip $his Achilles tendons">> <<set $activeSlave.heels = 1>> <<set $activeSlave.devotion += 5>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<set $activeSlave.trust -= 5>> <<replace "#result">> You escort $him to the remote surgery and strap $him face-down with $his legs bare. $He doesn't understand what's coming for a while, but giggles as $his lower legs are carefully cleaned and disinfected. $He can't see the approaching surgical manipulators, <<if !canSee($activeSlave)>>of course, <</if>>but eventually $he feels a tugging at $his lower legs even through the local anesthetic. $He gets one squeal of protest out before the surgery begins to apply healing agents. $He now requires special heels to walk, and will @@.gold;remember your power@@ with every @@.red;painful@@ step $he takes. $He seems @@.hotpink;inappropriately happy@@ about getting to wear pretty shoes when $he can no longer walk without them. @@ -1052,7 +1052,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <<set $activeSlave.pregType = 0>> <<set $activeSlave.ovaries = 0>> <<set $activeSlave.devotion -= 100>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<set $activeSlave.trust -= 100>> <<replace "#result">> You escort $him to the remote surgery and strap $him face-up with $his stomach bare. $He doesn't understand what's coming for a while, even giggling as $his belly is carefully cleaned and disinfected. $He begins to panic at the <<if canSee($activeSlave)>>sight<<elseif canHear($activeSlave)>>sound<<else>>touch<</if>> of the approaching surgical manipulators, screaming out as they cut into $his abdomen. $He squeals in horror as $his womb and ovaries are extracted before $his eyes. $He will never<<if $activeSlave.counter.birthsTotal > 0>> again<</if>> bear children, and will @@.mediumorchid;remember $his status@@ with every fucking $he receives. Your absolute power is rightfully @@.gold;terrifying@@ to $his undeveloped mind. @@ -1287,7 +1287,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <<set $activeSlave.boobs += 4000>> <<set $activeSlave.boobsImplant += 4000>> <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<set $activeSlave.boobShape = "normal">> <<replace "#result">> You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't keep $his hands off $his new ridiculous fake tits. $He's @@.hotpink;deliriously happy@@ that $he has $his own pair of giant breasts hanging from $his stretched chest and @@.mediumaquamarine;hopes@@ you have plans to make them even bigger, even though $he is already struggling to keep upright. As with all surgery @@.red;$his health has been slightly affected.@@ @@ -1300,7 +1300,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <<set $activeSlave.boobsImplant += 7500>> <<set $activeSlave.boobsImplantType = 1>> <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<set $activeSlave.boobShape = "normal">> <<replace "#result">> You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't keep $his hands off $his new ridiculous fake tits. $He's @@.hotpink;deliriously happy@@ that $he has $his own pair of monster breasts straining $his chest and @@.mediumaquamarine;bounces cheerfully@@ when $he <<if canHear($activeSlave)>>hears<<else>>discovers<</if>> they'll keep growing, despite $his near inability to stay upright. As with all surgery @@.red;$his health has been slightly affected.@@ @@ -1313,7 +1313,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <<set $activeSlave.boobs += 1000>> <<set $activeSlave.boobsImplant += 1000>> <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<set $activeSlave.boobShape = "normal">> <<replace "#result">> You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't keep $his hands off $his new fake balloons. $He's @@.hotpink;deliriously happy@@ that $he has $his own pair of big breasts hanging from $his chest and @@.mediumaquamarine;hopes@@ you have plans to make them even bigger. As with all surgery @@.red;$his health has been slightly affected.@@ @@ -1326,7 +1326,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <<set $activeSlave.boobsImplant += 1500>> <<set $activeSlave.boobsImplantType = 1>> <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<set $activeSlave.boobShape = "normal">> <<replace "#result">> You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't keep $his hands off $his new fake balloons. $He's @@.hotpink;deliriously happy@@ that $he has $his own pair of big breasts hanging from $his chest and @@.mediumaquamarine;bounces cheerfully@@ when $he <<if canHear($activeSlave)>>hears<<else>>discovers<</if>> they'll keep growing. As with all surgery @@.red;$his health has been slightly affected.@@ @@ -1355,7 +1355,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <<set $activeSlave.trust += 25>> <<set $activeSlave.bellyImplant = 200000>> <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>> - <<set $activeSlave.health -= 50>> + <<run healthDamage($activeSlave, 50)>> <<run SetBellySize($activeSlave)>> <<replace "#result">> You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes from $his induced coma, $he nearly faints at the <<if canSee($activeSlave)>>sight<<else>>feeling<</if>> of $his immense middle. $He's @@.hotpink;deliriously happy@@ at $his hugeness and @@.mediumaquamarine;squirms happily@@ when $he <<if canHear($activeSlave)>>hears<<else>>discovers<</if>> you can make it bigger, despite the fact that it is nearly as large as $he is and pins $him to the bed $he lies upon. As it was an invasive surgery, @@.red;$his health has been greatly affected.@@ @@ -1367,7 +1367,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <<set $activeSlave.trust += 15>> <<set $activeSlave.bellyImplant = 2000>> <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<run SetBellySize($activeSlave)>> <<replace "#result">> You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't keep $his hands off $his new bulbous middle. $He's @@.hotpink;deliriously happy@@ that $he has $his own round belly and @@.mediumaquamarine;bounces cheerfully@@ when $he <<if canHear($activeSlave)>>hears<<else>>discovers<</if>> you can make it bigger. As with all surgery @@.red;$his health has been slightly affected.@@ @@ -1438,7 +1438,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <<set $activeSlave.hips += 1>> <<set $activeSlave.hipsImplant = 1>> <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>> - <<set $activeSlave.health -= 40>> + <<run healthDamage($activeSlave, 40)>> <<replace "#result">> You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't keep $his hands off $his wide hips, especially since $he can't figure out how to roll over with them. $He's @@.hotpink;deliriously happy@@ that $he is ridiculously wide and @@.mediumaquamarine;wiggles $his door-jammers cheerfully@@ at you whenever $he gets the chance. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ <</replace>> @@ -1450,7 +1450,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <<set $activeSlave.hips += 1>> <<set $activeSlave.hipsImplant = 1>> <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>> - <<set $activeSlave.health -= 40>> + <<run healthDamage($activeSlave, 40)>> <<replace "#result">> You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't keep $his hands off $his wide hips. $He's @@.hotpink;deliriously happy@@ that $he is wider than ever and @@.mediumaquamarine;wiggles $his hips cheerfully@@ at you whenever $he gets the chance. Since the surgery was invasive, @@.red;$his health has been greatly affected.@@ <</replace>> @@ -1494,7 +1494,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <<set $activeSlave.butt += 8>> <<set $activeSlave.buttImplant += 8>> <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<replace "#result">> You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't keep $his hands off $his new ridiculous fake ass, not that $he has much choice, since it has $him pinned to the bed. $He's @@.hotpink;deliriously happy@@ that $he has $his own pair of giant butt cheeks ballooning from $his bottom and @@.mediumaquamarine;hopes@@ you have plans to make them even bigger, even though $he is already struggling to escape from under them. As with all surgery @@.red;$his health has been slightly affected.@@ <</replace>> @@ -1506,7 +1506,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <<set $activeSlave.butt += 2>> <<set $activeSlave.buttImplant += 2>> <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<replace "#result">> You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't keep $his hands off $his new fake bottom. $He's @@.hotpink;deliriously happy@@ that $he has $his own pair of big butt cheeks hanging from $his rear and @@.mediumaquamarine;hopes@@ you have plans to make them even bigger. As with all surgery @@.red;$his health has been slightly affected.@@ <</replace>> @@ -1518,7 +1518,7 @@ You slowly strip down, gauging $his reactions to your show, until you are fully <<set $activeSlave.buttImplant += 3>> <<set $activeSlave.buttImplantType = 1>> <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<replace "#result">> You escort $him to the remote surgery, strap $him in, and put $him under. When $he awakes, $he can't keep $his hands off $his new fake bottom. $He's @@.hotpink;deliriously happy@@ that $he has $his own pair of big butt cheeks hanging from $his rear and @@.mediumaquamarine;bounces them cheerfully@@ when $he <<if canHear($activeSlave)>>hears<<else>>discovers<</if>> they'll keep growing. As with all surgery @@.red;$his health has been slightly affected.@@ <</replace>> diff --git a/src/pregmod/organFarmOptions.tw b/src/pregmod/organFarmOptions.tw index 935efd9b515..a624f2eac41 100644 --- a/src/pregmod/organFarmOptions.tw +++ b/src/pregmod/organFarmOptions.tw @@ -437,7 +437,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<set $activeSlave.dick = 2>> <<set $activeSlave.clit = 0>> <<set $activeSlave.foreskin = $activeSlave.dick>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -487,7 +487,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <</if>> <<set $activeSlave.balls = 2>> <<set $activeSlave.ballType = "human">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -527,7 +527,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<if $activeSlave.prostate < 1>><<set $activeSlave.prostate = 1>><</if>> <<set $activeSlave.balls = 2>> <<set $activeSlave.ballType = "human">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -560,7 +560,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<set $activeSlave.balls = 2>> <<set $activeSlave.ballType = "human">> <<set $activeSlave.scrotum = 2>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -621,7 +621,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <</if>> <<set $activeSlave.balls = 2>> <<set $activeSlave.ballType = "pig">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -661,7 +661,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<if $activeSlave.prostate < 1>><<set $activeSlave.prostate = 1>><</if>> <<set $activeSlave.balls = 2>> <<set $activeSlave.ballType = "pig">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -691,7 +691,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<set $activeSlave.balls = 3>> <<set $activeSlave.scrotum = 3>> <<set $activeSlave.ballType = "pig">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -752,7 +752,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <</if>> <<set $activeSlave.balls = 2>> <<set $activeSlave.ballType = "dog">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -792,7 +792,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<if $activeSlave.prostate < 1>><<set $activeSlave.prostate = 1>><</if>> <<set $activeSlave.balls = 2>> <<set $activeSlave.ballType = "dog">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -822,7 +822,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<set $activeSlave.balls = 2>> <<set $activeSlave.ballType = "dog">> <<set $activeSlave.scrotum = 2>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -884,7 +884,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <</if>> <<set $activeSlave.balls = 2>> <<set $activeSlave.ballType = "horse">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -924,7 +924,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<if $activeSlave.prostate < 1>><<set $activeSlave.prostate = 1>><</if>> <<set $activeSlave.balls = 2>> <<set $activeSlave.ballType = "horse">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -954,7 +954,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<set $activeSlave.balls = 3>> <<set $activeSlave.scrotum = 3>> <<set $activeSlave.ballType = "horse">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -1015,7 +1015,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <</if>> <<set $activeSlave.balls = 2>> <<set $activeSlave.ballType = "cow">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -1055,7 +1055,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<if $activeSlave.prostate < 1>><<set $activeSlave.prostate = 1>><</if>> <<set $activeSlave.balls = 2>> <<set $activeSlave.ballType = "cow">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -1085,7 +1085,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<set $activeSlave.balls = 3>> <<set $activeSlave.scrotum = 3>> <<set $activeSlave.ballType = "cow">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -1146,7 +1146,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi @@.red;Organ not found for deletion!@@ <</if>> <<set $activeSlave.scrotum = $activeSlave.balls>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 10>> <</if>> @@ -1191,7 +1191,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<else>> <<set $activeSlave.foreskin = 1>> <</if>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 10>> <</if>> @@ -1241,7 +1241,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <</if>> <<set $activeSlave.eggType = "human">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<set $activeSlave.pregData = clone(setup.pregData.human)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> @@ -1294,7 +1294,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<set $activeSlave.ovaries = 1>> <<set $activeSlave.eggType = "human">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<set $activeSlave.pregData = clone(setup.pregData.human)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> @@ -1356,7 +1356,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <</if>> <<set $activeSlave.eggType = "pig">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<set $activeSlave.pregData = clone(setup.pregData.pig)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> @@ -1409,7 +1409,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<set $activeSlave.ovaries = 1>> <<set $activeSlave.eggType = "pig">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<set $activeSlave.pregData = clone(setup.pregData.pig)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> @@ -1471,7 +1471,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <</if>> <<set $activeSlave.eggType = "dog">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<set $activeSlave.pregData = clone(setup.pregData.canineM)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> @@ -1524,7 +1524,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<set $activeSlave.ovaries = 1>> <<set $activeSlave.eggType = "dog">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<set $activeSlave.pregData = clone(setup.pregData.canineM)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> @@ -1586,7 +1586,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <</if>> <<set $activeSlave.eggType = "horse">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<set $activeSlave.pregData = clone(setup.pregData.equine)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> @@ -1639,7 +1639,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<set $activeSlave.ovaries = 1>> <<set $activeSlave.eggType = "horse">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<set $activeSlave.pregData = clone(setup.pregData.equine)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> @@ -1701,7 +1701,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <</if>> <<set $activeSlave.eggType = "cow">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -1753,7 +1753,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<set $activeSlave.ovaries = 1>> <<set $activeSlave.eggType = "cow">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -1820,7 +1820,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<if $activeSlave.preg < 0>> <<set $activeSlave.preg = 0>> <</if>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -1873,7 +1873,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<set $activeSlave.preg = 0>> <</if>> <<set $activeSlave.eggType = "human">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -1924,7 +1924,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi @@.red;Organ not found for deletion!@@ <</if>> <<set $activeSlave.prostate = 1>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -1964,7 +1964,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <</if>> <<set $activeSlave.eyes = 1>> <<set $activeSlave.eyeColor = $activeSlave.origEye>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -1992,7 +1992,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<set $activeSlave.eyes = 1>> <<set $activeSlave.eyeColor = $activeSlave.origEye>> /* no way to salvage original eye color */ - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -2035,7 +2035,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<if $activeSlave.hears == -1>> <<set $activeSlave.hears = 0>> <</if>> - <<set $activeSlave.health -= 15>> + <<run healthDamage($activeSlave, 15)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -2051,7 +2051,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi @@.red;Organ not found for deletion!@@ <</if>> <<set $activeSlave.earShape = "normal">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -2070,7 +2070,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi @@.red;Organ not found for deletion!@@ <</if>> <<set $activeSlave.earT = "normal", $activeSlave.earTColor = "hairless">> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -2086,7 +2086,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi @@.red;Organ not found for deletion!@@ <</if>> <<set $activeSlave.earT = "normal", $activeSlave.earTColor = "hairless">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -2129,7 +2129,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi @@.red;Organ not found for deletion!@@ <</if>> <<set $activeSlave.hears = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -2155,7 +2155,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi @@.red;Organ not found for deletion!@@ <</if>> <<set $activeSlave.hears = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -2207,7 +2207,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<set $activeSlave.mpreg = 1>> <<set $activeSlave.eggType = "human">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 40>> + <<run healthDamage($activeSlave, 40)>> <<set $activeSlave.pregData = clone(setup.pregData.human)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> @@ -2271,7 +2271,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<set $activeSlave.mpreg = 1>> <<set $activeSlave.eggType = "pig">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 40>> + <<run healthDamage($activeSlave, 40)>> <<set $activeSlave.pregData = clone(setup.pregData.pig)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> @@ -2335,7 +2335,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<set $activeSlave.mpreg = 1>> <<set $activeSlave.eggType = "dog">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 40>> + <<run healthDamage($activeSlave, 40)>> <<set $activeSlave.pregData = clone(setup.pregData.canineM)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> @@ -2399,7 +2399,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<set $activeSlave.mpreg = 1>> <<set $activeSlave.eggType = "horse">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 40>> + <<run healthDamage($activeSlave, 40)>> <<set $activeSlave.pregData = clone(setup.pregData.equine)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> @@ -2463,7 +2463,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<set $activeSlave.mpreg = 1>> <<set $activeSlave.eggType = "cow">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 40>> + <<run healthDamage($activeSlave, 40)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -2519,7 +2519,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<else>> <<set $activeSlave.voice = 2>> <</if>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -2551,7 +2551,7 @@ The fabricator is ready to grow an organ for $him. Extract tissue to begin growi <<else>> <<set $activeSlave.voice = 2>> <</if>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 10>> <</if>> diff --git a/src/pregmod/pRaped.tw b/src/pregmod/pRaped.tw index cbe88c18657..ad68a8ad2ae 100644 --- a/src/pregmod/pRaped.tw +++ b/src/pregmod/pRaped.tw @@ -30,7 +30,7 @@ <<set $activeSlave.origin = "You sentenced $him to enslavement for the attempted rape of a free " + _womanP + ".">> <<set $activeSlave.devotion = -100>> <<set $activeSlave.trust = -100>> -<<set $activeSlave.health = random(-50,-20)>> +<<set $activeSlave.health.condition = random(-40,-20), $activeSlave.health.shortDamage = random(10, 20), $activeSlave.health.longDamage = random(0, 10), $activeSlave.health.illness = 1, $activeSlave.health.tired = random(30, 80), $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.anus = 0>> <<set $activeSlave.behavioralFlaw = "arrogant">> <<set $activeSlave.sexualFlaw = "judgemental">> @@ -251,7 +251,7 @@ While returning from a meeting with a prospective investor, an unfortunate wrong <</replace>> <</link>> <br><<link "Sentence $him to a day in the stocks, then enslave $him">> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<set $activeSlave.behavioralFlaw = "odd">> <<set $activeSlave.sexualFlaw = "hates penetration">> <<set $activeSlave.anus = 2>> @@ -312,7 +312,7 @@ While returning from a meeting with a prospective investor, an unfortunate wrong <</if>> <<if $seeExtreme > 0>> <br><<link "Punitively amputate $his limbs, and then enslave $him">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<run removeLimbs($activeSlave, "all")>> <<set $activeSlave.behavioralFlaw = "odd">> <<run cashX(forceNeg($contractCost), "slaveTransfer", $activeSlave)>> @@ -322,7 +322,7 @@ While returning from a meeting with a prospective investor, an unfortunate wrong <</link>> <<if $activeSlave.balls > 0>> <br><<link "Enslave the criminal and geld $him">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<set $activeSlave.balls = 0>> <<set $activeSlave.devotion -= 25>> <<set $activeSlave.trust -= 25>> diff --git a/src/pregmod/reTheSirenStrikesBack.tw b/src/pregmod/reTheSirenStrikesBack.tw index d16db5f6ccd..3999125edf2 100644 --- a/src/pregmod/reTheSirenStrikesBack.tw +++ b/src/pregmod/reTheSirenStrikesBack.tw @@ -18,7 +18,12 @@ <<set $activeSlave.career = "a producer">> <<set $activeSlave.devotion = random(-70,30)>> <<set $activeSlave.trust = random(-100,-70)>> -<<set $activeSlave.health = random(-20,20)>> +<<set $activeSlave.health.condition = random(-20,20)>> +<<set $activeSlave.health.shortDamage = random(0, 5)>> +<<set $activeSlave.health.longDamage = random(0, 5)>> +<<set $activeSlave.health.illness = 0>> +<<set $activeSlave.health.tired = random(0,20)>> +<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.anus = 0>> <<if $activeSlave.vagina > -1>> <<set $activeSlave.vagina = 1>> @@ -89,7 +94,8 @@ Several weeks have passed since you gained the musical prodigy and you couldn't <<if !isAmputee(_ssb)>> <br><<link "Enslave _him2 and throw _him2 to _ssb.slaveName">> <<set $activeSlave.clothes = "no clothing">> - <<set $activeSlave.recruiter = 0, $activeSlave.health -= 20>> + <<set $activeSlave.recruiter = 0>> + <<run healthDamage($activeSlave, 20)>> <<replace "#artFrame">> /* 000-250-006 */ <<if $seeImages == 1>> @@ -138,7 +144,8 @@ Several weeks have passed since you gained the musical prodigy and you couldn't <</link>> <br><<link "Enslave _him2 and punish _him2 for their actions">> <<set $activeSlave.clothes = "no clothing">> - <<set $activeSlave.recruiter = 0, $activeSlave.health -= 20>> + <<set $activeSlave.recruiter = 0>> + <<run healthDamage($activeSlave, 20)>> <<replace "#artFrame">> /* 000-250-006 */ <<if $seeImages == 1>> diff --git a/src/pregmod/saAgent.tw b/src/pregmod/saAgent.tw index 72efa7765d9..d01c6aa1ade 100644 --- a/src/pregmod/saAgent.tw +++ b/src/pregmod/saAgent.tw @@ -250,7 +250,7 @@ <<if setup.fakeBellies.includes($slaves[$i].bellyAccessory)>> <<set $slaves[$i].bellyAccessory = "none">> <</if>> - <<if ($slaves[$i].preg > $slaves[$i].pregData.normalBirth/2) && ($slaves[$i].lactation == 0) && $slaves[$i].health >= -20 && $slaves[$i].weight > -30>> + <<if ($slaves[$i].preg > $slaves[$i].pregData.normalBirth/2) && ($slaves[$i].lactation == 0) && $slaves[$i].health.condition >= -20 && $slaves[$i].weight > -30>> <<if $slaves[$i].preg > random($slaves[$i].pregData.normalBirth/2.22, $slaves[$i].pregData.normalBirth/1.33)>> <<set $slaves[$i].lactation = 1>> <</if>> diff --git a/src/pregmod/saClothes.tw b/src/pregmod/saClothes.tw index f374e9b09c7..be2f874c96b 100644 --- a/src/pregmod/saClothes.tw +++ b/src/pregmod/saClothes.tw @@ -22,7 +22,8 @@ <</if>> <<case "a penitent nuns habit">> The mortification of the flesh $he endures from wearing $his sackcloth habit slowly and painfully @@.hotpink;purifies $his mind@@ of any but devoted, @@.gold;fearful@@ thoughts. It's also @@.red;unhealthy.@@ - <<set $slaves[$i].devotion += 2, $slaves[$i].trust -= 2, $slaves[$i].health -= 3>> + <<set $slaves[$i].devotion += 2, $slaves[$i].trust -= 2>> + <<run healthDamage($slaves[$i], 3)>> <<if ($slaves[$i].fetish == "masochist") && ($slaves[$i].fetishKnown == 0)>> $His chafed skin makes sex an agonizing prospect. $He seems to get off on the pain; $he's a @@.lightcoral;natural masochist.@@ <<set $slaves[$i].fetishKnown = 1>> @@ -431,7 +432,7 @@ <<set $slaves[$i].bellyAccessory = "none">> <<elseif $slaves[$i].bellyPreg >= 1500>> The tight corseting has @@.orange;caused $him to miscarry,@@ which @@.red;damages $his health.@@ - <<set $slaves[$i].health -= 20>> + <<run healthDamage($slaves[$i], 20)>> <<if lastPregRule($slaves[$i],$defaultRules)>><<set $slaves[$i].preg = -1>><<else>><<set $slaves[$i].preg = 0>><</if>> <<set $slaves[$i].pregType = 0, WombFlush($slaves[$i]), $slaves[$i].pregKnown = 0>> <<if $slaves[$i].geneticQuirks.fertility+$slaves[$i].geneticQuirks.hyperFertility >= 4>> @@ -475,7 +476,7 @@ <</if>> <<if $slaves[$i].waist >= -40>> It's so tight that it's @@.red;unhealthy.@@ - <<set $slaves[$i].health -= 5>> + <<run healthDamage($slaves[$i], 5)>> <<if $slaves[$i].fuckdoll == 0 && $slaves[$i].fetish != "mindbroken">> <<if $slaves[$i].devotion < -20>> $He @@.hotpink;barely has breath to think,@@ though $he has enough to @@.gold;fear.@@ @@ -616,7 +617,7 @@ <<set $slaves[$i].trust -= 1>> <</if>> They're so high they're a bit @@.red;unhealthy@@ for $his legs. - <<set $slaves[$i].health -= 2>> + <<run healthDamage($slaves[$i], 2)>> <</if>> <<else>> $His P-Limb <<if hasBothLegs($slaves[$i])>>legs work<<else>>leg works<</if>> just as well in extreme heels as <<if hasBothLegs($slaves[$i])>>they do<<else>>it does<</if>> out of them. @@ -801,7 +802,7 @@ <<if ($slaves[$i].preg > $slaves[$i].pregData.normalBirth/10) && $slaves[$i].pregKnown == 1>> <<if (random(1,100) > 50)>> The dildo penetrating $his womb @@.orange;caused $him to miscarry,@@ which @@.red;damages $his health.@@ - <<set $slaves[$i].health -= 20>> + <<run healthDamage($slaves[$i], 20)>> <<if lastPregRule($slaves[$i],$defaultRules)>><<set $slaves[$i].preg = -1>><<else>><<set $slaves[$i].preg = 0>><</if>> <<set $slaves[$i].pregType = 0, WombFlush($slaves[$i]), $slaves[$i].pregKnown = 0>> <<if $slaves[$i].geneticQuirks.fertility+$slaves[$i].geneticQuirks.hyperFertility >= 4>> diff --git a/src/pregmod/saInflation.tw b/src/pregmod/saInflation.tw index 625c096a02b..1dc759837ba 100644 --- a/src/pregmod/saInflation.tw +++ b/src/pregmod/saInflation.tw @@ -28,7 +28,7 @@ <<case "water">> <<if $slaves[$i].inflation == 3>> $He makes sure to fill $his rear with nearly two gallons of water, leaving $him looking ready to burst, whenever $he leaks or needs to release $his load. $He keeps $himself @@.red;painfully full@@ for you. - <<set $slaves[$i].health -= 10>> + <<run healthDamage($slaves[$i], 10)>> <<elseif $slaves[$i].inflation == 2>> $He makes sure to fill $his rear with nearly four liters of water, leaving $him looking pregnant, whenever $he leaks or needs to release $his load. $He is full enough to be distended but not enough to grow taut. <<elseif $slaves[$i].inflation == 1>> @@ -38,7 +38,7 @@ <<case "urine">> <<if $slaves[$i].inflation == 3>> $He makes sure to fill $his rear with nearly two gallons of urine, leaving $him looking ready to burst, whenever $he leaks or needs to release $his load. $He keeps $himself @@.red;painfully full@@ for you. - <<set $slaves[$i].health -= 10>> + <<run healthDamage($slaves[$i], 10)>> <<elseif $slaves[$i].inflation == 2>> $He makes sure to fill $his rear with nearly four liters of urine, leaving $him looking pregnant, whenever $he leaks or needs to release $his load. $He is full enough to be distended but not enough to grow taut. <<elseif $slaves[$i].inflation == 1>> @@ -48,7 +48,7 @@ <<case "aphrodisiac">> <<if $slaves[$i].inflation == 3>> $He makes sure to fill $his rear with nearly two gallons of an aphrodisiac solution, leaving $him looking ready to burst, whenever $he leaks or $his body absorbs too much. $He keeps $himself @@.red;painfully full@@ for you, though $he barely notices it over $his horniness. While having $his body packed full of aphrodisiacs doesn't make $him additionally submissive, it does amplify the effects of them. $His aphrodisiac bursting belly - <<set $slaves[$i].health -= 10>> + <<run healthDamage($slaves[$i], 10)>> <<elseif $slaves[$i].inflation == 2>> $He makes sure to fill $his rear with nearly four liters of an aphrodisiac solution, leaving $him looking pregnant, whenever $he leaks or $his body absorbs too much. $He is full enough to be distended but not enough to grow taut. While having $his body bloated with aphrodisiacs doesn't make $him additionally submissive, it does amplify the effects of them. $His overfilled aphrodisiac belly <<elseif $slaves[$i].inflation == 1>> @@ -66,7 +66,7 @@ <</if>> <<if ($arcologies[0].FSBodyPuristLaw == 0) && ($healthyDrugsUpgrade == 0)>> Such a high dosage held for so long @@.red;isn't healthy.@@ - <<set $slaves[$i].health -= 5>> + <<run healthDamage($slaves[$i], 5)>> <</if>> <<set $slaves[$i].chem += 2*$slaves[$i].inflation>> <<if ($slaves[$i].addict > 0)>> @@ -86,53 +86,54 @@ $He makes sure to fill $his rear with nearly two gallons of a curative solution, leaving $him looking ready to burst, whenever $he leaks or $his body absorbs too much. $He keeps $himself full for you; the curatives in $his gut keeping $him healthy despite the pain. <<if (($slaves[$i].assignment == "rest") || ($slaves[$i].assignment == "rest in the spa")) && ($slaves[$i].fetish != "mindbroken")>> The curative enema $he's on synergize with rest, keeping $him asleep most of the time. This is an @@.green;extremely effective health treatment,@@ though being filled to $his limit doesn't hasten $his recovery at all; it's just perverted. - <<set $slaves[$i].health += 4>> - <<elseif ($slaves[$i].health < -20)>> + <<run improveCondition($slaves[$i], 4)>> + <<elseif ($slaves[$i].health.condition < -20)>> @@.green;$His poor health rapidly improves@@ under the curative enema, though being filled to $his limit doesn't hasten $his recovery at all; it's just perverted. - <<set $slaves[$i].health += 2>> + <<run improveCondition($slaves[$i], 2)>> <<else>> @@.green;$His health improves@@ under the curative enema, though being filled to $his limit doesn't hasten $his recovery at all; it's just perverted. <</if>> - <<set $slaves[$i].health += 1>> + <<run improveCondition($slaves[$i], 1)>> <<elseif $slaves[$i].inflation == 2>> $He makes sure to fill $his rear with nearly four liters of a curative solution, leaving $him looking pregnant, whenever $he leaks or $his body absorbs too much. $He is full enough to be distended but not enough to grow taut. <<if (($slaves[$i].assignment == "rest") || ($slaves[$i].assignment == "rest in the spa")) && ($slaves[$i].fetish != "mindbroken")>> The curative enema $he's on synergize with rest, keeping $him asleep most of the time. This is an @@.green;extremely effective health treatment,@@ though being overfilled doesn't hasten $his recovery at all; it's just perverted. - <<set $slaves[$i].health += 4>> - <<elseif ($slaves[$i].health < -20)>> + <<run improveCondition($slaves[$i], 4)>> + <<elseif ($slaves[$i].health.condition < -20)>> @@.green;$His poor health rapidly improves@@ under the curative enema, though being overfilled doesn't hasten $his recovery at all; it's just perverted. - <<set $slaves[$i].health += 2>> + <<run improveCondition($slaves[$i], 2)>> <<else>> @@.green;$His health improves@@ under curative enema, though being overfilled doesn't hasten $his recovery at all; it's just perverted. <</if>> - <<set $slaves[$i].health += 6>> + <<run improveCondition($slaves[$i], 6)>> <<elseif $slaves[$i].inflation == 1>> $He makes sure to fill $his rear with nearly two liters of a curative solution, leaving $his belly noticeably distended, whenever $he leaks or $his body absorbs too much. $He is full enough to be swollen but not enough to visibly jiggle. <<if (($slaves[$i].assignment == "rest") || ($slaves[$i].assignment == "rest in the spa")) && ($slaves[$i].fetish != "mindbroken")>> The curative enema $he's on synergize with rest, keeping $him asleep most of the time. This is an @@.green;extremely effective health treatment.@@ - <<set $slaves[$i].health += 4>> - <<elseif ($slaves[$i].health < -20)>> + <<run improveCondition($slaves[$i], 4)>> + <<elseif ($slaves[$i].health.condition < -20)>> @@.green;$His poor health rapidly improves@@ under the curative enema. - <<set $slaves[$i].health += 2>> + <<run improveCondition($slaves[$i], 2)>> <<else>> @@.green;$His health improves@@ under curative enema. <</if>> - <<set $slaves[$i].health += 6>> + <<run improveCondition($slaves[$i], 6)>> <</if>> <<if $slaves[$i].fuckdoll == 0 && $slaves[$i].fetish != "mindbroken">> $He @@.mediumaquamarine;trusts you more@@ for giving $his access to expensive modern medicine, even if it is really embarrassing to be seen with that belly. <<set $slaves[$i].trust += 1>> <</if>> - <<if $slaves[$i].health >= 90>> + <<if $slaves[$i].health.condition >= 90>> $He is as healthy as $he can be. @@.yellow;$His curative enema regimen has been ended.@@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <</if>> - <<set $slaves[$i].chem += 2, $slaves[$i].health += $curativeUpgrade*6>> + <<set $slaves[$i].chem += 2>> + <<run improveCondition($slaves[$i], $curativeUpgrade*6)>> <<case "tightener">> <<if $slaves[$i].inflation == 3>> $He makes sure to fill $his rear with nearly two gallons of tightening solution, leaving $him looking ready to burst, whenever $he leaks or $his body absorbs too much. $He keeps $himself @@.red;painfully full@@ for you. - <<set $slaves[$i].health -= 10>> + <<run healthDamage($slaves[$i], 10)>> <<if $slaves[$i].geneMods.rapidCellGrowth != 1>> <<if $slaves[$i].anus > 1>> The solution slowly tightens $his anus while inside $his bowels. Being filled to $his limit with the solution does not make it tighten any better or faster; it's just perverted. @@ -225,7 +226,8 @@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.mediumorchid;reluctantly@@ sucks from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $him looking ready to burst. $He struggles to keep $his fatty, liquid meal down, @@.gold;fearing@@ punishment otherwise. - <<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>> + <<run healthDamage($slaves[$i], 10)>> + <<set $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he @@.mediumorchid;reluctantly@@ sucks from the dairy tap until $his stomach is bloated with nearly four liters of milk, leaving $him looking pregnant. $He struggles to keep $his fatty, liquid meal down, @@.gold;fearing@@ punishment otherwise. <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 5>> @@ -239,7 +241,8 @@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.mediumorchid;reluctantly@@ fills $his rectum from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $him looking ready to burst. $He struggles to keep the fattening load inside $him, @@.gold;fearing@@ punishment otherwise. - <<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>> + <<run healthDamage($slaves[$i], 10)>> + <<set $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he @@.mediumorchid;reluctantly@@ fills $his rectum from the dairy tap until $his stomach is bloated with nearly four liters of milk, leaving $him looking pregnant. $He struggles to keep the fattening load inside $him, @@.gold;fearing@@ punishment otherwise. <<set $slaves[$i].devotion -= 5,$slaves[$i].trust -= 5>> @@ -254,7 +257,8 @@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.mediumorchid;reluctantly@@ suckles from $slaves[_saf].slaveName until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $him looking ready to burst. $He struggles to keep $his fatty, liquid meal down, @@.gold;fearing@@ punishment otherwise. - <<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>> + <<run healthDamage($slaves[$i], 10)>> + <<set $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>> <<set $slaves[_saf].lactationDuration = 2, $slaves[_saf].boobs -= $slaves[_saf].boobsMilk, $slaves[_saf].boobsMilk = 0>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he @@.mediumorchid;reluctantly@@ suckles from $slaves[_saf].slaveName until $his stomach is bloated with nearly four liters of milk, leaving $him looking pregnant. $He struggles to keep $his fatty, liquid meal down, @@.gold;fearing@@ punishment otherwise. @@ -273,7 +277,8 @@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.hotpink;eagerly@@ sucks from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $him looking ready to burst. $He rubs $his full belly @@.mediumaquamarine;contently,@@ anticipating $his next gorging. - <<set $slaves[$i].health -= 10, $slaves[$i].devotion += 5, $slaves[$i].trust += 5>> + <<run healthDamage($slaves[$i], 10)>> + <<set $slaves[$i].devotion += 5, $slaves[$i].trust += 5>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he @@.hotpink;eagerly@@ sucks from the dairy tap until $his stomach is bloated with nearly four liters of milk, leaving $him looking pregnant. $He rubs $his taut belly @@.mediumaquamarine;contently,@@ anticipating $his next feeding. <<set $slaves[$i].devotion += 4, $slaves[$i].trust += 4>> @@ -287,7 +292,8 @@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.hotpink;happily@@ fills $his rectum from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $him looking ready to burst. $He rubs $his taut belly @@.mediumaquamarine;contently,@@ though $he wishes $he could have swallowed it instead. - <<set $slaves[$i].health -= 10, $slaves[$i].devotion += 4, $slaves[$i].trust += 4>> + <<run healthDamage($slaves[$i], 10)>> + <<set $slaves[$i].devotion += 4, $slaves[$i].trust += 4>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he @@.hotpink;happily@@ fills $his rectum from the dairy tap until $his stomach is bloated with nearly four liters of milk, leaving $him looking pregnant. $He rubs $his full belly @@.mediumaquamarine;contently,@@ though $he wishes $he could have swallowed it instead. <<set $slaves[$i].devotion += 3, $slaves[$i].trust += 3>> @@ -302,7 +308,8 @@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.hotpink;eagerly@@ sucks from $slaves[_saf].slaveName until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of milk, leaving $him looking ready to burst. $He rubs $his full belly @@.mediumaquamarine;contently,@@ anticipating $his next gorging. - <<set $slaves[$i].health -= 10, $slaves[$i].devotion += 5, $slaves[$i].trust += 5>> + <<run healthDamage($slaves[$i], 10)>> + <<set $slaves[$i].devotion += 5, $slaves[$i].trust += 5>> <<set $slaves[_saf].lactationDuration = 2, $slaves[_saf].boobs -= $slaves[_saf].boobsMilk, $slaves[_saf].boobsMilk = 0>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he @@.hotpink;eagerly@@ sucks from $slaves[_saf].slaveName until $his stomach is bloated with nearly four liters of milk, leaving $him looking pregnant. $He rubs $his taut belly @@.mediumaquamarine;contently,@@ anticipating $his next feeding. @@ -321,7 +328,7 @@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he makes sure to keep $himself filled with nearly two gallons of milk, leaving $him looking ready to burst. $He keeps $himself @@.red;painfully full@@ for you. - <<set $slaves[$i].health -= 10>> + <<run healthDamage($slaves[$i], 10)>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he makes sure to keep $himself filled with nearly four liters of milk, leaving $him looking pregnant. $He is full enough to be distended but not enough to grow taut. <<elseif $slaves[$i].inflation == 1>> @@ -333,7 +340,7 @@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he makes sure to fill $his rear with nearly two gallons of milk, leaving $him looking ready to burst, whenever $he leaks or needs to release $his load. $He keeps $himself @@.red;painfully full@@ for you. - <<set $slaves[$i].health -= 10>> + <<run healthDamage($slaves[$i], 10)>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he makes sure to fill $his rear with nearly four liters of milk, leaving $him looking pregnant, whenever $he leaks or needs to release $his load. $He is full enough to be distended but not enough to grow taut. <<elseif $slaves[$i].inflation == 1>> @@ -346,7 +353,7 @@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he makes sure keep suckling from $slaves[_saf].slaveName until $he is filled with nearly two gallons of milk, leaving $him looking ready to give birth. $He keeps $himself @@.red;painfully full@@ for you. - <<set $slaves[$i].health -= 10>> + <<run healthDamage($slaves[$i], 10)>> <<set $slaves[_saf].lactationDuration = 2, $slaves[_saf].boobs -= $slaves[_saf].boobsMilk, $slaves[_saf].boobsMilk = 0>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he makes sure keep suckling from $slaves[_saf].slaveName until $he is filled with nearly four liters of milk, leaving $him looking pregnant. $He is full enough to be distended but not enough to grow taut. @@ -366,7 +373,8 @@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.mediumorchid;reluctantly@@ sucks from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $him looking ready to burst. $He struggles to keep $his liquid meal down, @@.gold;fearing@@ punishment otherwise. - <<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>> + <<run healthDamage($slaves[$i], 10)>> + <<set $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he @@.mediumorchid;reluctantly@@ sucks from the dairy tap until $his stomach is bloated with nearly four liters of cum, leaving $him looking pregnant. $He struggles to keep $his liquid meal down, @@.gold;fearing@@ punishment otherwise. <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 5>> @@ -380,7 +388,8 @@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.mediumorchid;reluctantly@@ fills $his rectum from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $him looking ready to burst. $He struggles to keep the massive cumshot inside $him, @@.gold;fearing@@ punishment otherwise. - <<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>> + <<run healthDamage($slaves[$i], 10)>> + <<set $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he @@.mediumorchid;reluctantly@@ fills $his rectum from the dairy tap until $his stomach is bloated with nearly four liters of cum, leaving $him looking pregnant. $He struggles to keep the huge cumshot inside $him, @@.gold;fearing@@ punishment otherwise. <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 5>> @@ -395,7 +404,8 @@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].cumSource = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.mediumorchid;reluctantly@@ sucks $slaves[_saf].slaveName's <<if $slaves[_saf].dick > 0>>cock<<else>>cum hole<</if>> until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $him looking ready to burst. $He struggles to keep $his liquid meal down, @@.gold;fearing@@ punishment otherwise. - <<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>> + <<run healthDamage($slaves[$i], 10)>> + <<set $slaves[$i].devotion -= 8, $slaves[$i].trust -= 8>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he @@.mediumorchid;reluctantly@@ sucks $slaves[_saf].slaveName's <<if $slaves[_saf].dick > 0>>cock<<else>>cum hole<</if>> until $his stomach is bloated with nearly four liters of cum, leaving $him looking pregnant. $He struggles to keep $his liquid meal down, @@.gold;fearing@@ punishment otherwise. <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 5>> @@ -411,7 +421,8 @@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.hotpink;eagerly@@ sucks from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $him looking ready to burst. $He rubs $his full belly @@.mediumaquamarine;contently,@@ anticipating $his next gorging. - <<set $slaves[$i].health -= 10, $slaves[$i].devotion += 5, $slaves[$i].trust += 5>> + <<run healthDamage($slaves[$i], 10)>> + <<set $slaves[$i].devotion += 5, $slaves[$i].trust += 5>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he @@.hotpink;eagerly@@ sucks from the dairy tap until $his stomach is bloated with nearly four liters of cum, leaving $him looking pregnant. $He rubs $his taut belly @@.mediumaquamarine;contently,@@ anticipating $his next feeding. <<set $slaves[$i].devotion += 4, $slaves[$i].trust += 4>> @@ -425,7 +436,8 @@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.hotpink;happily@@ fills $his rectum from the dairy tap until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $him looking ready to burst. $He rubs $his taut belly @@.mediumaquamarine;contently,@@ though $he wishes $he could have swallowed it instead. - <<set $slaves[$i].health -= 10, $slaves[$i].devotion += 4, $slaves[$i].trust += 4>> + <<run healthDamage($slaves[$i], 10)>> + <<set $slaves[$i].devotion += 4, $slaves[$i].trust += 4>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he @@.hotpink;happily@@ fills $his rectum from the dairy tap until $his stomach is bloated with nearly four liters of cum, leaving $him looking pregnant. $He rubs $his full belly @@.mediumaquamarine;contently,@@ though $he wishes $he could have swallowed it instead. <<set $slaves[$i].devotion += 3, $slaves[$i].trust += 3>> @@ -440,7 +452,8 @@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].cumSource = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he @@.hotpink;eagerly@@ sucks $slaves[_saf].slaveName's <<if $slaves[_saf].dick > 0>>cock<<else>>cum hole<</if>> until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of cum, leaving $him looking ready to burst. $He rubs $his full belly @@.mediumaquamarine;contently,@@ anticipating $his next gorging. - <<set $slaves[$i].health -= 10, $slaves[$i].devotion += 5, $slaves[$i].trust += 5>> + <<run healthDamage($slaves[$i], 10)>> + <<set $slaves[$i].devotion += 5, $slaves[$i].trust += 5>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he @@.hotpink;eagerly@@ sucks $slaves[_saf].slaveName's <<if $slaves[_saf].dick > 0>>cock<<else>>cum hole<</if>> until $his stomach is bloated with nearly four liters of cum, leaving $him looking pregnant. $He rubs $his taut belly @@.mediumaquamarine;contently,@@ anticipating $his next feeding. <<set $slaves[$i].devotion += 4, $slaves[$i].trust += 4>> @@ -456,7 +469,7 @@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he makes sure to keep $himself filled with nearly two gallons of cum, leaving $him looking ready to burst. $He keeps $himself @@.red;painfully full@@ for you. - <<set $slaves[$i].health -= 10>> + <<run healthDamage($slaves[$i], 10)>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he makes sure to keep $himself filled with nearly four liters of cum, leaving $him looking pregnant. $He is full enough to be distended but not enough to grow taut. <<elseif $slaves[$i].inflation == 1>> @@ -468,7 +481,7 @@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he makes sure to fill $his rear with nearly two gallons of cum, leaving $him looking ready to burst, whenever $he leaks or needs to release $his load. $He keeps $himself @@.red;painfully full@@ for you. - <<set $slaves[$i].health -= 10>> + <<run healthDamage($slaves[$i], 10)>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he makes sure to fill $his rear with nearly four liters of cum, leaving $him looking pregnant, whenever $he leaks or needs to release $his load. $He is full enough to be distended but not enough to grow taut. <<elseif $slaves[$i].inflation == 1>> @@ -481,7 +494,7 @@ <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].cumSource = 0, SetBellySize($slaves[$i])>> <<elseif $slaves[$i].inflation == 3>> Throughout the week, $he makes sure keep sucking $slaves[_saf].slaveName's <<if $slaves[_saf].dick > 0>>cock<<else>>cum hole<</if>> until $he is filled with nearly two gallons of cum, leaving $him looking ready to burst. $He keeps $himself @@.red;painfully full@@ for you. - <<set $slaves[$i].health -= 10>> + <<run healthDamage($slaves[$i], 10)>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he makes sure keep sucking $slaves[_saf].slaveName's <<if $slaves[_saf].dick > 0>>cock<<else>>cum hole<</if>> until $he is filled with nearly four liters of cum, leaving $him looking pregnant. $He is full enough to be distended but not enough to grow taut. <<elseif $slaves[$i].inflation == 1>> @@ -494,7 +507,8 @@ <<if $slaves[$i].behavioralFlaw == "anorexic">> <<if $slaves[$i].inflation == 3>> Throughout the week, $he focuses $his @@.mediumorchid;loathing@@ on you as $he forces down servings of slave food until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of the paste, leaving $him looking ready to burst. $He struggles to keep $his meal down, @@.gold;fearing@@ punishment otherwise. - <<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 16, $slaves[$i].trust -= 16>> + <<run healthDamage($slaves[$i], 10)>> + <<set $slaves[$i].devotion -= 16, $slaves[$i].trust -= 16>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he focuses $his @@.mediumorchid;loathing@@ on you as $he forces down servings of slave food until $his stomach is bloated with nearly four liters of the paste, giving $him quite the food baby. $He struggles to keep $his meal down, @@.gold;fearing@@ punishment otherwise. <<set $slaves[$i].devotion -= 10, $slaves[$i].trust -= 10>> @@ -505,7 +519,8 @@ <<elseif $slaves[$i].behavioralFlaw == "gluttonous">> <<if $slaves[$i].inflation == 3>> Throughout the week, $he @@.hotpink;eagerly@@ stuffs $his face with servings of slave food until $his stomach is @@.red;painfully bloated@@ with nearly two gallons of the paste, leaving $him looking ready to burst. $He rubs $his stuffed belly @@.mediumaquamarine;contently,@@ anticipating $his next gorging. - <<set $slaves[$i].health -= 10, $slaves[$i].devotion += 10, $slaves[$i].trust += 10>> + <<run healthDamage($slaves[$i], 10)>> + <<set $slaves[$i].devotion += 10, $slaves[$i].trust += 10>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he @@.hotpink;eagerly@@ stuffs $his face with servings of slave food until $his stomach is bloated with nearly four liters of the paste, giving $him quite the food baby. $He rubs $his taut belly @@.mediumaquamarine;contently,@@ anticipating $his next meal. <<set $slaves[$i].devotion += 7, $slaves[$i].trust += 7>> @@ -516,7 +531,7 @@ <<else>> <<if $slaves[$i].inflation == 3>> Throughout the week, $he makes sure to binge eat until $his gut is stuffed with nearly two gallons of slave food, leaving $him looking ready to burst. $He keeps $himself @@.red;painfully full@@ for you. - <<set $slaves[$i].health -= 10>> + <<run healthDamage($slaves[$i], 10)>> <<elseif $slaves[$i].inflation == 2>> Throughout the week, $he makes sure to binge eat until $his gut is filled with nearly four liters of slave food, giving $him quite the food baby. $He is full enough to be distended but not enough to grow taut. <<elseif $slaves[$i].inflation == 1>> diff --git a/src/pregmod/seFCTVremote.tw b/src/pregmod/seFCTVremote.tw index acd3ab1e959..e71824b1fa6 100644 --- a/src/pregmod/seFCTVremote.tw +++ b/src/pregmod/seFCTVremote.tw @@ -15,7 +15,8 @@ <<set $activeSlave = GenerateNewSlave()>> <<set $activeSlave.devotion = 0>> <<set $activeSlave.trust = 0>> -<<set $activeSlave.health = random(60,80)>> +<<set $activeSlave.health.condition = random(60,80)>> +<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.muscles = 60>> <<if $activeSlave.weight > 130>> <<set $activeSlave.weight -= 100>> @@ -95,6 +96,7 @@ $He unboxes the new remote and turns $his back to you, eagerly demonstrating how <<set _customer.devotion = 0>> <<set _customer.trust = 0>> <<set _customer.health = random(60,80)>> + <<set _customer.health.health = _customer.health.condition - _customer.health.shortDamage - _customer.health.longDamage>> <<set _customer.muscles = 60>> <<if _customer.weight > 130>> <<set _customer.weight -= 100>> @@ -207,7 +209,7 @@ $He unboxes the new remote and turns $his back to you, eagerly demonstrating how <</link>> <br><<link "Sentence $him to a day in a wall with a TV, then enslave $him">> <<set $analTotal++>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<set $activeSlave.behavioralFlaw = "odd">> <<set $activeSlave.sexualFlaw = "hates penetration">> <<set $activeSlave.anus = 2>> diff --git a/src/pregmod/seFCTVshows.tw b/src/pregmod/seFCTVshows.tw index 6c657bd2357..b3237155291 100644 --- a/src/pregmod/seFCTVshows.tw +++ b/src/pregmod/seFCTVshows.tw @@ -108,7 +108,8 @@ <<set _kirk.actualAge = 44>> <<set _kirk.devotion = 0>> <<set _kirk.trust = 0>> - <<set _kirk.health = random(60,80)>> + <<set _kirk.health.condition = random(60,80)>> + <<set _kirk.health.health = _kirk.health.condition - _kirk.health.shortDamage - _kirk.health.longDamage>> <<set _kirk.muscles = 60>> <<set _kirk.weight = 30>> <<set _kirk.waist = 90>> @@ -127,7 +128,8 @@ <<set _jules = BaseSlave()>> <<set _jules.devotion = 0>> <<set _jules.trust = 0>> - <<set _jules.health = random(60,80)>> + <<set _jules.health.condition = random(60,80)>> + <<set _jules.health.health = _jules.health.condition - _jules.health.shortDamage - _jules.health.longDamage>> <<set _jules.weight = 30>> <<set _jules.waist = 30>> <<set _jules.boobs = 700>> @@ -168,7 +170,8 @@ <<set _model = BaseSlave()>> <<set _model.devotion = -90>> <<set _model.trust = 0>> - <<set _model.health = random(60,80)>> + <<set _model.health.condition = random(60,80)>> + <<set _model.health.health = _model.health.condition - _model.health.shortDamage - _model.health.longDamage>> <<set _model.face = -20>> <<set _model.hLength = 50>> <<set _model.hStyle = "messy">> @@ -243,7 +246,8 @@ <<set _model = BaseSlave()>> <<set _model.devotion = 0>> <<set _model.trust = 0>> - <<set _model.health = random(60,80)>> + <<set _model.health.condition = random(60,80)>> + <<set _model.health.health = _model.health.condition - _model.health.shortDamage - _model.health.longDamage>> <<set _model.muscles = 60>> <<set _model.boobs = 700>> <<set _model.butt = 3>> @@ -347,7 +351,8 @@ <<set $activeSlave.devotion = random(60,90)>> <<set $activeSlave.trust = random(50,80)>> <<set $activeSlave.chem = 0>> - <<set $activeSlave.health = 75>> + <<set $activeSlave.health.condition = 75>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.origin = "You purchased $him from FCTV's Home Slave Shopping stream channel.">> <<set $activeSlave.career = "a slave">> <<set $activeSlave.custom.tattoo = "$He has a small stylized 'A' tattooed on the nape of $his neck marking $him as the product of the famous breeding program at Arcturus Arcology.">> @@ -399,7 +404,8 @@ <<set $activeSlave.behavioralQuirk = "none">> <<set $activeSlave.sexualQuirk = either("caring", "caring", "romantic")>> <<set $activeSlave.chem = 0>> - <<set $activeSlave.health = 75>> + <<set $activeSlave.health.condition = 75>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.intelligence = random(-15,80)>> <<set $activeSlave.intelligenceImplant = 15>> <<set $activeSlave.origin = "You purchased $him from FCTV's Home Slave Shopping stream channel.">> @@ -445,7 +451,8 @@ <<set $activeSlave.devotion = random(60,90)>> <<set $activeSlave.trust = random(50,80)>> <<set $activeSlave.chem = 0>> - <<set $activeSlave.health = 75>> + <<set $activeSlave.health.condition = 75>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.counter.birthsTotal = random(2,3)>> <<set $activeSlave.career = setup.youngCareers.random()>> <<set $activeSlave.origin = "You purchased $him from FCTV's Home Slave Shopping stream channel.">> @@ -488,7 +495,8 @@ <<set $activeSlave.devotion = random(60,90)>> <<set $activeSlave.trust = random(50,80)>> <<set $activeSlave.chem = 0>> - <<set $activeSlave.health = 75>> + <<set $activeSlave.health.condition = 75>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.counter.birthsTotal = random(1,3)>> <<set $activeSlave.career = setup.youngCareers.random()>> <<set $activeSlave.origin = "You purchased $him from FCTV's Home Slave Shopping stream channel.">> @@ -573,7 +581,8 @@ <<set $activeSlave.devotion = random(60,90)>> <<set $activeSlave.trust = random(50,80)>> <<set $activeSlave.chem = 0>> - <<set $activeSlave.health = 75>> + <<set $activeSlave.health.condition = 75>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.career = setup.youngCareers.random()>> <<set $activeSlave.origin = "You purchased $him from FCTV's Home Slave Shopping stream channel.">> <</if>> @@ -807,7 +816,8 @@ <<set _model = BaseSlave()>> <<set _model.devotion = 0>> <<set _model.trust = 0>> - <<set _model.health = 70>> + <<set _model.health.condition = 70>> + <<set _model.health.health = _model.health.condition - _model.health.shortDamage - _model.health.longDamage>> <<set _model.hLength = 50>> <<set _model.hStyle = "neat">> <<set _model.hColor = "brown">> @@ -890,7 +900,8 @@ <<set _model2 = BaseSlave()>> <<set _model2.devotion = 0>> <<set _model2.trust = 0>> - <<set _model2.health = 70>> + <<set _model2.health.condition = 70>> + <<set _model2.health.health = _model2.health.condition - _model2.health.shortDamage - _model2.health.longDamage>> <<set _model2.hLength = 50>> <<set _model2.hStyle = "luxurious">> <<set _model2.hColor = "blonde">> @@ -934,7 +945,8 @@ <<if $seeImages == 1>> <<set _model.devotion = 100>> <<set _model.trust = 100>> - <<set _model.health = 70>> + <<set _model.health.condition = 70>> + <<set _model.health.health = _model.health.condition - _model.health.shortDamage - _model.health.longDamage>> <<set _model.hLength = 50>> <<set _model.hStyle = "luxurious">> <<set _model.hColor = "blonde">> @@ -1008,7 +1020,8 @@ <<set _mindy = BaseSlave()>> <<set _mindy.devotion = 100>> <<set _mindy.trust = 100>> - <<set _mindy.health = 70>> + <<set _mindy.health.condition = 70>> + <<set _mindy.health.health = _mindy.health.condition - _mindy.health.shortDamage - _mindy.health.longDamage>> <<set _mindy.hLength = 50>> <<set _mindy.hStyle = "luxurious">> <<set _mindy.hColor = "strawberry blonde">> @@ -1568,7 +1581,8 @@ <</if>> <<set _hostess.devotion = 45>> <<set _hostess.trust = 55>> - <<set _hostess.health = random(60,80)>> + <<set _hostess.health.condition = random(60,80)>> + <<set _hostess.health.health = _hostess.health.condition - _hostess.health.shortDamage - _hostess.health.longDamage>> <<set _hostess.muscles = 60>> <<if _hostess.weight > 130>> <<set _hostess.weight -= 100>> @@ -1599,7 +1613,8 @@ <</if>> <<set _scientist.devotion = 0>> <<set _scientist.trust = 0>> - <<set _scientist.health = random(60,80)>> + <<set _scientist.health.condition = random(60,80)>> + <<set _scientist.health.health = _scientist.health.condition - _scientist.health.shortDamage - _scientist.health.longDamage>> <<set _scientist.muscles = 60>> <<if _scientist.weight > 130>> <<set _scientist.weight -= 100>> @@ -1632,7 +1647,8 @@ <</if>> <<set _nun.devotion = random(45,60)>> <<set _nun.trust = random(-10)>> - <<set _nun.health = random(60,80)>> + <<set _nun.health.condition = random(60,80)>> + <<set _nun.health.health = _nun.health.condition - _nun.health.shortDamage - _nun.health.longDamage>> <<set _nun.muscles = 30>> <<if _nun.weight > 130>> <<set _nun.weight -= 100>> diff --git a/src/pregmod/widgets/bodySwapReaction.tw b/src/pregmod/widgets/bodySwapReaction.tw index 736ccefd8bb..91f7253ac01 100644 --- a/src/pregmod/widgets/bodySwapReaction.tw +++ b/src/pregmod/widgets/bodySwapReaction.tw @@ -15,9 +15,9 @@ <</if>> <<set _end = 0>> -<<if $args[0].health >= $args[1].health+10>> +<<if $args[0].health.health >= $args[1].health.health+10>> The monitors indicate that $his @@.green;health has improved@@ from $his previous body. Whatever else happens, $he will likely appreciate this. -<<elseif $args[0].health <= $args[1].health-10>> +<<elseif $args[0].health.health <= $args[1].health.health-10>> The monitors indicate that $his @@.red;health has degraded@@ from $his previous body. Whatever else happens, this will likely upset $him. <</if>> Now you only have to wait for $him to wake up. diff --git a/src/pregmod/widgets/bodyswapWidgets.tw b/src/pregmod/widgets/bodyswapWidgets.tw index 21fbb7f7aa6..a7e015cb539 100644 --- a/src/pregmod/widgets/bodyswapWidgets.tw +++ b/src/pregmod/widgets/bodyswapWidgets.tw @@ -10,7 +10,12 @@ <<set $args[0].physicalAge = $args[1].physicalAge>> <<set $args[0].visualAge = $args[1].visualAge>> <<set $args[0].ageImplant = $args[1].ageImplant>> -<<set $args[0].health = $args[1].health>> +<<set $args[0].health.condition = $args[1].health.condition>> +<<set $args[0].health.shortDamage = $args[1].health.shortDamage>> +<<set $args[0].health.longDamage = $args[1].health.longDamage>> +<<set $args[0].health.illness = $args[1].health.illness>> +<<set $args[0].health.tired = $args[1].health.tired>> +<<set $args[0].health.health = $args[1].health.health>> <<set $args[0].weight = $args[1].weight>> <<set $args[0].muscles = $args[1].muscles>> <<set $args[0].height = $args[1].height>> diff --git a/src/pregmod/widgets/pregmodWidgets.tw b/src/pregmod/widgets/pregmodWidgets.tw index 6cbedb4234d..bc5cd25346a 100644 --- a/src/pregmod/widgets/pregmodWidgets.tw +++ b/src/pregmod/widgets/pregmodWidgets.tw @@ -812,10 +812,10 @@ <</if>> <<if $arcologies[0].FSPaternalist > 20>> <<set $activeStandard.intelligenceImplant = 15>> - <<set $activeStandard.health = 60>> + <<set $activeStandard.health.condition = 60>> <<elseif $arcologies[0].FSDegradationist > 20>> <<set $activeStandard.intelligenceImplant = 15>> - <<set $activeStandard.health = 0>> + <<set $activeStandard.health.condition = 0>> <</if>> <<if $arcologies[0].FSSlaveProfessionalism > 20>> <<set $activeStandard.intelligenceImplant = 30>> @@ -1052,7 +1052,7 @@ $activeSlave.slaveName is up for review: <br>$He @@.red;FAILED@@ educational trials. <<set _passing-->> <</if>> - <<if $activeSlave.health >= $activeStandard.health>> + <<if $activeSlave.health.condition >= $activeStandard.health.condition>> <br>$He @@.lime;PASSED@@ health examinations. <<else>> <br>$He @@.red;FAILED@@ health examinations. diff --git a/src/pregmod/widgets/seBirthWidgets.tw b/src/pregmod/widgets/seBirthWidgets.tw index 550234fbcb9..3339ea4048a 100644 --- a/src/pregmod/widgets/seBirthWidgets.tw +++ b/src/pregmod/widgets/seBirthWidgets.tw @@ -37,8 +37,8 @@ <<elseif $slaves[$i].muscles < -5>> <<set $birthDamage += 2>> <</if>> -<<if $slaves[$i].health < -20>> - <<set $birthDamage += (4-($slaves[$i].health/10))>> +<<if $slaves[$i].health.condition < -20>> + <<set $birthDamage += (4-($slaves[$i].health.condition/10))>> <</if>> <<if $slaves[$i].physicalAge < 6>> <<set $birthDamage += 5>> @@ -157,7 +157,7 @@ <<elseif $slaves[$i].pregAdaptation >= 100>> <<set $suddenBirth += 1>> <</if>> -<<if $slaves[$i].health < 0>> +<<if $slaves[$i].health.condition < 0>> <<set $suddenBirth += 2>> <</if>> <<if $slaves[$i].heels == 1>> @@ -457,7 +457,8 @@ This descriptions can be expanded with more outcomes later. But it's not practic <</if>> <<if $csec == 1 && $slaves[$i].wombImplant == "restraint">> The uterine support mesh built into $his womb was irreversibly damaged and had to be carefully extracted. Such an invasive surgery carried @@.red;major health complications.@@ - <<set $slaves[$i].health -= 30, $slaves[$i].wombImplant = "none">> + <<set $slaves[$i].wombImplant = "none">> + <<run healthDamage($slaves[$i], 30)>> <</if>> <</if>> @@ -499,10 +500,12 @@ This descriptions can be expanded with more outcomes later. But it's not practic <br><br> <<if ($slaves[$i].fetish == "masochist")>> Since $he was a virgin, giving birth was a @@.red;terribly painful@@ experience.<<if $slaves[$i].fetishKnown == 0>> $He seems to have orgasmed several times during the experience and appears to @@.lightcoral;really like pain@@.<<set $slaves[$i].fetishKnown = 1>><<else>> However, due to $his masochistic streak, $he @@.hotpink;greatly enjoyed@@ said experience<</if>>. - <<set $slaves[$i].health -= 10, $slaves[$i].devotion += 2>> + <<run healthDamage($slaves[$i], 10)>> + <<set $slaves[$i].devotion += 2>> <<else>> Since $he was a virgin, giving birth was a @@.red;terribly painful@@ experience. $He @@.mediumorchid;despises@@ you for taking $his virginity in such a @@.gold;horrifying@@ way. - <<set $slaves[$i].health -= 10, $slaves[$i].devotion -= 25, $slaves[$i].trust -= 25>> + <<run healthDamage($slaves[$i], 10)>> + <<set $slaves[$i].devotion -= 25, $slaves[$i].trust -= 25>> <</if>> <</if>> <</if>> @@ -523,7 +526,8 @@ This descriptions can be expanded with more outcomes later. But it's not practic It only hurt for an instant and a second later was promptly forgotten. To $him, $his hips were always this wide. <</if>> $His pelvis has been forced into a @@.lime;more feminine@@ shape.<<if $slaves[$i].hipsImplant > 0>> This has also undone any surgical narrowing $he has undergone.<</if>> - <<set $slaves[$i].health -= 20, $slaves[$i].hips = 0, $slaves[$i].hipsImplant = 0>> + <<run healthDamage($slaves[$i], 20)>> + <<set $slaves[$i].hips = 0, $slaves[$i].hipsImplant = 0>> <</if>> <br><br> <<if $slaves[$i].mpreg == 1>> @@ -621,7 +625,7 @@ This descriptions can be expanded with more outcomes later. But it's not practic <br> $His thin body was @@.red;ill-suited $his childbirth.@@ <</if>> - <<if $slaves[$i].health < -20>> + <<if $slaves[$i].health.condition < -20>> <br> $His poor health made laboring @@.red;exhausting.@@ <<set _compoundCondition = 1>> @@ -721,10 +725,10 @@ All in all, childbirth was @@.green;no problem@@ for $him. <</if>> <<if $birthDamage > 0>> - <<set $slaves[$i].health -= Math.round(($birthDamage/2)*10)>> + <<run healthDamage($slaves[$i], Math.round(($birthDamage/2)*10))>> <<if $birthDamage > 5 && _compoundCondition == 1 && _curBabies > 1>> Or it would have been, were $he only having one. With each additional child that needed to be birthed, @@.red;the damage to $his health was compounded.@@ - <<set $slaves[$i].health -= _curBabies>> + <<run healthDamage($slaves[$i], _curBabies>> <</if>> <</if>> <</if>> @@ -1206,7 +1210,7 @@ All in all, <<widget "seBirthCritical">> <<set _curBabies = $slaves[$i].curBabies.length>> -<<if $slaves[$i].health <= -100>> +<<if $slaves[$i].health.health <= -100>> <br><br> While attempting to recover, $slaves[$i].slaveName @@.red;passes away@@ from complications. $His body was fatally damaged during childbirth. <<if _curBabies > 0>> /* this needs to include ALL children born fom this batch, incubated ones included. */ diff --git a/src/societies/aztec/slaveSacrifice.tw b/src/societies/aztec/slaveSacrifice.tw index eee39c12bea..b4ce9a4a5a3 100644 --- a/src/societies/aztec/slaveSacrifice.tw +++ b/src/societies/aztec/slaveSacrifice.tw @@ -253,7 +253,7 @@ <<set $activeSlave.boobsMilk += 10*$activeSlave.lactationAdaptation>> <<set $sactiveSlave.boobs += $activeSlave.boobsMilk>> <</if>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> The penance put $his body through great stress @@.red;which impacted $his health.@@ <<set $currentRule.addict = 5>> <<set $activeSlave.clothes = "no clothing">> diff --git a/src/uncategorized/arcadeReport.tw b/src/uncategorized/arcadeReport.tw index a5968a8e7a1..836b42de366 100644 --- a/src/uncategorized/arcadeReport.tw +++ b/src/uncategorized/arcadeReport.tw @@ -30,16 +30,16 @@ /* Perform facility based rule changes */ <<set $slaves[$i].clothes = "no clothing">> /* Health */ - <<if $arcadeUpgradeHealth == 2 && $slaves[$i].health < 40>> - <<set $slaves[$i].health += 2>> - <<elseif $slaves[$i].health > 20>> - <<set $slaves[$i].health -= 5>> - <<elseif $arcadeUpgradeHealth == 1 && $slaves[$i].health < -30>> - <<set $slaves[$i].health += 2>> + <<if $arcadeUpgradeHealth == 2 && $slaves[$i].health.condition < 40>> + <<run improveCondition($slaves[$i], 2)>> + <<elseif $slaves[$i].health.condition > 20>> + <<run healthDamage($slaves[$i], 5)>> + <<elseif $arcadeUpgradeHealth == 1 && $slaves[$i].health.condition < -30>> + <<run improveCondition($slaves[$i], 2)>> <<elseif $slaves[$i].health > -50>> - <<set $slaves[$i].health -= 3>> + <<run healthDamage($slaves[$i], 3)>> <<elseif $slaves[$i].health > -90>> - <<set $slaves[$i].health -= 1>> + <<run healthDamage($slaves[$i], 1)>> <</if>> /* Curatives */ <<if $arcadeUpgradeHealth == 2>> @@ -85,16 +85,16 @@ <</if>> <<if ($arcadeUpgradeCollectors > 0)>> <<if ($slaves[$i].vasectomy == 1)>> - <<set $slaves[$i].vasectomy = 0, $slaves[$i].health -= 10, _vasectomiesUndone++>> - <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i])>> + <<set $slaves[$i].vasectomy = 0, _vasectomiesUndone++>> + <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i]), healthDamage($slaves[$i], 10)>> <<elseif ($slaves[$i].lactation < 2)>> - <<set $slaves[$i].lactation = 2, $slaves[$i].health -= 10, _boobsImplanted++>> + <<set $slaves[$i].lactation = 2, _boobsImplanted++>> <<set _bSlave = $slaves[$i]>> - <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i])>> + <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i]), healthDamage($slaves[$i], 10)>> <<elseif $slaves[$i].prostate == 1>> - <<set $slaves[$i].prostate = 2, $slaves[$i].health -= 10, _prostatesImplanted++>> + <<set $slaves[$i].prostate = 2, _prostatesImplanted++>> <<set _pSlave = $slaves[$i]>> - <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i])>> + <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i]), healthDamage($slaves[$i], 10)>> <<elseif ($slaves[$i].lactation > 0) || ($slaves[$i].balls > 0)>> <<set _oldCash = $cash>> <<if $showEWD != 0>> diff --git a/src/uncategorized/bodyModification.tw b/src/uncategorized/bodyModification.tw index 28d1f3163a7..e9452b08219 100644 --- a/src/uncategorized/bodyModification.tw +++ b/src/uncategorized/bodyModification.tw @@ -17,7 +17,7 @@ <</if>> <<if $brandApplied>> The smell of burnt flesh hangs in the air. Being branded @@.red;has hurt $his health a little.@@ - <<set $activeSlave.health -= 10>> + <<run healthDamage($slaves[$i], 10)>> <<unset $brandApplied>> <</if>> <<if $scarApplied>> @@ -37,7 +37,7 @@ The best way to apply scarring to the entire body is with a good old fashioned whip. $His body is a mess of crisscrossed lines<<if hasAnyNaturalLimbs($activeSlave)>>, and $his <<if getLimbCount($activeSlave, 1) > 1>>limbs twisted so violently in their restraints that they too have<<else>>only limb twists so violently in its restraints that it too has<</if>> become scarred<</if>>. <</switch>> No matter how you chose to apply it, scarring so much of $his body has @@.red; hurt $his health.@@ - <<set $activeSlave.health -= 20>> + <<run healthDamage($slaves[$i], 20)>> <<else>> <<if $activeSlave.scar[$scarTarget.local][$scarDesign.local] > 0>> This is not the first time $he was scarred like this. @@ -76,7 +76,7 @@ <</switch>> No matter how you chose to apply it, being scarred @@.red; hurt $his health a little.@@ - <<set $activeSlave.health -= 10>> + <<run healthDamage($slaves[$i], 10)>> <</if>> Afterwards you seal the wounds with a white medical spray. Infection is no risk to $activeSlave.slaveName thanks to your curatives, but in order to form obvious scar tissue you had to keep air out and delay normal healing as long as possible. <<unset $scarApplied>> diff --git a/src/uncategorized/brothelReport.tw b/src/uncategorized/brothelReport.tw index 700c624fe2c..2d3cc559c19 100644 --- a/src/uncategorized/brothelReport.tw +++ b/src/uncategorized/brothelReport.tw @@ -14,14 +14,14 @@ <<if ($Madam != 0)>> <<set _FLs = $slaveIndices[$Madam.ID]>> - <<if ($slaves[_FLs].health < -80)>> - <<set $slaves[_FLs].health += 20>> - <<elseif $slaves[_FLs].health < -40>> - <<set $slaves[_FLs].health += 15>> - <<elseif $slaves[_FLs].health < 0>> - <<set $slaves[_FLs].health += 10>> - <<elseif $slaves[_FLs].health < 90>> - <<set $slaves[_FLs].health += 7>> + <<if ($slaves[_FLs].health.condition < -80)>> + <<run improveCondition($slaves[_FLs], 20)>> + <<elseif $slaves[_FLs].health.condition < -40>> + <<run improveCondition($slaves[_FLs], 15)>> + <<elseif $slaves[_FLs].health.condition < 0>> + <<run improveCondition($slaves[_FLs], 10)>> + <<elseif $slaves[_FLs].health.condition < 90>> + <<run improveCondition($slaves[_FLs], 7)>> <</if>> <<if $slaves[_FLs].devotion <= 45>> <<set $slaves[_FLs].devotion += 5>> @@ -266,21 +266,22 @@ <</if>> /* Perform facility based rule changes */ - <<set $slaves[$i].health += _healthBonus, $slaves[$i].aphrodisiacs = _aphrod>> + <<run improveCondition($slaves[$i], _healthBonus)>> + <<set $slaves[$i].aphrodisiacs = _aphrod>> <<switch $brothelDecoration>> <<case "Degradationist" "standard">> <<set $slaves[$i].rules.living = "spare">> <<default>> <<set $slaves[$i].rules.living = "normal">> <</switch>> - <<if ($slaves[$i].health < -80)>> - <<set $slaves[$i].health += 20>> - <<elseif $slaves[$i].health < -40>> - <<set $slaves[$i].health += 15>> - <<elseif $slaves[$i].health < 0>> - <<set $slaves[$i].health += 10>> - <<elseif $slaves[$i].health < 90>> - <<set $slaves[$i].health += 7>> + <<if ($slaves[$i].health.condition < -80)>> + <<run improveCondition($slaves[$i], 20)>> + <<elseif $slaves[$i].health.condition < -40>> + <<run improveCondition($slaves[$i], 15)>> + <<elseif $slaves[$i].health.condition < 0>> + <<run improveCondition($slaves[$i], 10)>> + <<elseif $slaves[$i].health.condition < 90>> + <<run improveCondition($slaves[$i], 7)>> <</if>> <<if ($slaves[$i].devotion <= 20) && ($slaves[$i].trust >= -20)>> <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 5>> diff --git a/src/uncategorized/cellblockReport.tw b/src/uncategorized/cellblockReport.tw index 7aa1b792230..efe83704b61 100644 --- a/src/uncategorized/cellblockReport.tw +++ b/src/uncategorized/cellblockReport.tw @@ -13,14 +13,14 @@ <<set _FLs = $slaveIndices[$Wardeness.ID]>> <<setLocalPronouns $Wardeness>> - <<if ($slaves[_FLs].health < -80)>> - <<set $slaves[_FLs].health += 20>> - <<elseif ($slaves[_FLs].health < -40)>> - <<set $slaves[_FLs].health += 15>> - <<elseif ($slaves[_FLs].health < 0)>> - <<set $slaves[_FLs].health += 10>> - <<elseif ($slaves[_FLs].health < 90)>> - <<set $slaves[_FLs].health += 7>> + <<if ($slaves[_FLs].health.condition < -80)>> + <<run improveCondition($slaves[_FLs], 20)>> + <<elseif ($slaves[_FLs].health.condition < -40)>> + <<run improveCondition($slaves[_FLs], 15)>> + <<elseif ($slaves[_FLs].health.condition < 0)>> + <<run improveCondition($slaves[_FLs], 10)>> + <<elseif ($slaves[_FLs].health.condition < 90)>> + <<run improveCondition($slaves[_FLs], 7)>> <</if>> <<if ($slaves[_FLs].devotion <= 60)>> <<set $slaves[_FLs].devotion += 2>> @@ -233,16 +233,16 @@ <<if ($Wardeness != 0) && ($Wardeness.sexualFlaw == "malicious") && ($slaves[$i].energy >= 2)>> <<set $slaves[$i].energy -= 2>> <</if>> - <<if ($slaves[$i].health < -80)>> - <<set $slaves[$i].health += 20>> - <<elseif ($slaves[$i].health < -40)>> - <<set $slaves[$i].health += 15>> - <<elseif ($slaves[$i].health < 0)>> - <<set $slaves[$i].health += 10>> - <<elseif ($slaves[$i].health < 40)>> - <<set $slaves[$i].health += 7>> - <<elseif ($slaves[$i].health < 100)>> - <<set $slaves[$i].health += 3>> + <<if ($slaves[$i].health.condition < -80)>> + <<run improveCondition($slaves[$i], 20)>> + <<elseif ($slaves[$i].health.condition < -40)>> + <<run improveCondition($slaves[$i], 15)>> + <<elseif ($slaves[$i].health.condition < 0)>> + <<run improveCondition($slaves[$i], 10)>> + <<elseif ($slaves[$i].health.condition < 40)>> + <<run improveCondition($slaves[$i], 7)>> + <<elseif ($slaves[$i].health.condition < 100)>> + <<run improveCondition($slaves[$i], 3)>> <</if>> <<if $showEWD != 0>> <br><br> diff --git a/src/uncategorized/clinicReport.tw b/src/uncategorized/clinicReport.tw index 55f0e982cb8..19a3ab70110 100644 --- a/src/uncategorized/clinicReport.tw +++ b/src/uncategorized/clinicReport.tw @@ -12,8 +12,8 @@ <<if $Nurse != 0>> <<set _FLs = $slaveIndices[$Nurse.ID]>> - <<if ($slaves[_FLs].health < 100)>> - <<set $slaves[_FLs].health += 20>> + <<if ($slaves[_FLs].health.condition < 100)>> + <<run improveCondition($slaves[_FLs], 20)>> <</if>> <<if ($slaves[_FLs].devotion <= 60)>> <<set $slaves[_FLs].devotion++>> @@ -83,35 +83,39 @@ <<if $Nurse.rivalryTarget == $slaves[$i].ID>> <<setLocalPronouns $slaves[$i] 2>> $He purposefully neglects the needs of $his <<print rivalryTerm($Nurse)>>, $slaves[$i].slaveName, hindering _his2 recovery and deepening their dislike for each other. - <<set $slaves[$i].devotion--, $slaves[$i].trust--, $slaves[$i].health -= 3>> + <<set $slaves[$i].devotion--, $slaves[$i].trust-->> + <<run healthDamage($slaves[$i], 3)>> <<if random(1,100) > 65>> <<set $Nurse.rivalry++, $slaves[_FLs].rivalry++, $slaves[$i].rivalry++>> <</if>> <<elseif $Nurse.relationshipTarget == $slaves[$i].ID>> <<setLocalPronouns $slaves[$i] 2>> $He dedicates most of $his attention to $his <<print relationshipTerm($Nurse)>>, $slaves[$i].slaveName, making sure _he2 has everything _he2 needs and more. This lavish attention detracts from $his overall effectiveness. - <<set _idleBonus -= 3, $slaves[$i].devotion++, $slaves[$i].trust++, $slaves[$i].health += 3>> + <<set _idleBonus -= 3, $slaves[$i].devotion++, $slaves[$i].trust++>> + <<run improveCondition($slaves[$i], 3)>> <<elseif $familyTesting == 1 && areRelated($Nurse, $slaves[$i]) > 0>> $He makes sure to spend extra time caring for $his <<print relativeTerm($Nurse,$slaves[$i])>>, $slaves[$i].slaveName. - <<set $slaves[$i].trust++, $slaves[$i].health++>> + <<set $slaves[$i].trust++>> + <<run improveCondition($slaves[$i], 1)>> <<elseif $Nurse.relationTarget == $slaves[$i].ID && $familyTesting == 0>> $He makes sure to spend extra time caring for $his $slaves[$i].relation, $slaves[$i].slaveName. - <<set $slaves[$i].trust++, $slaves[$i].health++>> + <<set $slaves[$i].trust++>> + <<run improveCondition($slaves[$i], 1)>> <</if>> <<switch $slaves[$i].prestigeDesc>> <<case "$He is a famed Free Cities whore, and commands top prices.">> <<setLocalPronouns $slaves[$i] 2>> $He does $his best to aid the famous whore, $slaves[$i].slaveName, making sure to pay special attention to _his2 worn holes. - <<set $slaves[$i].health += 2>> + <<run improveCondition($slaves[$i], 2)>> <<case "$He is a famed Free Cities slut, and can please anyone.">> <<setLocalPronouns $slaves[$i] 2>> $He does $his best to aid the famous entertainer, $slaves[$i].slaveName, making sure _he2 can show off as soon as possible. - <<set $slaves[$i].health += 2>> + <<run improveCondition($slaves[$i], 2)>> <<case "$He is remembered for winning best in show as a cockmilker.">> <<setLocalPronouns $slaves[$i] 2>> <<if ($slaves[$i].balls > 4) && ($slaves[$i].dick != 0)>> $He does $his best to aid the dribbling $slaves[$i].slaveName, paying special attention to _his2 huge cock and balls as well as making sure to milk _his2 <<if canAchieveErection($slaves[$i])>>erect <</if>>dick hourly. - <<set $slaves[$i].health += 4>> + <<run improveCondition($slaves[$i], 4)>> <<if (random(1,100) > 65) && (($Nurse.fetish == "none") || ($Nurse.fetish == "cumslut"))>> <<if $Nurse.fetish == "none">> <<set $Nurse.fetish = "cumslut", $slaves[_FLs].fetish = "cumslut">> @@ -124,7 +128,8 @@ <<setLocalPronouns $slaves[$i] 2>> <<if ($slaves[$i].lactation > 0) && (($slaves[$i].boobs-$slaves[$i].boobsImplant) > 6000)>> $He does $his best to aid the leaking $slaves[$i].slaveName, paying special attention to _his2 huge breasts as well as making sure to milk _him2 hourly. - <<set $slaves[$i].health += 4, $slaves[$i].lactationDuration = 2, $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>> + <<run improveCondition($slaves[$i], 4)>> + <<set $slaves[$i].lactationDuration = 2, $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>> <<if (random(1,100) > 65) && (($Nurse.fetish == "none") || ($Nurse.fetish == "boobs"))>> <<if $Nurse.fetish == "none">> <<set $Nurse.fetish = "boobs", $slaves[_FLs].fetish = "boobs">> @@ -137,10 +142,10 @@ <<setLocalPronouns $slaves[$i] 2>> <<if $slaves[$i].bellyPreg >= 1500>> $He does $his best to aid the pregnant $slaves[$i].slaveName, paying special attention to _his2 swollen belly and the welfare of the life within. - <<set $slaves[$i].health += 6>> + <<run improveCondition($slaves[$i], 6)>> <<elseif $slaves[$i].ovaries == 1 || $slaves[$i].mpreg == 1>> $He does $his best to aid the breeder $slaves[$i].slaveName, paying special attention to _his2 fertility and reproductive organs. - <<set $slaves[$i].health += 4>> + <<run improveCondition($slaves[$i], 4)>> <<else>> $He lays out plans on how to restore the breeder $slaves[$i].slaveName to _his2 former gravid glory. <</if>> @@ -148,7 +153,8 @@ <<if $slaves[$i].bellyImplant > -1 && $clinicInflateBelly == 1>> <<setLocalPronouns $slaves[$i] 2>> <br>''@@.pink;$slaves[$i].slaveName@@'' spent a lot of time during the week under IV-like stands with bags of inert filler steadily flowing into _his2 belly implant, slowly pushing _his2 belly further and further out. Careful attention, along with several drug injections, were used to make sure _his2 body was able to safely adjust to the implant's rapid growth. - <<set $slaves[$i].bellyImplant += 5000, $slaves[$i].health -= 10>> + <<run healthDamage($slaves[$i], 10)>> + <<set $slaves[$i].bellyImplant += 5000>> <<if ($slaves[$i].devotion > 50)>> <<set $slaves[$i].devotion += 4, $slaves[$i].trust += 3>> <<elseif ($slaves[$i].devotion >= -20)>> @@ -164,7 +170,7 @@ <<if $slaves[$i].pregKnown == 1 && $slaves[$i].preg < $slaves[$i].pregData.normalBirth && $slaves[$i].pregControl == "speed up">> <<setLocalPronouns $slaves[$i] 2>> <br>''@@.pink;$slaves[$i].slaveName@@'' spends most of _his2 time on bedrest being filled with rapid gestation agents and concentrated slave food. All _he2 can do is <<if hasAnyArms($slaves[$i]) && canSee($slaves[$i])>>watch and feel _his2 belly pushing further and further out with life<<elseif canSee($slaves[$i])>>watch _his2 belly bulging further and further out with life<<elseif hasAnyArms($slaves[$i])>>feel _his2 belly pushing further and further out with life beneath _his2 fingers<<else>>feel the every growing pressure inside _his2 abdomen<</if>>. Careful attention, along with numerous drug injections, are used to make sure _his2 body is able to safely adjust to _his2 pregnancy's rapid growth. - <<set $slaves[$i].health -= 10>> + <<run healthDamage($slaves[$i], 10)>> <<if ($slaves[$i].devotion > 50)>> <<set $slaves[$i].devotion += 2, $slaves[$i].trust += 1>> <<elseif ($slaves[$i].devotion >= -20)>> @@ -240,9 +246,11 @@ <<if $slaves[$i].trust < 45>> <<set $slaves[$i].trust += 4>> <</if>> + /* improving condition is not the basic function of the clinic anymore <<if $slaves[$i].health < 90>> <<set $slaves[$i].health += 10 + ($curativeUpgrade * 10) + _healthBonus>> <</if>> + */ <<switch $clinicDecoration>> <<case "Eugenics" "Gender Fundamentalist" "Gender Radicalist" "Hedonistic" "Intellectual Dependency" "Maturity Preferentialist" "Paternalist" "Petite Admiration" "Repopulation Focus" "Slimness Enthusiast" "Statuesque Glorification" "Youth Preferentialist">> @@ -258,17 +266,17 @@ <<set $slaves[$i].pregControl = "speed up">> <</if>> <<if ($slaves[$i].chem > 10) && ($clinicUpgradeFilters >= 1)>> - <<set $slaves[$i].chem -= (5 + (50 * $clinicUpgradePurge))>> - <<if $slaves[$i].health > -50 && ($clinicUpgradePurge > 0)>> - <<set $slaves[$i].health = -50>> + <<if $slaves[$i].health.health > -50 && ($clinicUpgradePurge > 0)>> + <<set $slaves[$i].chem -= 50 * $clinicUpgradePurge>> + <<run healthDamage($slaves[$i], 50)>> <</if>> - <<set $slaves[$i].chem = Math.max($slaves[$i].chem, 0)>> + <<set $slaves[$i].chem = Math.max($slaves[$i].chem - 5, 0)>> <</if>> <<if $slaves[$i].lactation == 1>> <<set $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>> <</if>> <</if>> - <<if ($slaves[$i].health <= 40)>> + <<if ($slaves[$i].health.illness > 0)>> <<elseif ($Nurse != 0) && ($slaves[$i].chem > 15) && ($clinicUpgradeFilters == 1)>> <<elseif ($Nurse != 0) && ($slaves[$i].pregKnown == 1) && ($clinicSpeedGestation > 0 || $slaves[$i].pregControl == "speed up")>> <<elseif ($Nurse != 0) && ($slaves[$i].pregAdaptation*1000 < $slaves[$i].bellyPreg || $slaves[$i].preg > $slaves[$i].pregData.normalBirth/1.33)>> @@ -295,7 +303,7 @@ is receiving treatment in $clinicName. <</if>> <br> $He <<= saRest($slaves[$i])>> - <<if ($slaves[$i].health <= 40)>> + <<if ($slaves[$i].health.illness > 0)>> $He stays in the clinic as $he is still sick. <<elseif ($Nurse != 0) && ($slaves[$i].chem > 15) && ($clinicUpgradeFilters == 1)>> $He stays in the clinic as unhealthy chemicals are still being flushed from $his system. diff --git a/src/uncategorized/clubReport.tw b/src/uncategorized/clubReport.tw index 9a93171e666..13c64d808e6 100644 --- a/src/uncategorized/clubReport.tw +++ b/src/uncategorized/clubReport.tw @@ -14,14 +14,14 @@ <<if $DJ != 0>> <<set _FLs = $slaveIndices[$DJ.ID]>> - <<if ($slaves[_FLs].health < -80)>> - <<set $slaves[_FLs].health += 20>> - <<elseif $slaves[_FLs].health < -40>> - <<set $slaves[_FLs].health += 15>> - <<elseif $slaves[_FLs].health < 0>> - <<set $slaves[_FLs].health += 10>> - <<elseif $slaves[_FLs].health < 90>> - <<set $slaves[_FLs].health += 7>> + <<if ($slaves[_FLs].health.condition < -80)>> + <<run improveCondition($slaves[_FLs], 20)>> + <<elseif $slaves[_FLs].health.condition < -40>> + <<run improveCondition($slaves[_FLs], 15)>> + <<elseif $slaves[_FLs].health.condition < 0>> + <<run improveCondition($slaves[_FLs], 10)>> + <<elseif $slaves[_FLs].health.condition < 90>> + <<run improveCondition($slaves[_FLs], 7)>> <</if>> <<if $slaves[_FLs].devotion <= 60>> <<set $slaves[_FLs].devotion += 5>> @@ -195,14 +195,14 @@ <<set $slaves[$i].trust += 5>> <</if>> - <<if ($slaves[$i].health < -80)>> - <<set $slaves[$i].health += 20>> - <<elseif ($slaves[$i].health < -40)>> - <<set $slaves[$i].health += 15>> - <<elseif ($slaves[$i].health < 0)>> - <<set $slaves[$i].health += 10>> - <<elseif ($slaves[$i].health < 90)>> - <<set $slaves[$i].health += 7>> + <<if ($slaves[$i].health.condition < -80)>> + <<run improveCondition($slaves[$i], 20)>> + <<elseif ($slaves[$i].health.condition < -40)>> + <<run improveCondition($slaves[$i], 15)>> + <<elseif ($slaves[$i].health.condition < 0)>> + <<run improveCondition($slaves[$i], 10)>> + <<elseif ($slaves[$i].health.condition < 90)>> + <<run improveCondition($slaves[$i], 7)>> <</if>> <<if $slaves[$i].rules.living != "normal">> diff --git a/src/uncategorized/customSlave.tw b/src/uncategorized/customSlave.tw index 5cc040be217..3f274cfa287 100644 --- a/src/uncategorized/customSlave.tw +++ b/src/uncategorized/customSlave.tw @@ -266,19 +266,26 @@ <br> <span id = "health"> -<<if $customSlave.health == 0>>Healthy. +<<if $customSlave.health.condition == 0>>Healthy. <<else>>Extremely healthy. <</if>> </span> <<link "Healthy">> - <<set $customSlave.health = 0>> + <<set $customSlave.health.condition = 0>> + <<set $customSlave.health.health = $customSlave.health.condition>> <<CustomSlaveHealth>> <</link>> | <<link "Extremely healthy">> - <<set $customSlave.health = 80>> + <<set $customSlave.health.condition = 80>> + <<set $customSlave.health.health = $customSlave.health.condition>> <<CustomSlaveHealth>> <</link>> +<<set $customSlave.health.shortDamage = 0>> +<<set $customSlave.health.longDamage = 0>> +<<set $customSlave.health.illness = 0>> +<<set $customSlave.health.tired = 0>> +<<set $customSlave.health.health = $customSlave.health.condition>> <br> diff --git a/src/uncategorized/dairyReport.tw b/src/uncategorized/dairyReport.tw index bd4e3d9f469..3ef451ab141 100644 --- a/src/uncategorized/dairyReport.tw +++ b/src/uncategorized/dairyReport.tw @@ -89,7 +89,7 @@ <</for>> <</if>> - <<if $slaves[_FLs].health < 90>> + <<if $slaves[_FLs].health.condition < 90>> <<set $slaves[_FLs].curatives = 2>> <<else>> <<set $slaves[_FLs].curatives = 0>> @@ -106,7 +106,7 @@ <<if ($slaves[_FLs].skill.oral > 0)>> <<set $milkmaidDevotionBonus += Math.trunc($slaves[_FLs].skill.oral/30)>> <</if>> - <<if ($slaves[_FLs].health >= 80)>> + <<if ($slaves[_FLs].health.condition >= 80)>> <<set $milkmaidHealthBonus++>> <</if>> <<if $slaves[_FLs].rules.living != "luxurious">> @@ -424,14 +424,14 @@ <<if ($slaves[$i].devotion <= 20) && ($slaves[$i].trust >= -20)>> <<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 5>> <</if>> - <<if ($slaves[$i].health < -80)>> - <<set $slaves[$i].health += 20>> - <<elseif ($slaves[$i].health < -40)>> - <<set $slaves[$i].health += 10>> - <<elseif ($slaves[$i].health < 0)>> - <<set $slaves[$i].health += 7>> - <<elseif ($slaves[$i].health < 90)>> - <<set $slaves[$i].health += 3>> + <<if ($slaves[$i].health.condition < -80)>> + <<run improveCondition($slaves[$i], 20)>> + <<elseif ($slaves[$i].health.condition < -40)>> + <<run improveCondition($slaves[$i], 10)>> + <<elseif ($slaves[$i].health.condition < 0)>> + <<run improveCondition($slaves[$i], 7)>> + <<elseif ($slaves[$i].health.condition < 90)>> + <<run improveCondition($slaves[$i], 3)>> <</if>> <<if ($slaves[$i].inflation > 0)>> <<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0>> @@ -454,18 +454,18 @@ <<set $slaves[$i].boobs += _growth>> <</if>> <<if $slaves[$i].prostate == 1>> - <<set $slaves[$i].prostate = 2, $slaves[$i].health -= 10>> - <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i])>> + <<set $slaves[$i].prostate = 2>> + <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i]), healthDamage($slaves[$i], 10)>> <</if>> <<if $slaves[$i].vasectomy == 1>> - <<set $slaves[$i].vasectomy = 0, $slaves[$i].health -= 10>> - <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i])>> + <<set $slaves[$i].vasectomy = 0>> + <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i]), healthDamage($slaves[$i], 10)>> <</if>> <<if ($dairySlimMaintain == 0)>> <<if $dairyImplantsSetting <= 1>> <<if ($slaves[$i].lactation < 2) && ($slaves[$i].boobs > 300 || $slaves[$i].balls == 0 || $slaves[$i].lactation == 1 || $dairyImplantsSetting == 1)>> - <<set $slaves[$i].lactation = 2, $slaves[$i].lactationDuration = 2, $slaves[$i].health -= 10>> - <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i])>> + <<set $slaves[$i].lactation = 2, $slaves[$i].lactationDuration = 2>> + <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $slaves[$i]), healthDamage($slaves[$i], 10)>> <</if>> <<elseif $dairyImplantsSetting == 3>> <<if ($slaves[$i].lactation < 1) && ($slaves[$i].boobs > 300 || $slaves[$i].balls == 0)>> @@ -485,8 +485,8 @@ <<set $slaves[$i].weight += 2>> <</if>> <</if>> - <<if ($slaves[$i].health < 75)>> - <<set $slaves[$i].health += 25>> + <<if ($slaves[$i].health.condition < 75)>> + <<run improveCondition($slaves[$i], 25)>> <<else>> <<if ($dairySlimMaintain == 0) && $slaves[$i].lactation > 0>> <<if $dairyFeedersSetting > 1 && $dairyStimulatorsSetting > 0>> @@ -620,8 +620,8 @@ <<elseif ($slaves[$i].anus < 3)>> <<set $slaves[$i].anus++>> <</if>> - <<if ($slaves[$i].health < 60)>> - <<set $slaves[$i].health += 20>> + <<if ($slaves[$i].health.condition < 60)>> + <<run improveCondition($slaves[$i], 20)>> <<elseif $dairySlimMaintain == 0 && $slaves[$i].lactation > 0>> <<if $dairyFeedersSetting > 1>> <<if $slaves[$i].boobs < 50000>> diff --git a/src/uncategorized/genericPlotEvents.tw b/src/uncategorized/genericPlotEvents.tw index 9f91854e621..56183687f15 100644 --- a/src/uncategorized/genericPlotEvents.tw +++ b/src/uncategorized/genericPlotEvents.tw @@ -14,7 +14,7 @@ <<if _genPlot != -1>> <<run $slaves.forEach(function(s) { if (s.curatives > 1 || s.inflationType == "curative") { - s.health -= Math.floor(Math.random() * 2 + 1); + healthDamage(s, Math.floor(Math.random() * 2 + 1)); } })>> <<else>> @@ -35,7 +35,7 @@ The firm promptly pays @@.yellowgreen;fair compensation@@ for the minor damage t <<if _genPlot != -1>> <<run $slaves.forEach(function(s) { if (["breast injections", "hyper breast injections", "intensive breast injections"].includes(s.drugs)) { - s.health -= Math.floor(Math.random() * 2 + 1); + healthDamage(s, Math.floor(Math.random() * 2 + 1)); } })>> <<else>> @@ -72,7 +72,11 @@ As you step off the elevator, you hear several <<if $seeDicks != 100>>female <</ <<set $activeSlave.career = "a prostitute">> <<set $activeSlave.devotion = 20>> <<set $activeSlave.trust = 5>> - <<set $activeSlave.health -= 50>> + <<set $activeSlave.health.condition -= 50>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> + <<if $activeSlave.health.health < -90>> + <<set $activeSlave.health.condition += -90 - $activeSlave.health.health, $activeSlave.health.health = -90>> + <</if>> <<set $activeSlave.anus = 2>> <<if $activeSlave.dick == 0>> <<set $activeSlave.vagina = 2>> @@ -88,7 +92,8 @@ As you step off the elevator, you hear several <<if $seeDicks != 100>>female <</ <<set $activeSlave.career = "a prostitute">> <<set $activeSlave.devotion = 45>> <<set $activeSlave.trust = 25>> - <<set $activeSlave.health = 20>> + <<set $activeSlave.health.condition = 20>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.anus = 2>> <<if $activeSlave.dick == 0>> <<set $activeSlave.vagina = 2>> @@ -257,7 +262,8 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u <<set $activeSlave.career = "a nun">> <<set $activeSlave.devotion = -20>> <<set $activeSlave.trust = random(-90,-75)>> - <<set $activeSlave.health = random(-10,10)>> + <<set $activeSlave.health.condition = random(-10,10)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.face = 15>> <<set $activeSlave.anus = 0>> <<set $activeSlave.vagina = 0>> @@ -285,7 +291,8 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u <<set $activeSlave.career = "a nun">> <<set $activeSlave.devotion = random(-90,-75)>> <<set $activeSlave.trust = -20>> - <<set $activeSlave.health = random(-10,10)>> + <<set $activeSlave.health.condition = random(-10,10)>> + <<set $activeSlave.health.health = Math.max($activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage, -90)>> <<set $activeSlave.anus = 0>> <<set $activeSlave.vagina = 0>> <<set $activeSlave.weight = random(-20,-100)>> @@ -314,7 +321,8 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u <<set $activeSlave.career = "a principal">> <<set $activeSlave.devotion = -20>> <<set $activeSlave.trust = random(-90,-75)>> - <<set $activeSlave.health = random(-10,10)>> + <<set $activeSlave.health.condition = random(-10,10)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.anus = 1>> <<set $activeSlave.vagina = 1>> <<set $activeSlave.weight = random(20,80)>> @@ -340,7 +348,8 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u <<set $activeSlave.career = "a student">> <<set $activeSlave.devotion = random(-90,-75)>> <<set $activeSlave.trust = -20>> - <<set $activeSlave.health = random(-10,10)>> + <<set $activeSlave.health.condition = random(-10,10)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.anus = 1>> <<set $activeSlave.vagina = random(0, 0, 1)>> <<set $activeSlave.weight = random(-50,0)>> @@ -377,7 +386,8 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u <<set $activeSlave.pregKnown = 1>> <<set $activeSlave.pregWeek = $activeSlave.preg>> <<run SetBellySize($activeSlave)>> - <<set $activeSlave.health = random(-10,10)>> + <<set $activeSlave.health.condition = random(-10,10)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.vagina = random(1,3)>> <<set $activeSlave.boobs += 100*random(0,2)>> <<set $activeSlave.lactation = 1>> @@ -409,7 +419,8 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u <<set $activeSlave.career = "a student">> <<set $activeSlave.devotion = random(-90,-75)>> <<set $activeSlave.trust = random(-90,-75)>> - <<set $activeSlave.health = random(-10,10)>> + <<set $activeSlave.health.condition = random(-10,10)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set _newSlaves.push($activeSlave)>> <</for>> <<elseif $PAidTarget == "conversion">> @@ -422,7 +433,8 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u <<set $activeSlave.career = "a business owner">> <<set $activeSlave.devotion = -20>> <<set $activeSlave.trust = random(-90,-75)>> - <<set $activeSlave.health = random(-10,10)>> + <<set $activeSlave.health.condition = random(-10,10)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.anus = random(2,3)>> <<set $activeSlave.weight = random(20,80)>> <<set $activeSlave.attrXX = random(10,50)>> @@ -447,7 +459,8 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u <<set $activeSlave.career = "a student">> <<set $activeSlave.devotion = random(-90,-75)>> <<set $activeSlave.trust = -20>> - <<set $activeSlave.health = random(-10,10)>> + <<set $activeSlave.health.condition = random(-10,10)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.anus = 1>> <<set $activeSlave.weight = random(-50,0)>> <<set $activeSlave.attrXX = random(10,50)>> @@ -475,7 +488,10 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u <<set $activeSlave.career = "a student athlete">> <<set $activeSlave.devotion = random(-90,-75)>> <<set $activeSlave.trust = random(-90,-75)>> - <<set $activeSlave.health = random(20,60)>> + <<set $activeSlave.health.condition = random(20,60)>> + <<set $activeSlave.health.shortDamage = 0>> + <<set $activeSlave.health.longDamage = 0>> + <<set $activeSlave.health.health = $activeSlave.health.condition>> <<set $activeSlave.muscles = random(20,40)>> <<set $activeSlave.weight = random(-10,5)>> <<set $activeSlave.waist = random(-40,0)>> @@ -502,7 +518,12 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u <<set _missLeader.intelligenceImplant = 15>> <<set _missLeader.devotion = 40>> <<set _missLeader.trust = random(0,40)>> - <<set _missLeader.health = random(-50,-10)>> + <<set _missLeader.health.condition = random(-50,-10)>> + <<set _missLeader.health.shortDamage = random(10,20)>> + <<set _missLeader.health.health = _missLeader.health.condition - _missLeader.health.shortDamage - _missLeader.health.longDamage>> + <<if _missLeader.health.health < -90>> + <<set _missLeader.health.condition += -90 - _missLeader.health.health, _missLeader.health.health = -90>> + <</if>> <<set _missLeader.anus = 3>> <<set _missLeader.vagina = 5>> <<set _missLeader.weight = random(-80,-20)>> @@ -547,7 +568,12 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u <<set $activeSlave.intelligenceImplant = 15>> <<set $activeSlave.devotion = 30>> <<set $activeSlave.trust = random(-20,20)>> - <<set $activeSlave.health = random(-60,-10)>> + <<set $activeSlave.health.condition = random(-60,-10)>> + <<set $activeSlave.health.shortDamage = random(10,20)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> + <<if $activeSlave.health.health < -90>> + <<set $activeSlave.health.condition += -90 - $activeSlave.health.health, $activeSlave.health.health = -90>> + <</if>> <<set $activeSlave.anus = 3>> <<set $activeSlave.vagina = 4>> <<set $activeSlave.weight = random(-90,-20)>> @@ -591,7 +617,12 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u <<set $activeSlave.career = "a nun">> <<set $activeSlave.devotion = 50>> <<set $activeSlave.trust = random(0,50)>> - <<set $activeSlave.health = random(-90,-50)>> + <<set $activeSlave.health.condition = random(-90,-50)>> + <<set $activeSlave.health.shortDamage = random(10,20)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> + <<if $activeSlave.health.health < -90>> + <<set $activeSlave.health.condition += -90 - $activeSlave.health.health, $activeSlave.health.health = -90>> + <</if>> <<set $activeSlave.anus = 3>> <<set $activeSlave.vagina = 5>> <<set $activeSlave.weight = random(-90,-60)>> @@ -643,7 +674,12 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u <<set _missLoli.career = "an orphan">> <<set _missLoli.devotion = -20>> <<set _missLoli.trust = random(-100,-80)>> - <<set _missLoli.health = random(-90,-70)>> + <<set _missLoli.health.condition = random(-90,-70)>> + <<set _missLoli.health.shortDamage = random(20,30)>> + <<set _missLoli.health.health = _missLoli.health.condition - _missLoli.health.shortDamage - _missLoli.health.longDamage>> + <<if _missLoli.health.health < -90>> + <<set _missLoli.health.condition += -90 - _missLoli.health.health, _missLoli.health.health = -90>> + <</if>> <<set _missLoli.anus = 3>> <<set _missLoli.vagina = 5>> <<set _missLoli.pubertyXX = 1>> @@ -697,7 +733,8 @@ When the aircraft lands at your penthouse pad, the would-be escapees are still u <<set $activeSlave.career = "a housewife">> <<set $activeSlave.devotion = -20>> <<set $activeSlave.trust = random(-10,10)>> - <<set $activeSlave.health = random(30,50)>> + <<set $activeSlave.health.condition = random(30,50)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.anus = 1>> <<set $activeSlave.vagina = random(1,2)>> <<set $activeSlave.weight = random(-20,20)>> @@ -1154,7 +1191,8 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your <<set $activeSlave.preg = -1>> <<set $activeSlave.muscles = 50>> <<set $activeSlave.weight = 0>> - <<set $activeSlave.health = 80>> + <<set $activeSlave.health.condition = 80>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.boobs = 400>> <<set $activeSlave.butt = 2>> <<set $activeSlave.waist = 0>> @@ -1204,7 +1242,8 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your <<set $activeSlave.muscles = 0>> <<set $activeSlave.weight = -10>> <<set $activeSlave.height = 135>> - <<set $activeSlave.health = 80>> + <<set $activeSlave.health.condition = 80>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.boobs = 200>> <<set $activeSlave.butt = 1>> <<set $activeSlave.waist = -50>> @@ -1262,7 +1301,8 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your <<set $activeSlave.skill.anal = 0>> <<set $activeSlave.muscles = 20>> <<set $activeSlave.weight = 20>> - <<set $activeSlave.health = 30>> + <<set $activeSlave.health.condition = 30>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<if $activeSlave.lips < 10>><<set $activeSlave.lips += 10>><</if>> <<set $activeSlave.boobs = 1000>> <<set $activeSlave.butt = 6>> @@ -1320,7 +1360,8 @@ A screen opposite your desk springs to life, <<if $assistant == 0>>showing your <<set $activeSlave.skill.anal = 35>> <<set $activeSlave.muscles = 0>> <<set $activeSlave.weight = 0>> - <<set $activeSlave.health = 30>> + <<set $activeSlave.health.condition = 30>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<if $activeSlave.lips < 10>><<set $activeSlave.lips += 10>><</if>> <<set $activeSlave.boobs = 800>> <<set $activeSlave.butt = 4>> diff --git a/src/uncategorized/hgApplication.tw b/src/uncategorized/hgApplication.tw index 59c00c20da0..d99f9bd9c87 100644 --- a/src/uncategorized/hgApplication.tw +++ b/src/uncategorized/hgApplication.tw @@ -44,7 +44,7 @@ <<if $HGtraining == "health">> $He helps $activeSlave.slaveName however $he can. The tender care has @@.green;improved $activeSlave.slaveName's health.@@ -<<set $activeSlave.health += 10>> +<<run improveCondition($activeSlave, 10)>> <<set $activeSlave.training = 0>> <<else>> diff --git a/src/uncategorized/hgSelect.tw b/src/uncategorized/hgSelect.tw index b0dd2398d7e..e7f18078a22 100644 --- a/src/uncategorized/hgSelect.tw +++ b/src/uncategorized/hgSelect.tw @@ -69,12 +69,12 @@ _HGName <<if $HeadGirl != 0>> <<if $universalRulesImpregnation == "HG">> <br><br>_HGName is responsible for impregnating fertile slaves. - <<set $HGCum = 2+Math.trunc(($HeadGirl.balls/5)+($HeadGirl.energy/95)+($HeadGirl.health/95)+($HeadGirl.devotion/95)+($reproductionFormula*5))>> + <<set $HGCum = 2+Math.trunc(($HeadGirl.balls/5)+($HeadGirl.energy/95)+($HeadGirl.health.condition/95)+($HeadGirl.devotion/95)+($reproductionFormula*5))>> <<if canPenetrate($HeadGirl) && $HeadGirl.pubertyXY == 1>> To maximize the chances of impregnation, $he will fuck fertile pussies frequently during the week. $HeadGirl.slaveName can service $HGCum slaves this way. <<if $HeadGirl.devotion > 95>>$He loves you so much $he'll fuck them until $he's sore.<<else>>If $he were more devoted to you, $he might be able to drive $himself to get hard and service one more.<</if>> <<if $HeadGirl.balls >= 120>>$His unreal balls produce nearly an endless supply of semen; $his ability to impregnate is almost limitless.<<elseif $HeadGirl.balls >= 80>>$His inhuman balls produce so much semen $he can easily impregnate twenty girls in one sitting.<<elseif $HeadGirl.balls >= 50>>$His giant balls produce so much semen $he can easily impregnate twelve girls in one sitting.<<elseif $HeadGirl.balls >= 25>>$His oversized balls produce so much semen $he can cum repeatedly in a single session.<<elseif $HeadGirl.balls >= 5>>$His big balls produce so much semen $he can cum more before $he's drained.<<else>>Bigger balls would let $him cum more before $he's drained.<</if>> - <<if $HeadGirl.health > 95>>$His wonderful health lets $him get hard and stay hard all the time.<<else>>If $his health were perfect, $he might be able to get hard more often.<</if>> + <<if $HeadGirl.health.condition > 95>>$His wonderful health lets $him get hard and stay hard all the time.<<else>>If $his health were perfect, $he might be able to get hard more often.<</if>> <<if $HeadGirl.energy > 95>>$His nymphomania drives $him to go above and beyond in this.<<else>>A more powerful sex drive could reduce $his refractory period.<</if>> <<else>> However, $HeadGirl.slaveName cannot perform this duty. diff --git a/src/uncategorized/householdLiquidator.tw b/src/uncategorized/householdLiquidator.tw index 6b0700f1ea9..3709322159a 100644 --- a/src/uncategorized/householdLiquidator.tw +++ b/src/uncategorized/householdLiquidator.tw @@ -12,7 +12,8 @@ <<set $activeSlave.trust = random(-45,-25)>> <<set $activeSlave.oldDevotion = $activeSlave.devotion>> <<set $activeSlave.oldTrust = $activeSlave.trust>> -<<set $activeSlave.health = random(-50,20)>> +<<set $activeSlave.health.condition = random(-50,20)>> +<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<if $familyTesting == 1>> <<set $activeSlave.mother = $missingParentID>> <<set $missingParentID-->> @@ -58,6 +59,7 @@ The price is <<print cashFormat($slaveCost*3)>>.<<if $slavesSeen > $slaveMarketL <<set $activeSlave.oldDevotion = $activeSlave.devotion>> <<set $activeSlave.oldTrust = $activeSlave.trust>> <<set $activeSlave.health = random(-50,20)>> +<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.boobs += 100>> <<set $activeSlave.butt += 1>> <<if $activeSlave.vagina > -1>><<set $activeSlave.vagina += 1>><</if>> @@ -102,6 +104,7 @@ The price is <<print cashFormat($slaveCost*3)>>.<<if $slavesSeen > $slaveMarketL <<set $activeSlave.oldDevotion = $activeSlave.devotion>> <<set $activeSlave.oldTrust = $activeSlave.trust>> <<set $activeSlave.health = random(-50,20)>> +<<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<if $familyTesting == 1>> <<set $activeSlave.mother = $missingParentID>> <<set $missingParentID-->> diff --git a/src/uncategorized/jeSlaveDispute.tw b/src/uncategorized/jeSlaveDispute.tw index 09517ea8312..c28176c0c93 100644 --- a/src/uncategorized/jeSlaveDispute.tw +++ b/src/uncategorized/jeSlaveDispute.tw @@ -14,7 +14,8 @@ <<set $activeSlave.devotion = random(25,30)>> <<set $activeSlave.trust = $activeSlave.devotion-20>> <<set $activeSlave.oldDevotion = $activeSlave.devotion>> - <<set $activeSlave.health = random(0,20)>> + <<set $activeSlave.health.condition = random(0,20)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.earPiercing = 1>> <<set $activeSlave.vagina = random(1,2)>> <<set $activeSlave.ovaries = 1>> @@ -32,7 +33,8 @@ <<set $activeSlave.career = "a breeder">> <<set $activeSlave.devotion = random(10,25)>> <<set $activeSlave.trust = $activeSlave.devotion>> - <<set $activeSlave.health = random(80,90)>> + <<set $activeSlave.health.condition = random(80,90)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.anus = 0>> <<set $activeSlave.vagina = 3>> <<set $activeSlave.skill.anal = 0>> @@ -56,7 +58,8 @@ <<set $activeSlave.devotion = random(30,40)>> <<set $activeSlave.trust = $activeSlave.devotion>> <<set $activeSlave.oldDevotion = $activeSlave.devotion>> - <<set $activeSlave.health = random(60,80)>> + <<set $activeSlave.health.condition = random(60,80)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.balls = 0>> <<set $activeSlave.anus = 2>> <<set $activeSlave.skill.anal = 35>> @@ -94,7 +97,8 @@ <<set $activeSlave.devotion = random(10,15)>> <<set $activeSlave.trust = $activeSlave.devotion>> <<set $activeSlave.oldDevotion = $activeSlave.devotion>> - <<set $activeSlave.health = random(80,90)>> + <<set $activeSlave.health.condition = random(80,90)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<if $activeSlave.dick == 0>> <<set $activeSlave.vagina = 0>> <<set $activeSlave.ovaries = 1>> @@ -113,7 +117,8 @@ <<set $activeSlaveOneTimeMaxAge = 42>> <<set $oneTimeDisableDisability = 1>> <<set $activeSlave = GenerateNewSlave()>> - <<set $activeSlave.health = random(-20,20)>> + <<set $activeSlave.health.condition = random(-20,20)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.anus = 2>> <<if $activeSlave.vagina > -1>> <<set $activeSlave.vagina = 2>> @@ -148,7 +153,8 @@ <<set $activeSlave.devotion = random(25,30)>> <<set $activeSlave.trust = $activeSlave.devotion-20>> <<set $activeSlave.oldDevotion = $activeSlave.devotion>> - <<set $activeSlave.health = random(0,20)>> + <<set $activeSlave.health.condition = random(0,20)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.anus = 2>> <<if $activeSlave.dick == 0>> <<set $activeSlave.vagina = 2>> diff --git a/src/uncategorized/lawCompliance.tw b/src/uncategorized/lawCompliance.tw index 3dede282120..bd4b63b245d 100644 --- a/src/uncategorized/lawCompliance.tw +++ b/src/uncategorized/lawCompliance.tw @@ -4,7 +4,8 @@ <<if $arcologies[0].FSSlimnessEnthusiastSMR == 1>> <<set $activeSlave.weight = random(-80,0)>> - <<set $activeSlave.health = random(50,90)>> + <<set $activeSlave.health.condition = random(50,90)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> $He has been kept on a rigorous diet for sale, has been required to exercise regularly, and has had excellent care taken of $his health. <</if>> <<if $arcologies[0].FSRepopulationFocusSMR == 1>> @@ -56,16 +57,19 @@ lifting weights, <</if>> and $his health has been raised to an almost unnatural level. - <<set $activeSlave.health = random(50,90)>> + <<set $activeSlave.health.condition = random(50,90)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<set $activeSlave.weight = random(-20,0)>> <<elseif $arcologies[0].FSHedonisticDecadenceSMR == 1>> <<set $activeSlave.weight = random(50,200)>> <<if $arcologies[0].FSHedonisticDecadenceStrongFat == 1>> <<set $activeSlave.muscles = random(10,60)>> - <<set $activeSlave.health = random(10,40)>> + <<set $activeSlave.health.condition = random(10,40)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <<else>> <<set $activeSlave.muscles = random(-80,0)>> - <<set $activeSlave.health = random(-30,10)>> + <<set $activeSlave.health.condition = random(-30,10)>> + <<set $activeSlave.health.health = $activeSlave.health.condition - $activeSlave.health.shortDamage - $activeSlave.health.longDamage>> <</if>> Much of $his time before sale was spent being fattened up and <<if $arcologies[0].FSHedonisticDecadenceStrongFat == 1>>pumping iron<<else>>lying around<</if>>. <<if $activeSlave.devotion <= 20>> @@ -354,9 +358,9 @@ <</if>> <<if $HealthInspectionSMR == 1>> - <<if $activeSlave.health < -10>> + <<if $activeSlave.health.condition < -10>> $His current owners held $him for basic medical care before putting $him on sale, resolving some of $his health issues. - <<set $activeSlave.health = -10>> + <<run improveCondition($activeSlave, 10)>> <</if>> <</if>> @@ -403,7 +407,8 @@ <<if $activeSlave.height >= 160>> Before $he was put up for sale, $he underwent height increasing surgery to fulfill your arcology's height SMR. $He was @@.gold;horrified@@ by how drastically $his body was altered just for a chance at sale. <<set $activeSlave.trust -= 10>> - <<set $activeSlave.height += 10, $activeSlave.heightImplant = 1, $activeSlave.health -= -40>> + <<set $activeSlave.height += 10, $activeSlave.heightImplant = 1>> + <<run healthDamage($activeSlave, 40)>> <<else>> While $he was in the slave pens, $he was treated as nothing more than an unsalvageable slab of meat suitable only for the lowliest of jobs. $He's @@.hotpink;desperate@@ enough to follow any order in @@.gold;fear@@ that should $he fail, $he'll be discarded like so many other shorties. <<set $activeSlave.devotion += 10, $activeSlave.trust -= 10>> @@ -417,7 +422,8 @@ <<if $activeSlave.height <= 169>> Before $he was put up for sale, $he underwent height reduction surgery to fulfill your arcology's height SMR. $He was @@.gold;horrified@@ by how drastically $his body was altered just for a chance at sale. <<set $activeSlave.trust -= 10>> - <<set $activeSlave.height -= 10, $activeSlave.heightImplant = -1, $activeSlave.health -= -40>> + <<set $activeSlave.height -= 10, $activeSlave.heightImplant = -1>> + <<run healthDamage($activeSlave, 40)>> <<else>> While $he was in the slave pens, $he was treated as nothing more than an unsalvageable slab of meat suitable only for the lowliest of jobs. $He's @@.hotpink;desperate@@ enough to follow any order in @@.gold;fear@@ that should $he fail, $he'll be discarded like all the other tall <<= $girl>>s. <<set $activeSlave.devotion += 10, $activeSlave.trust -= 10>> diff --git a/src/uncategorized/masterSuiteReport.tw b/src/uncategorized/masterSuiteReport.tw index efe2babd177..96bd2093678 100644 --- a/src/uncategorized/masterSuiteReport.tw +++ b/src/uncategorized/masterSuiteReport.tw @@ -354,11 +354,11 @@ <</if>> <</if>> /* If they're preggo and in the upgraded suite, give them extra health. More if they're being given lighter duties. */ - <<if ($slaves[$i].health < 100)>> + <<if ($slaves[$i].health.condition < 100)>> <<if ($masterSuitePregnancySlaveLuxuries == 0)>> - <<set $slaves[$i].health += 15>> + <<run improveCondition($slaves[$i], 15)>> <<else>> - <<set $slaves[$i].health += 25>> + <<run improveCondition($slaves[$i], 25)>> <</if>> <</if>> <</if>> @@ -402,11 +402,11 @@ <<include "SA devotion">> <</silently>> <</if>> - <<if $slaves[$i].health < 80>> + <<if $slaves[$i].health.condition < 80>> <<if $masterSuiteUpgradeLuxury == 1>> - <<set $slaves[$i].health += 20>> + <<run improveCondition($slaves[$i], 20)>> <<else>> - <<set $slaves[$i].health += 10>> + <<run improveCondition($slaves[$i], 10)>> <</if>> <</if>> diff --git a/src/uncategorized/motherDaughterWorkaround.tw b/src/uncategorized/motherDaughterWorkaround.tw index 48e40ce74bb..6700310f580 100644 --- a/src/uncategorized/motherDaughterWorkaround.tw +++ b/src/uncategorized/motherDaughterWorkaround.tw @@ -18,7 +18,7 @@ Your new pair of slaves look frightened and uncertain, but seem encouraged by ea <<set _secondSlave.oldDevotion = _secondSlave.devotion>> <<set _secondSlave.trust -= random(5,15)>> <<set _secondSlave.oldTrust = _secondSlave.trust>> -<<set _secondSlave.health += 30>> +<<set _secondSlave.health.condition += 30>> <<set _secondSlave.boobs -= 100>> <<set _secondSlave.butt -= 1>> <<set _secondSlave.vagina = either(0, 0, 0, 1)>> diff --git a/src/uncategorized/multiImplant.tw b/src/uncategorized/multiImplant.tw index 54953383c66..b2449b0d217 100644 --- a/src/uncategorized/multiImplant.tw +++ b/src/uncategorized/multiImplant.tw @@ -18,7 +18,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized Ensures that a slave can never die during the execution of this passage. Calculation based on worst case, so when changing worst case change it here too. */ - <<if $activeSlave.health - (_organCount * 40 + _prostheticCount * 20) < -75>> + <<if $activeSlave.health.health - (_organCount * 40 + _prostheticCount * 20) < -75>> <br><hr> @@.red;Estimated health impact too great; $activeSlave.slaveName skipped.@@ <<continue>> @@ -145,7 +145,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<set $activeSlave.eyes = 1>> <<set $activeSlave.eyeColor = $activeSlave.origEye>> /* no way to salvage original eye color */ - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -156,7 +156,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>> <<set $activeSlave.eyes = 1>> <<set $activeSlave.eyeColor = $activeSlave.origEye>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -176,7 +176,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<if $activeSlave.hears == -1>> <<set $activeSlave.hears = 0>> <</if>> - <<set $activeSlave.health -= 15>> + <<run healthDamage($activeSlave, 15)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -194,7 +194,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<if ($activeSlave.hears == -2) && $activeSlave.earImplant != 1>> <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>> <<set $activeSlave.hears = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -204,7 +204,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<elseif $activeSlave.earImplant == 1>> <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>> <<set $activeSlave.hears = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -227,7 +227,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<else>> <<set $activeSlave.voice = 2>> <</if>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 10>> <</if>> @@ -252,7 +252,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<else>> <<set $activeSlave.foreskin = 1>> <</if>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 10>> <</if>> @@ -270,7 +270,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<if ($activeSlave.prostate == 0)>> <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>> <<set $activeSlave.prostate = 1>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -290,7 +290,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<set $activeSlave.ovaries = 1>> <<set $activeSlave.eggType = "human">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -332,7 +332,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>> <<set $activeSlave.eggType = "human">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -363,7 +363,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<set $activeSlave.ovaries = 1>> <<set $activeSlave.eggType = "pig">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -406,7 +406,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<set $activeSlave.ovaries = 1>> <<set $activeSlave.eggType = "dog">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -449,7 +449,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<set $activeSlave.ovaries = 1>> <<set $activeSlave.eggType = "horse">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -492,7 +492,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<set $activeSlave.ovaries = 1>> <<set $activeSlave.eggType = "cow">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -535,7 +535,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<set $activeSlave.mpreg = 1>> <<set $activeSlave.eggType = "human">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 40>> + <<run healthDamage($activeSlave, 40)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -578,7 +578,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<set $activeSlave.mpreg = 1>> <<set $activeSlave.eggType = "pig">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 40>> + <<run healthDamage($activeSlave, 40)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -621,7 +621,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<set $activeSlave.mpreg = 1>> <<set $activeSlave.eggType = "dog">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 40>> + <<run healthDamage($activeSlave, 40)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -664,7 +664,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<set $activeSlave.mpreg = 1>> <<set $activeSlave.eggType = "horse">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 40>> + <<run healthDamage($activeSlave, 40)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -707,7 +707,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<set $activeSlave.mpreg = 1>> <<set $activeSlave.eggType = "cow">> <<set $activeSlave.preg = 0>> - <<set $activeSlave.health -= 40>> + <<run healthDamage($activeSlave, 40)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -755,7 +755,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<if $activeSlave.preg < 0>> <<set $activeSlave.preg = 0>> <</if>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -792,7 +792,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<set $activeSlave.dick = 2>> <<set $activeSlave.clit = 0>> <<set $activeSlave.foreskin = $activeSlave.dick>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<set $surgeryType = "addDick">> <br><hr> <<include "Surgery Degradation">> @@ -811,7 +811,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<set $activeSlave.balls = 2>> <<set $activeSlave.ballType = "human">> <<set $activeSlave.scrotum = 2>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -846,7 +846,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<set $activeSlave.balls = 3>> <<set $activeSlave.scrotum = 3>> <<set $activeSlave.ballType = "pig">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -881,7 +881,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<set $activeSlave.balls = 2>> <<set $activeSlave.ballType = "dog">> <<set $activeSlave.scrotum = 2>> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -917,7 +917,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<set $activeSlave.balls = 3>> <<set $activeSlave.scrotum = 3>> <<set $activeSlave.ballType = "horse">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -952,7 +952,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<set $activeSlave.balls = 3>> <<set $activeSlave.scrotum = 3>> <<set $activeSlave.ballType = "cow">> - <<set $activeSlave.health -= 20>> + <<run healthDamage($activeSlave, 20)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 20>> <</if>> @@ -985,7 +985,7 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<if ($activeSlave.scrotum == 0) && ($activeSlave.balls >= 1)>> <<run cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave)>> <<set $activeSlave.scrotum = $activeSlave.balls>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<if $organFarmUpgrade == 2>> <<set $activeSlave.chem += 10>> <</if>> @@ -1016,21 +1016,24 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<switch _p.id>> <<case "ocular">> <<if $activeSlave.eyes < -1>> - <<set $activeSlave.eyesImplant = 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "ocular implant">> + <<set $activeSlave.eyesImplant = 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "ocular implant">> + <<run healthDamage($activeSlave, 20)>> <<include "Surgery Degradation">> <<else>> //Since $he has working eyes the <<= setup.prosthetics.ocular.name>> will be put into storage.// <</if>> <<case "cochlear">> <<if $activeSlave.hears != 0>> - <<set $activeSlave.earImplant = 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "cochlear implant">> + <<set $activeSlave.earImplant = 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "cochlear implant">> + <<run healthDamage($activeSlave, 20)>> <<include "Surgery Degradation">> <<else>> //Since $he has working ears the <<= setup.prosthetics.cochlear.name>> will be put into storage.// <</if>> <<case "electrolarynx">> <<if $activeSlave.voice <= 0>> - <<set $activeSlave.electrolarynx = 1, $activeSlave.voice = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "electrolarynx">> + <<set $activeSlave.electrolarynx = 1, $activeSlave.voice = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $surgeryType = "electrolarynx">> + <<run healthDamage($activeSlave, 20)>> <<include "Surgery Degradation">> <<else>> //Since $he has a voice the <<= setup.prosthetics.electrolarynx.name>> will be put into storage.// @@ -1041,17 +1044,20 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <<elseif $activeSlave.PLimb == 2>> //Since $he already has <<= addA(setup.prosthetics.interfaceP2.name)>> installed the <<= setup.prosthetics.interfaceP1.name>> will be put into storage.// <<else>> - <<set $activeSlave.PLimb = 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "PLimb interface1">> + <<set $activeSlave.PLimb = 1, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "PLimb interface1">> + <<run healthDamage($activeSlave, 20)>> <<include "Surgery Degradation">> <</if>> <<case "interfaceP2">> <<if hasAllNaturalLimbs($activeSlave)>> //Since $he has no amputated limbs the <<= setup.prosthetics.interfaceP2.name>> will be put into storage.// <<elseif $activeSlave.PLimb == 1>> - <<set $activeSlave.PLimb = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 5, $surgeryType = "PLimb interface3">> + <<set $activeSlave.PLimb = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "PLimb interface3">> + <<run healthDamage($activeSlave, 5)>> <<include "Surgery Degradation">> <<else>> - <<set $activeSlave.PLimb = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 20, $surgeryType = "PLimb interface2">> + <<set $activeSlave.PLimb = 2, cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "PLimb interface2">> + <<run healthDamage($activeSlave, 20)>> <<include "Surgery Degradation">> <</if>> <<case "basicL" "sexL" "beautyL" "combatL" "cyberneticL">> @@ -1102,7 +1108,8 @@ You head down to your <<if $surgeryUpgrade == 1>>heavily upgraded and customized <</if>> <</if>> <<case "interfaceTail">> - <<set $activeSlave.PTail = 1, $activeSlave.tail = "none", $activeSlave.tailColor = "none", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $activeSlave.health -= 10, $surgeryType = "tailInterface">> + <<set $activeSlave.PTail = 1, $activeSlave.tail = "none", $activeSlave.tailColor = "none", cashX(forceNeg($surgeryCost), "slaveSurgery", $activeSlave), $surgeryType = "tailInterface">> + <<run healthDamage($activeSlave, 10)>> <<include "Surgery Degradation">> <<case "modT" "sexT" "combatT">> <<if $activeSlave.PTail == 0>> diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw index 769c5c50d26..63749f2e691 100644 --- a/src/uncategorized/newSlaveIntro.tw +++ b/src/uncategorized/newSlaveIntro.tw @@ -696,7 +696,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<set $activeSlave.brand[_brandTarget] = $brandDesign.primary>> <<set $activeSlave.devotion -= 5>> <<set $activeSlave.trust -= 10>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<if canDoAnal($activeSlave)>> <<= VCheck.Anal()>> <</if>> @@ -767,7 +767,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << When $he <<if canHear($activeSlave)>>hears<<else>>learns<</if>> $he'll be heading to surgery immediately, $he bursts into @@.hotpink;tears of gratitude@@ and makes to run around your desk to hug you before checking $himself. $He clearly doesn't want to put a foot wrong and isn't sure it would be appropriate. You solve $his dilemma by meeting $him with an embrace. $He @@.mediumaquamarine;cries into your chest@@ and promises to be your best slave. The surgery does affect $his @@.red;health@@ a little. <</replace>> <<set $activeSlave.devotion += 15>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<set $activeSlave.trust += 10>> <<set $activeSlave.vagina = 0>> <<set $activeSlave.dick = 0>> @@ -802,7 +802,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <</replace>> <<set $activeSlave.devotion -= 10>> <<set $activeSlave.trust -= -10>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<set $activeSlave.balls = 0>> <<= VCheck.Anal()>> <</link>> @@ -873,7 +873,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<set $activeSlave.devotion += 4>> <<set $activeSlave.trust += 4>> <<set $activeSlave.voice += 1>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<= VCheck.Anal()>> <</link>> <<if canDoAnal($activeSlave)>> @@ -1140,7 +1140,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <br>//Have $him changed...// -<<if $activeSlave.health < -20>> +<<if $activeSlave.health.condition < -20>> <br> <<link "Address $his medical issues">> <<replace "#introResult">> @@ -1150,7 +1150,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<= FutureSocieties.Change("Paternalist", 2)>> <</if>> <</replace>> - <<set $activeSlave.health += 10>> + <<run improveCondition($activeSlave, 10)>> <<set $activeSlave.trust += 4>> <</link>> <</if>> @@ -1232,7 +1232,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<set $activeSlave.brand[_brandTarget] = $brandDesign.primary>> <<set $activeSlave.devotion -= 5>> <<set $activeSlave.trust -= 10>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <</link>> @@ -1263,7 +1263,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<run cashX(forceNeg($modCost), "slaveMod", $activeSlave)>> /* Let's just bill once, for the whip and disinfectant. */ <<set $activeSlave.devotion -= 5>> <<set $activeSlave.trust -= 10>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<replace "#introResult">> You drag $him to the <<if $cellblock>> @@ -1323,7 +1323,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<run App.Medicine.Modification.addScar($activeSlave, _scarTarget, $scarDesign.primary)>> <<set $activeSlave.devotion -= 5>> <<set $activeSlave.trust -= 10>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <</link>> <<if $arcologies[0].FSHedonisticDecadence >= 50 && $activeSlave.behavioralFlaw == "anorexic" && $activeSlave.weight < 10>> @@ -1380,7 +1380,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<set $activeSlave.pregKnown = 0>> <<run SetBellySize($activeSlave)>> <<set $activeSlave.ovaries = 0>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <</link>> <</if>> @@ -1413,7 +1413,8 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <</if>> <</replace>> <<set $activeSlave.balls = 0, $activeSlave.scrotum = 0>> - <<set $activeSlave.health -= 10, $activeSlave.trust -= 50>> + <<run healthDamage($activeSlave, 10)>> + <<set $activeSlave.trust -= 50>> <</link>> | <</if>> <<link "Remove $his genitalia">> @@ -1427,8 +1428,8 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <</if>> <</replace>> <<set $activeSlave.chastityPenis = 0, $activeSlave.chastityVagina = 0, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.ovaries = 0, $activeSlave.preg = -2, $activeSlave.pregKnown = 0, $activeSlave.pregSource = 0, $activeSlave.pregType = 0, $activeSlave.pregWeek = -4, $activeSlave.vagina = -1, $activeSlave.skill.vaginal = 0>> - <<run SetBellySize($activeSlave)>> - <<set $activeSlave.health -= 10, $activeSlave.trust = Math.clamp($activeSlave.trust-100, -100, 100)>> + <<run SetBellySize($activeSlave), healthDamage($activeSlave, 10)>> + <<set $activeSlave.trust = Math.clamp($activeSlave.trust-100, -100, 100)>> <</link>> <</if>> @@ -1441,7 +1442,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <</replace>> <<set $activeSlave.heels = 1>> <<set $activeSlave.devotion -= 5>> - <<set $activeSlave.health -= 10>> + <<run healthDamage($activeSlave, 10)>> <<set $activeSlave.trust -= 20>> <</link>> <</if>> @@ -1450,7 +1451,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <br> <<link "Implant $him with slow release lactation drugs">> <<replace "#introResult">> - You <<if $activeSlave.devotion > 20>> guide the compliant $desc <<else>>have the $desc restrained and brought<</if>> to the remote surgery. The procedure is quick and @@.red;minimally invasive@@<<set $activeSlave.health -= 10>>. Once the process is complete and the anesthesia subsides $he begins to feel a rising pressure within $his <<if $activeSlave.boobs > 2000 >>gigantic udders<<elseif $activeSlave.boobs > 900>>plentiful bosom<<elseif $activeSlave.boobs > 400>>healthy breasts<<else>>small breasts<</if>>. You then <<if $activeSlave.devotion > 20>>instruct $him to rest<<else>>have $him restrained<</if>> beside your desk until further notice. After a few hours $his increasing discomfort becomes obvious, and white droplets begin to appear across $his nipples and areola. + You <<if $activeSlave.devotion > 20>> guide the compliant $desc <<else>>have the $desc restrained and brought<</if>> to the remote surgery. The procedure is quick and @@.red;minimally invasive@@<<set $activeSlave.health.condition -= 10>>. Once the process is complete and the anesthesia subsides $he begins to feel a rising pressure within $his <<if $activeSlave.boobs > 2000 >>gigantic udders<<elseif $activeSlave.boobs > 900>>plentiful bosom<<elseif $activeSlave.boobs > 400>>healthy breasts<<else>>small breasts<</if>>. You then <<if $activeSlave.devotion > 20>>instruct $him to rest<<else>>have $him restrained<</if>> beside your desk until further notice. After a few hours $his increasing discomfort becomes obvious, and white droplets begin to appear across $his nipples and areola. <<if $activeSlave.devotion > 20>> <<if $activeSlave.fetish == "boobs">> <<if $activeSlave.fetishKnown == 0>> diff --git a/src/uncategorized/nextWeek.tw b/src/uncategorized/nextWeek.tw index 75b7a0a3049..24cf755ab15 100644 --- a/src/uncategorized/nextWeek.tw +++ b/src/uncategorized/nextWeek.tw @@ -205,7 +205,7 @@ <<set $slaves[_i].fetishStrength = Math.clamp($slaves[_i].fetishStrength.toFixed(1), 0, 100)>> <</if>> <<set $slaves[_i].weight = Math.clamp($slaves[_i].weight.toFixed(1), -100, 200)>> - <<set $slaves[_i].health = Number($slaves[_i].health.toFixed(1))>> + <<set $slaves[_i].health.condition = Number($slaves[_i].health.condition.toFixed(1))>> <<set $slaves[_i].butt = Number($slaves[_i].butt.toFixed(1))>> <<set $slaves[_i].muscles = Math.clamp($slaves[_i].muscles.toFixed(1), -100, 100)>> <<set $slaves[_i].lips = Math.clamp($slaves[_i].lips.toFixed(1), 0, 100)>> diff --git a/src/uncategorized/pBombing.tw b/src/uncategorized/pBombing.tw index 7d7df0e2dd4..a2a5d4f7207 100644 --- a/src/uncategorized/pBombing.tw +++ b/src/uncategorized/pBombing.tw @@ -69,8 +69,7 @@ The implant is small, and went off too far ahead to do anything more than stun. <<else>> $Bodyguard.slaveName hurriedly <<if ($Bodyguard.muscles+$Bodyguard.height-100)/25 > 5>>gets $his light machine gun firing. The weapon's high rate of fire tears through the first enemy but rapidly pulls $his aim off target.<<elseif ($Bodyguard.muscles+$Bodyguard.height-100)/25 > 4>>brings up $his battle rifle. $He hits the nearest assailant with $his first round and then fires again, but the weapon's powerful recoil sends it over $his target.<<elseif ($Bodyguard.muscles+$Bodyguard.height-100)/25 > 3>>brings up $his submachine gun. $He points it at the nearest assailant and pulls the trigger; the weapon's high rate of fire tears through the enemy but rapidly pulls $his aim off target.<<else>>draws $his machine pistol. $He points it one-handed at the nearest assailant and pulls the trigger; the weapon's high rate of fire tears through the enemy but rapidly pulls $his aim off target.<</if>> By the time $he pulls the muzzle back down the others are on $him. $His sword is very sharp, but so are $his assailants' weapons, and everyone is unskilled. As often happens with bladed fights between unarmored novices, everyone dies, and so fast that you cannot intervene. $Bodyguard.slaveName expires gasping in agony over multiple deep wounds to $his abdomen, but still manages to lock eyes with you as $he does. There is some @@.red;minor property damage@@ to repair, but no lasting harm. - <<run cashX(-1000, "event", $Bodyguard)>> - <<set $Bodyguard.health -= 1000>> + <<run cashX(-1000, "event", $Bodyguard), healthDamage($Bodyguard, 1000)>> <<set $activeSlave = $Bodyguard>> <<= removeActiveSlave() >> <</if>> /* closes $Bodyguard != 0 */ -- GitLab