diff --git a/js/002-config/fc-js-init.js b/js/002-config/fc-js-init.js index c1925ba032bc87ab8266d871aafdb382f069d1f1..b7dac2c1fb2bf83b954c3976fb4c5e9e243acb18 100644 --- a/js/002-config/fc-js-init.js +++ b/js/002-config/fc-js-init.js @@ -8,7 +8,10 @@ App.Arcology = { Cell: {}, }; App.Art = {}; -App.Data = {}; +App.Data = { + Weather: {}, + HeroSlaves: {}, +}; App.Debug = {}; App.Encyclopedia = {}; App.Encyclopedia.Entries = {}; diff --git a/js/003-data/gameVariableData.js b/js/003-data/gameVariableData.js index c1a2c6c96677674d68cad6edbc9781f5c3705008..5badc7054330bdb23de404376e8394c318a987a0 100644 --- a/js/003-data/gameVariableData.js +++ b/js/003-data/gameVariableData.js @@ -563,8 +563,6 @@ App.Data.resetOnNGPlus = { upgradeMultiplierMedicine: 0, upgradeMultiplierTrade: 0, nationalities: {}, - heroSlaves: [], - baseHeroSlave: {}, JobIDArray: {}, averageTrust: 0, averageDevotion: 0, @@ -1405,6 +1403,7 @@ App.Data.resetOnNGPlus = { DefaultBirthDestination: "individually decided fates", abbreviateHormoneBalance: 2, legendaryFacility: 0, + heroSlavesPuchased: [], fcnn: [ ("...coming up at the top of the hour: Catgirl slaves, science fact or science fiction..."), ("...coming up at the top of the hour: Malnockestivi Smith, Free Cities' first MtFtMtFtH transgendered person..."), diff --git a/slave variables documentation - Pregmod.txt b/slave variables documentation - Pregmod.txt index 0be7789f1542c8608c92b63a5aae2d00ff57d41a..d617cb0e1fbe0c66469bdb009d622d2883e3e234 100644 --- a/slave variables documentation - Pregmod.txt +++ b/slave variables documentation - Pregmod.txt @@ -3881,16 +3881,11 @@ How to set up your own hero slave. -The default slave template used is defined in src/js/SlaveState.js Making your slave; add their name to the following, then go down the documentation adding in your changes. --each variable must be separated from the last by a comma followed by a space --each variable must be assigned to _HS +-each variable must be separated from the last by a comma -if your slave's variable matches the default, you do not have to list it -strings MUST be in " or your slave will not compile properly -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "STANDARD", _HS.birthName = "STANDARD", _HS.ID = _i++>> -<<set $heroSlaves.push(_HS)>> - -Once finished, add it into "customSlavesDatabase". +Once finished, add it into "src/npc/databases/customSlavesDatabase.js". To test if your slave is functioning, start up a normal game, swap to cheat mode, max your rep, and view other slaveowner's stock in the slave market. If you cannot find your slave in the list, and you didn't start the game with your slave, you should double check your slave for errors. If a slave named "Blank" is present, then you likely messed up. Once you find your slave, check their description to make sure it is correct. If it is not, you messed up somewhere in setting them up. diff --git a/src/data/backwardsCompatibility/BackwardsCompatibility.tw b/src/data/backwardsCompatibility/BackwardsCompatibility.tw index 29dd08a4e8091a7999a64e4886aeba101d2a1042..37b5ad72b811b85e2ef9c0d9390a709f554999b8 100644 --- a/src/data/backwardsCompatibility/BackwardsCompatibility.tw +++ b/src/data/backwardsCompatibility/BackwardsCompatibility.tw @@ -24,17 +24,6 @@ <<= App.Update.slaveRecords()>> </div> -<div> - <<= App.Update.specialSlaveRecords()>> -</div> - -<div> - <<= App.Update.HeroSlavesCleanup()>> - <<run $heroSlaves.forEach(function(s) {if (s.pregType > 0 && Array.isArray(s.womb)) delete s.womb;})>> - <<set $activeSlave = BaseSlave()>> - <<set $baseHeroSlave = clone($activeSlave)>> -</div> - <div> <<= App.Update.RAassistantData()>> </div> diff --git a/src/data/backwardsCompatibility/backwardsCompatibility.js b/src/data/backwardsCompatibility/backwardsCompatibility.js index 5344f3b4a5e70af740a2c8334bf61aa94fd6aa2e..a585ded98cd4536915b9cc2b50bdd660c51badbb 100644 --- a/src/data/backwardsCompatibility/backwardsCompatibility.js +++ b/src/data/backwardsCompatibility/backwardsCompatibility.js @@ -1125,19 +1125,6 @@ App.Update.slaveRecords = function() { return r; }; -App.Update.specialSlaveRecords = function() { - let r = ""; - if (V.heroSlaves.length > 0) { - r += `Checking and fixing special slave records... `; - V.heroSlaves.forEach((slave) => { - App.Entity.Utils.SlaveDataSchemeCleanup(slave); - /* No SlaveDatatypeCleanup() call as hero slaves are not SlaveState objects */ - }); - r += ` Done!<br> `; - } - return r; -}; - App.Update.genePoolRecords = function() { let r = `Updating gene pool records... `; for (let bci = 0; bci < V.genePool.length; bci++) { @@ -1271,12 +1258,6 @@ App.Update.oldVersions = function() { V.slaves.forEach(s => { s.skill.whoring = s.skill.whore / 2; }); V.tanks.forEach(s => { s.skill.whoring = s.skill.whore / 2; }); V.cribs.forEach(s => { s.skill.whoring = s.skill.whore / 2; }); - V.heroSlaves.forEach(hs => { - if (hs.hasOwnProperty("skill") && hs.skill.hasOwnProperty("whore")) { - hs.skill.whoring = hs.skill.whore; - delete hs.skill.whore; - } - }); } /* unify cybermod & vanilla */ /* limbs */ @@ -1917,42 +1898,6 @@ App.Update.oldVersions = function() { return r; }; -App.Update.HeroSlavesCleanup = function() { - V.heroSlaves.forEach(function(s) { - /* Nationalities, races, surnames random fill */ - if (!s.nationality) { - /* Check for a pre-set race and if the nationality fits, else regenerate */ - if (s.race && setup.filterRacesLowercase.includes(s.race)) { - raceToNationality(s); - } else { - s.nationality = hashChoice(V.nationalities); - } - } - if (!s.race || !setup.filterRacesLowercase.includes(s.race)) { - nationalityToRace(s); - } - if (!s.birthSurname && s.birthSurname !== "") { - s.birthSurname = (setup.surnamePoolSelector[s.nationality + "." + s.race] || - setup.surnamePoolSelector[s.nationality] || - setup.whiteAmericanSlaveSurnames).random(); - } - if (!s.birthName && s.birthName !== "") { - s.birthName = (setup.namePoolSelector[s.nationality + "." + s.race] || - setup.namePoolSelector[s.nationality] || - setup.whiteAmericanSlaveNames).random(); - } - generatePronouns(s); - if (s.geneMods.NCS === undefined) { - s.geneMods.NCS = 0; - } - if (s.geneMods.rapidCellGrowth === undefined) { - s.geneMods.rapidCellGrowth = 0; - } - // WombInit(s); - }); - return; -}; - App.Update.cleanUp = function() { /* leave this at the bottom of BC */ if (V.releaseID < App.Version.release) { diff --git a/src/events/intro/initNationalities.tw b/src/events/intro/initNationalities.tw index 31bd50290d3cfff7f8f853eaf7e312a0343f004b..ef9fdaa6427b99d000b579725d019e546d289d9b 100644 --- a/src/events/intro/initNationalities.tw +++ b/src/events/intro/initNationalities.tw @@ -910,27 +910,5 @@ <</if>> <</if>> -/* SET HEROES */ - -<<set $heroSlaves = []>> -<<set $activeSlave = BaseSlave()>> -<<set $baseHeroSlave = clone($activeSlave)>> - -<<if ($seeDicks > 0) && ($seeDicks < 100)>> - <<include "D Slaves Database">> - <<include "DD Slaves Database">> - <<include "DF Slaves Database">> -<<elseif $seeDicks == 100>> - <<include "DD Slaves Database">> -<<else>> - <<include "D Slaves Database">> - <<include "DF Slaves Database">> -<</if>> -<<include "custom Slaves Database">> -<<= App.Update.HeroSlavesCleanup()>> - -<<set $activeSlave = 0>> -<<set $activeChild = 0>> - <<set $showStartingGirlsExplanation = 1>> <<goto "Starting Girls">> diff --git a/src/js/heroCreator.js b/src/js/heroCreator.js index 288945086bd01529f661bf7ec46770d99117c93e..bbba28fe383c278a8a4470a59237e1ad2ec9fcb3 100644 --- a/src/js/heroCreator.js +++ b/src/js/heroCreator.js @@ -1,9 +1,52 @@ +/** creates an array from App.Data.HeroSlaves that will be similar to the old $heroSlaves. + * @returns {Array} + */ +App.Utils.buildHeroArray = function() { + let array; + $.wiki(`<<include "custom Slaves Database">>`); + if (V.seeExtreme === 1) { + array = App.Data.HeroSlaves.D.concat( + App.Data.HeroSlaves.DD, + App.Data.HeroSlaves.DF, + App.Data.HeroSlaves.Dextreme, + App.Data.HeroSlaves.DDextreme, + App.Data.HeroSlaves.DFextreme, + V.heroSlaves + ); + } else { + array = App.Data.HeroSlaves.D.concat( + App.Data.HeroSlaves.DD, + App.Data.HeroSlaves.DF, + V.heroSlaves + ); + } + delete V.heroSlaves; + + for (let hero = 0; hero < array.length; hero++) { + if (V.seePreg !== 1 && [900089, 900102].includes(array[hero].ID)) { + array.splice(hero, 1); + hero--; + continue; + } + if (V.familyTesting !== 1 && [900110, 900111].includes(array[hero].ID)) { + array.splice(hero, 1); + hero--; + continue; + } + if (V.heroSlavesPuchased.includes(array[hero].ID)) { + array.splice(hero, 1); + hero--; + continue; + } + } + return array; +}; + /** * @param {App.Entity.SlaveState} heroSlave - * @param {App.Entity.SlaveState} baseHeroSlave * @returns {App.Entity.SlaveState} */ -App.Utils.getHeroSlave = function(heroSlave, baseHeroSlave) { +App.Utils.getHeroSlave = function(heroSlave) { function repairLimbs(slave) { if (slave.hasOwnProperty("removedLimbs")) { if (slave.removedLimbs[0] === 1) { @@ -22,19 +65,123 @@ App.Utils.getHeroSlave = function(heroSlave, baseHeroSlave) { } } - const newSlave = clone(baseHeroSlave); let albinismOverride = null; if (heroSlave.albinismOverride !== null) { albinismOverride = heroSlave.albinismOverride; delete heroSlave.albinismOverride; } + if (!heroSlave.hasOwnProperty("birthWeek")) { + heroSlave.birthWeek = random(0, 51); + } + // Nationalities, races, surnames random fill + if (!heroSlave.nationality) { + // Check for a pre-set race and if the nationality fits, else regenerate + if (heroSlave.race && setup.filterRacesLowercase.includes(heroSlave.race)) { + raceToNationality(heroSlave); + } else { + heroSlave.nationality = hashChoice(V.nationalities); + } + } + if (!heroSlave.race || !setup.filterRacesLowercase.includes(heroSlave.race)) { + nationalityToRace(heroSlave); + } + if (!heroSlave.birthSurname && heroSlave.birthSurname !== "") { + heroSlave.birthSurname = (setup.surnamePoolSelector[heroSlave.nationality + "." + heroSlave.race] || + setup.surnamePoolSelector[heroSlave.nationality] || + setup.whiteAmericanSlaveSurnames).random(); + } + if (!heroSlave.birthName && heroSlave.birthName !== "") { + heroSlave.birthName = (setup.namePoolSelector[heroSlave.nationality + "." + heroSlave.race] || + setup.namePoolSelector[heroSlave.nationality] || + setup.whiteAmericanSlaveNames).random(); + } + generatePronouns(heroSlave); + if (heroSlave.geneMods === undefined) { + heroSlave.geneMods = {}; + } + if (heroSlave.geneMods.NCS === undefined) { + heroSlave.geneMods.NCS = 0; + } + if (heroSlave.geneMods.rapidCellGrowth === undefined) { + heroSlave.geneMods.rapidCellGrowth = 0; + } + + // WombInit(heroSlave); + const newSlave = BaseSlave(); deepAssign(newSlave, heroSlave); + V.heroSlaveID = heroSlave.ID; + newSlave.ID = generateSlaveID(); newSlave.albinismOverride = albinismOverride; repairLimbs(newSlave); generatePuberty(newSlave); + newSlave.weekAcquired = V.week; + if (!newSlave.pubicHColor) { + newSlave.pubicHColor = newSlave.hColor; + } + if (!newSlave.underArmHColor) { + newSlave.underArmHColor = newSlave.hColor; + } + if (newSlave.override_Race !== 1) { + newSlave.origRace = newSlave.race; + } + if (newSlave.override_Eye_Color !== 1) { + resetEyeColor(newSlave, "both"); + } + if (newSlave.override_H_Color !== 1) { + newSlave.hColor = getGeneticHairColor(newSlave); + } + if (newSlave.override_Arm_H_Color !== 1) { + newSlave.underArmHColor = getGeneticHairColor(newSlave); + } + if (newSlave.override_Pubic_H_Color !== 1) { + newSlave.pubicHColor = getGeneticHairColor(newSlave); + } + if (newSlave.override_Brow_H_Color !== 1) { + newSlave.eyebrowHColor = getGeneticHairColor(newSlave); + } + if (newSlave.override_Skin !== 1) { + newSlave.skin = getGeneticSkinColor(newSlave); + } + + SetBellySize(newSlave); + if (V.familyTesting === 1) { + /* special slaves exceptions to keep siblings sensible */ + if (newSlave.mother === -9999 && newSlave.father === -9998) { + /* The twins — Camille & Kennerly */ + for (_k = 0; _k < V.slaves.length; _k++) { + if (areSisters(V.slaves[_k], newSlave) > 0) { + newSlave.actualAge = V.slaves[_k].actualAge, newSlave.physicalAge = newSlave.actualAge, newSlave.visualAge = newSlave.actualAge, newSlave.ovaryAge = newSlave.actualAge, newSlave.birthWeek = V.slaves[_k].birthWeek; + } + } + } + if (newSlave.mother === -9997 && newSlave.father === -9996) { + /* The siblings — Elisa & Martin */ + for (_k = 0; _k < V.slaves.length; _k++) { + if (areSisters(V.slaves[_k], newSlave) > 0) { + if (newSlave.birthName === "Elisa") { + newSlave.actualAge = V.slaves[_k].actualAge - 1, newSlave.physicalAge = newSlave.actualAge, newSlave.visualAge = newSlave.actualAge, newSlave.ovaryAge = newSlave.actualAge; + } else if (newSlave.birthName === "Martin") { + newSlave.actualAge = V.slaves[_k].actualAge + 1, newSlave.physicalAge = newSlave.actualAge, newSlave.visualAge = newSlave.actualAge, newSlave.ovaryAge = newSlave.actualAge; + } + } + } + } + if (newSlave.mother === -9995 && newSlave.father === -9994) { + /* The fruit siblings — Green & Purple Grape */ + for (_k = 0; _k < V.slaves.length; _k++) { + if (areSisters(V.slaves[_k], newSlave) > 0) { + if (newSlave.birthName === "Green Grape") { + newSlave.actualAge = V.slaves[_k].actualAge - 5, newSlave.physicalAge = newSlave.actualAge, newSlave.visualAge = newSlave.actualAge, newSlave.ovaryAge = newSlave.actualAge; + } else if (newSlave.birthName === "Purple Grape") { + newSlave.actualAge = V.slaves[_k].actualAge + 5, newSlave.physicalAge = newSlave.actualAge, newSlave.visualAge = newSlave.actualAge, newSlave.ovaryAge = newSlave.actualAge; + } + } + } + } + } + nationalityToAccent(newSlave); return newSlave; }; - /** * Marks limbs to be removed when going trough App.Utils.getHeroSlave. * Does not actually remove limbs, only use on slaves that go through App.Utils.getHeroSlave!! diff --git a/src/npc/acquisition.tw b/src/npc/acquisition.tw index 1ee89d8d51523be72bf93696c396c7d2bf68f0ee..9044a2047328f76057fc847154f43b70e53cc924 100644 --- a/src/npc/acquisition.tw +++ b/src/npc/acquisition.tw @@ -216,7 +216,7 @@ the new owner of $arcologies[0].name. I will offer useful information whenever p <br><br> The previous owner seems to have left in something of a hurry. <<set _valueGiven = 0>> -<<set $heroSlaves = $heroSlaves.shuffle()>> +<<set _heroSlaves = App.Utils.buildHeroArray().shuffle()>> <<if $cheatMode == 1>> Since you've elected to take over an arcology with special advantages, you've acquired a very special group of slaves. <<include [[Cheatmode Database]]>> @@ -759,12 +759,12 @@ The previous owner seems to have left in something of a hurry. <</switch>> <<else>> They could not get all of their personal effects away. Since they <<if $targetArcology.type == "Multiculturalist">>tried to sample different kinds of sexual slavery<<else>>did not have the time in control of the arcology to develop a specific stable of sex slaves<</if>>, their slaves were quite varied. - <<for $j = 0; $j < $heroSlaves.length; $j++>> + <<for $j = 0; $j < _heroSlaves.length; $j++>> <<if _valueOwed - _valueGiven <= 5000>> <<break>> <</if>> - <<set $activeSlave = App.Utils.getHeroSlave($heroSlaves[$j], $baseHeroSlave)>> - <<run $heroSlaves.splice($j,1)>> + <<set $activeSlave = App.Utils.getHeroSlave(_heroSlaves[$j])>> + <<run _heroSlaves.splice($j,1)>> <<set _slaveCost = slaveCost($activeSlave)>> <<if _valueGiven + _slaveCost < _valueOwed*2>> <<run nationalityToAccent($activeSlave)>> diff --git a/src/npc/databases/customSlavesDatabase.tw b/src/npc/databases/customSlavesDatabase.tw index 099827349cf72452035b94ec3da74b6d6b66b482..a2aba917737e7409517843321368077911e43166 100644 --- a/src/npc/databases/customSlavesDatabase.tw +++ b/src/npc/databases/customSlavesDatabase.tw @@ -1,3 +1,11 @@ :: custom Slaves Database +<<set $heroSlaves = []>> <<set _i = 1000000>> +/* +<<set _HS = App.Entity.SlaveState.makeSkeleton()>> +<<set _HS.slaveName = "McChesterton", _HS.birthName = "Testy", _HS.origin = "$He is obsessed with testing new customizations of $his body.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, setHealth(_HS, 20), _HS.devotion = 100, _HS.weight = 25, _HS.origHColor = "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.eyewear = "corrective glasses">> +<<run eyeSurgery(_HS, "both", "blur")>> +<<set $heroSlaves.push(_HS)>> + +/*To add custom slaves, try to use the format of the above example. Add new slaves below this line. If you wish to add more slaves later, always add them at the bottom of the file. IDs are assigned automatically and in order, and you want your new slave to have a unique ID instad of someone else's*/ \ No newline at end of file diff --git a/src/npc/databases/dSlavesDatabase.js b/src/npc/databases/dSlavesDatabase.js new file mode 100644 index 0000000000000000000000000000000000000000..de5303f3ad30664879b03e88c10c7e1188586e7d --- /dev/null +++ b/src/npc/databases/dSlavesDatabase.js @@ -0,0 +1,4503 @@ +/* eslint-disable camelcase */ +App.Data.HeroSlaves.D = [ + // start 900000 + { + ID: 900001, + slaveName: "Rose", + birthName: "Rose", + origin: "$He is a former maid with an unsettling obsessive streak.", + actualAge: 24, + physicalAge: 24, + visualAge: 24, + ovaryAge: 24, + health: {condition: 20}, + devotion: 100, + weight: 25, + origHColor: "chestnut", + pubicHColor: "chestnut", + hLength: 30, + hStyle: "shoulder-length and in a bun", + boobs: 700, + butt: 3, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + vaginal: 15, + oral: 15, + anal: 15, + entertainment: 1 + }, + clothes: "a nice maid outfit", + intelligence: 20, + intelligenceImplant: 30, + attrXY: 40, + fetish: "submissive", + career: "a maid", + eyewear: "corrective glasses", + eye: { + left: { + vision: 1 + }, + right: { + vision: 1 + } + } + }, + /* maid dress, Excellent house slave, Will return if sold*/ + /* Added origin, tweaked stats, made $him Submissive -BoneyM*/ + { + ID: 900002, + slaveName: "Red", + birthName: "Red", + actualAge: 22, + physicalAge: 22, + visualAge: 22, + ovaryAge: 22, + health: {condition: 20}, + devotion: 100, + eye: {origColor: "blue"}, + origHColor: "red", + pubicHColor: "red", + origSkin: "light", + hStyle: "long and tied back", + boobs: 400, + butt: 2, + vaginaLube: 1, + anus: 3, + ovaries: 1, + skill: {anal: 100}, + attrXY: 40, + fetish: "buttslut", + fetishKnown: 1 + }, + /* changed eyes to blue, skin to light, double checked other stats*/ + { + ID: 900003, + slaveName: "Jewels", + origin: "$He grew up sheltered and submissive, making $him an easy target for enslavement.", + health: {condition: 20}, + devotion: -25, + origHColor: "light brown", + pubicHColor: "light brown", + origSkin: "pale", + hStyle: "long", + boobs: 650, + butt: 3, + vaginaLube: 1, + ovaries: 1, + intelligence: 30, + attrXY: 40, + fetish: "submissive", + fetishKnown: 1, + height: 165 + }, + /* changed fetish from humiliation to submission, per original slave description, double checked other stats*/ + /* Added origin -BoneyM*/ + { + ID: 900003, + slaveName: "Reine", + origin: "$He is a former mercenary that ended up on a losing side in the byzantine Free City power games.", + actualAge: 28, + physicalAge: 28, + visualAge: 28, + ovaryAge: 28, + health: {condition: 60}, + devotion: -75, + height: 190, + muscles: 20, + race: "white", + origHColor: "red", + hStyle: "long and wild", + boobs: 500, + butt: 2, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + vaginal: 35, + oral: 35, + anal: 35, + combat: 1 + }, + intelligence: -20, + attrXY: 40, + fetish: "submissive", + fetishStrength: 100, + behavioralFlaw: "arrogant", + custom: {tattoo: "$He has beautiful Celtic warrior's tattoos in woad blue."}, + career: "a mercenary" + }, + /* Added origin, made some assumptions about $his background, changed fetish to submissive, added arrogant flaw -BoneyM*/ + { + ID: 900005, + slaveName: "Luna", + birthName: "Luna", + health: {condition: 20}, + height: 157, + origHColor: "black", + pubicHColor: "black", + origSkin: "pale", + hLength: 20, + hStyle: "chin-length with bangs over one eye", + boobs: 650, + boobsImplant: 600, + boobsImplantType: "normal", + butt: 3, + buttTat: "tribal patterns", + vagina: 1, + vaginaLube: 1, + vaginaPiercing: 1, + anus: 1, + ovaries: 1, + earPiercing: 1, + nosePiercing: 1, + skill: { + vaginal: 35, + oral: 35, + anal: 35 + }, + clothes: "uncomfortable straps", + attrXY: 40 + }, + /* 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*/ + { + ID: 900006, + slaveName: "Skye", + birthName: "Skye", + origin: "$He was fresh from the slave markets when you acquired $him.", + actualAge: 19, + physicalAge: 19, + visualAge: 19, + ovaryAge: 19, + health: {condition: 20}, + devotion: 20, + weight: -20, + height: 155, + origHColor: "black", + pubicHColor: "black", + origSkin: "pale", + hLength: 40, + hStyle: "chest-length", + boobs: 500, + butt: 2, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + nosePiercing: 2, + skill: { + vaginal: 15, + oral: 15, + anal: 15, + }, + attrXY: 40, + fetish: "submissive", + fetishKnown: 1 + }, + /* Corrected piercings, added origin -BoneyM*/ + { + ID: 900007, + slaveName: "Piggy", + birthName: "Chloë", + origin: "$He was once a celebrity that protested the existence of slavery, but has now become a slave $himself.", + health: {condition: 20}, + devotion: -75, + weight: -20, + eye: {origColor: "green"}, + origHColor: "dirty blonde", + pubicHColor: "dirty blonde", + origSkin: "white", + hLength: 10, + boobs: 300, + butt: 1, + vagina: 1, + vaginaLube: 1, + ovaries: 1, + skill: {oral: 100}, + intelligence: 20, + intelligenceImplant: 30, + attrXY: 40, + fetish: "cumslut", + fetishStrength: 100, + fetishKnown: 1, + behavioralFlaw: "bitchy" + }, + /* Added origin, added bitchy, corrected eye color -BoneyM*/ + { + ID: 900008, + slaveName: "Sarah", + birthName: "Sarah", + actualAge: 20, + physicalAge: 20, + visualAge: 20, + ovaryAge: 20, + health: {condition: 20}, + devotion: 20, + height: 175, + eye: {origColor: "grey"}, + origHColor: "dirty blonde", + pubicHColor: "dirty blonde", + origSkin: "white", + hLength: 10, + boobs: 400, + butt: 2, + face: 15, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + vaginal: 15, + oral: 15, + anal: 15, + combat: 1, + }, + attrXX: 80, + attrXY: 40, + behavioralFlaw: "odd", + 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."} + }, + /* Pretty face, barcodes on wrists, fighter*/ + /* Corrected eyes, added combat skill, bisexual and odd, tweaked face -BoneyM*/ + { + ID: 900009, + slaveName: "Cuntbitch", + birthName: "", + birthSurname: "", + origin: "$He was a slave trader until $he was betrayed by ambitious underlings and sold into enslavement.", + actualAge: 31, + physicalAge: 31, + visualAge: 31, + ovaryAge: 31, + health: {condition: 40}, + devotion: -100, + muscles: 20, + height: 183, + race: "black", + origHColor: "black", + pubicHColor: "black", + origSkin: "black", + hStyle: "long and curly", + boobs: 1400, + boobsImplant: 800, + boobsImplantType: "normal", + nipplesPiercing: 2, + boobsTat: "degradation", + butt: 6, + buttImplant: 3, + buttImplantType: "normal", + buttTat: "degradation", + lips: 35, + lipsPiercing: 2, + lipsTat: "degradation", + vagina: 1, + vaginaLube: 1, + vaginaPiercing: 1, + vaginaTat: "degradation", + anus: 1, + ovaries: 1, + anusTat: "degradation", + skill: { + vaginal: 100, + oral: 100, + anal: 100, + combat: 1, + }, + clothes: "restrictive latex", + shoes: "heels", + intelligence: -20, + attrXY: 40, + fetish: "humiliation", + fetishKnown: 1, + behavioralFlaw: "arrogant", + custom: {tattoo: "$He has several 'tribal' style tattoos on $his arms from before $his enslavement."}, + career: "a slaver" + }, + /* Set birth name to 'unknown', tweaked obedience downwards, corrected tattoo's, added combat skill, clothes and shoes, arrogant -BoneyM*/ + { + ID: 900010, + slaveName: "Catherine", + birthName: "Catherine", + origin: "$He came from a wealthy background, but $he sold $himself into slavery to slake $his desire to submit to men and dominate women.", + actualAge: 20, + physicalAge: 20, + visualAge: 20, + ovaryAge: 20, + health: {condition: 40}, + devotion: 20, + nationality: "American", + origHColor: "red", + pubicHColor: "red", + race: "white", + hLength: 25, + hStyle: "short and in a ponytail", + boobs: 800, + butt: 3, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + makeup: 1, + skill: { + vaginal: 100, + oral: 100, + anal: 100, + entertainment: 100 + }, + intelligence: 25, + intelligenceImplant: 30, + attrXX: 55, + attrXY: 60, + fetishKnown: 1, + behavioralFlaw: "arrogant", + eyewear: "corrective glasses", + eye: { + origColor: "blue", + left: { + vision: 1 + }, + right: { + vision: 1 + } + } + }, + /* corrected eye color, makeup, tweaked entertainskill, added 'arrogant' -BoneyM*/ + { + ID: 900011, + slaveName: "Lilly", + birthName: "Lilly", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: 30, + height: 155, + eye: {origColor: "green"}, + origHColor: "black", + pubicHColor: "black", + origSkin: "extremely pale", + hStyle: "long", + boobs: 300, + nipplesPiercing: 1, + butt: 3, + vagina: 3, + vaginaLube: 1, + vaginaPiercing: 1, + vaginaTat: "degradation", + anus: 3, + ovaries: 1, + skill: { + vaginal: 100, + oral: 100, + anal: 100 + }, + attrXY: 40, + hips: 2 + }, + { + ID: 900012, + slaveName: "Erica", + birthName: "Erica", + origin: "$He was sold into slavery after $his father was killed by political rivals.", + actualAge: 19, + physicalAge: 19, + visualAge: 19, + ovaryAge: 19, + health: {condition: -10}, + devotion: 15, + weight: -20, + height: 152, + markings: "freckled", + eye: {origColor: "blue"}, + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "fair", + hLength: 30, + hStyle: "shoulder length", + boobs: 300, + nipplesPiercing: 1, + butt: 1, + vagina: 1, + vaginaLube: 1, + clit: 4, + anus: 1, + ovaries: 1, + anusTat: "tribal patterns", + skill: { + vaginal: 15, + oral: 15, + anal: 15 + }, + intelligence: random(96, 99), + intelligenceImplant: 30, + attrXX: 80, + attrXY: 40, + fetishKnown: 1 + }, + /* corrected eyes, changed skin to 'freckled', tweaked height downward, added pseudophallus clit, added origin -BoneyM*/ + /* corrected skin to fair?, changed markings to 'freckled' Bane70 */ + { + ID: 900013, + slaveName: "Sylvia", + birthName: "Sylvia", + origin: "$He was born a slave and knows no other life.", + actualAge: 26, + physicalAge: 26, + visualAge: 26, + ovaryAge: 26, + nationality: "Stateless", + health: {condition: -10}, + devotion: 10, + origHColor: "black", + hLength: 10, + pubicHColor: "black", + override_Skin: 1, + origSkin: "spray tanned", + boobs: 500, + butt: 2, + vagina: 1, + vaginaLube: 1, + clitPiercing: 3, + clitSetting: "submissive", + ovaries: 1, + skill: { + vaginal: 15, + oral: 35 + }, + attrXY: 40, + fetishKnown: 1, + career: "a slave" + }, + /* Added origin, tweaked skills, added smart piercing set to submissive, removed buttslut -BoneyM*/ + { + ID: 900014, + slaveName: "Eryma", + birthName: "Eryma", + origin: "$He is a former gladiator that wagered $his freedom and lost.", + actualAge: 24, + physicalAge: 24, + visualAge: 24, + ovaryAge: 24, + health: {condition: 100}, + devotion: -30, + height: 175, + race: "white", + eye: {origColor: "blue"}, + origHColor: "blonde", + pubicHColor: "blonde", + override_Skin: 1, + origSkin: "sun tanned", + hStyle: "long", + boobs: 500, + butt: 2, + vaginaLube: 1, + ovaries: 1, + skill: { + combat: 1, + intelligence: 20, + intelligenceImplant: 30, + attrXY: 40, + fetish: "humiliation", + behavioralFlaw: "arrogant" + }, + /* fighter*/ + /* Added combat skill, changed eye color and rules, added origin, added arrogant -BoneyM*/ + }, + { + ID: 900015, + slaveName: "Amber", + birthName: "Amber", + origin: "$He is a former shut-in who built up enough debt to be sold into slavery after the death of $his parents.", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: -100, + weight: 40, + eye: {origColor: "blue"}, + origHColor: "red", + pubicHColor: "red", + origSkin: "pale", + hStyle: "long", + boobs: 800, + face: 15, + vaginaLube: 1, + ovaries: 1, + intelligence: 100, + intelligenceImplant: 30, + attrXX: 80, + attrXY: 40, + behavioralFlaw: "hates men", + career: "a shut-in" + }, + /* SJW*/ + /* Tweaked obedience downwards, increased weight and face, added origin, changed eye color, changed fetish to bisexual and added 'hates men' flaw -BoneyM*/ + { + ID: 900016, + slaveName: "Fio", + birthName: "Fio", + slaveSurname: "Rodan", + birthSurname: "Rodan", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: -100, + weight: -20, + height: 175, + hLength: 15, + override_Skin: 1, + origSkin: "sun tanned", + boobs: 500, + butt: 2, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + vaginal: 15, + oral: 15, + anal: 15 + }, + energy: 100, + attrXY: 40, + behavioralFlaw: "arrogant", + custom: {tattoo: "$He has a tribal tattoo from $his right elbow up the shoulder and across $his back."} + }, + /* Corrected tattoo syntax, added nympho and arrogant -BoneyM*/ + { + ID: 900017, + slaveName: "Kiki", + birthName: "Kiki", + origin: "$He is a shinobi, and fanatically loyal to $his master.", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: 100, + weight: -20, + height: 175, + nationality: "Japanese", + race: "asian", + origHColor: "black", + override_H_Color: 1, + override_Pubic_H_Color: 1, + hColor: "light purple", + pubicHColor: "light purple", + hLength: 10, + hStyle: "short", + boobs: 500, + butt: 3, + buttTat: "tribal patterns", + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + vaginal: 35, + oral: 35, + anal: 35, + whoring: 35, + entertainment: 35, + combat: 1 + }, + intelligence: 30, + intelligenceImplant: 30, + attrXY: 40, + behavioralFlaw: "odd", + custom: {tattoo: "$He has Yakuza-style tattoos across $his back."}, + career: "an assassin" + }, + /* 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 */ + { + ID: 900018, + slaveName: "Lily", + birthName: "Lily", + health: {condition: 20}, + devotion: 10, + weight: -20, + height: 163, + race: "white", + eye: {origColor: "green"}, + origHColor: "red", + pubicHColor: "red", + origSkin: "pale", + hStyle: "long", + waist: -55, + boobs: 400, + butt: 2, + face: 55, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + vaginal: 35, + oral: 35, + anal: 35 + }, + attrXY: 40 + }, + /* Added green eyes, increased face, changed waist -BoneyM*/ + { + ID: 900019, + slaveName: "Terra", + birthName: "Terra", + assignment: "be a servant", + health: {condition: 20}, + devotion: -50, + weight: -20, + eye: {origColor: "amber"}, + origHColor: "brown", + override_H_Color: 1, + override_Pubic_H_Color: 1, + hColor: "purple", + pubicHColor: "purple", + origSkin: "pale", + hStyle: "long", + boobs: 400, + butt: 3, + vaginaLube: 1, + ovaries: 1, + clothes: "a nice maid outfit", + attrXX: 80, + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "hates men" + }, + /* Maid*/ + /* Added 'hates men', changed eyes to amber, made $him a servant -BoneyM*/ + { + ID: 900020, + slaveName: "Feri", + birthName: "Feri", + actualAge: 26, + physicalAge: 26, + visualAge: 26, + ovaryAge: 26, + health: {condition: 20}, + devotion: -75, + height: 175, + hStyle: "long", + origHColor: "brown", + pubicHColor: "brown", + origSkin: "pale", + boobs: 400, + butt: 2, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + vaginal: 15, + oral: 15, + anal: 15 + }, + intelligence: -20, + attrXY: 40, + fetish: "submissive", + fetishKnown: 1, + behavioralFlaw: "bitchy" + }, + /* Snarky*/ + /* Added 'submissive' and 'bitchy' -BoneyM*/ + { + ID: 900021, + slaveName: "Valentina", + birthName: "Valentina", + origin: "$He was once the bodyguard to a Russian drug lord, and was sold into slavery after his death by cocaine overdose.", + nationality: "Russian", + actualAge: 29, + physicalAge: 29, + visualAge: 29, + ovaryAge: 29, + health: {condition: 100}, + devotion: 100, + muscles: 100, + height: 175, + eye: {origColor: "green"}, + override_Skin: 1, + origSkin: "sun tanned", + hLength: 30, + hStyle: "shoulder length", + boobs: 650, + boobsImplant: 600, + boobsImplantType: "normal", + butt: 2, + lips: 25, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + oral: 15, + anal: 35, + combat: 1 + }, + intelligence: 30, + attrXY: 40, + fetish: "buttslut", + fetishKnown: 1, + custom: { + tattoo: "$He has a red star tattoo on $his back, and a hammer and sickle on $his right buttock.", + desc: "$He has a Slavic face with high cheekbones and a strong, pointed jaw. $He is a skilled martial artist." + }, + faceShape: "masculine", + career: "a bodyguard" + }, + /* Tweaked devotion up, changed eyes to green, corrected tattoo syntax, added combat skill -BoneyM*/ + { + ID: 900022, + slaveName: "Maria", + birthName: "Maria", + origin: "$He was sold into slavery on a legal technicality.", + actualAge: 28, + physicalAge: 28, + visualAge: 28, + ovaryAge: 28, + health: {condition: 40}, + devotion: 15, + height: 155, + race: "latina", + origHColor: "black", + pubicHColor: "black", + origSkin: "brown", + hLength: 25, + hStyle: "in a bob", + boobs: 650, + boobsImplant: 600, + boobsImplantType: "normal", + nipplesPiercing: 1, + butt: 2, + buttTat: "tribal patterns", + face: -15, + vagina: 1, + vaginaLube: 1, + vaginaPiercing: 2, + anus: 1, + analArea: 1, + ovaries: 1, + skill: { + vaginal: 35, + oral: 35, + anal: 35, + combat: 1 + }, + clothes: "attractive lingerie", + intelligence: 20, + intelligenceImplant: 30, + attrXY: 40, + sexualFlaw: "hates penetration" + }, + /* fighter*/ + /* Tweaked face down, added 'hates penetration' and combat skill -BoneyM*/ + { + ID: 900023, + slaveName: "Cecilia", + birthName: "Cecilia", + actualAge: 26, + physicalAge: 26, + visualAge: 26, + ovaryAge: 26, + health: {condition: 20}, + devotion: 100, + height: 178, + origHColor: "brown", + pubicHColor: "brown", + origSkin: "white", + hLength: 10, + boobs: 650, + nipplesPiercing: 2, + boobsTat: "tribal patterns", + butt: 3, + buttTat: "tribal patterns", + lipsPiercing: 2, + vagina: 1, + vaginaLube: 1, + vaginaPiercing: 1, + vaginaTat: "tribal patterns", + anus: 1, + ovaries: 1, + skill: { + vaginal: 100, + oral: 100, + anal: 100 + }, + intelligence: 10, + attrXY: 40 + }, + /* Tweaked devotion up, added arrogant -BoneyM*/ + { + ID: 900024, + slaveName: "Elise", + birthName: "Elise", + origin: "$He is a spoiled former rich $girl who has been discarded by several former owners for $his attitude.", + health: {condition: 20}, + devotion: -40, + height: 155, + race: "white", + eye: {origColor: "blue"}, + origHColor: "red", + pubicHColor: "red", + origSkin: "pale", + hLength: 10, + boobs: 400, + butt: 2, + buttTat: "tribal patterns", + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + anusTat: "tribal patterns", + intelligence: 20, + intelligenceImplant: 30, + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "arrogant", + sexualFlaw: "hates penetration" + }, + /* 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*/ + { + ID: 900025, + slaveName: "Santa", + birthName: "Santa", + origin: "$He claims that $he actually is Santa Claus.", + actualAge: 19, + physicalAge: 19, + visualAge: 19, + ovaryAge: 19, + health: {condition: 20}, + devotion: 10, + height: 155, + race: "white", + eye: {origColor: "blue"}, + origHColor: "strawberry blonde", + pubicHColor: "strawberry blonde", + origSkin: "white", + hStyle: "long", + boobs: 650, + butt: 3, + vagina: 1, + vaginaLube: 1, + ovaries: 1, + anusTat: "tribal patterns", + intelligence: -50, + intelligenceImplant: 30, + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "odd", + sexualFlaw: "hates penetration", + custom: {desc: "$He has a verbal tic that causes $him to say 'ho, ho, ho' frequently."}, + weight: 35, + clothes: "a Santa dress" + }, + /* Changed eye color, added odd, tweaked vaginalSkill, added origin -BoneyM*/ + { + ID: 900027, + slaveName: "Joan", + birthName: "Joan", + actualAge: 42, + physicalAge: 42, + visualAge: 42, + ovaryAge: 42, + health: {condition: 20}, + devotion: 15, + height: 175, + eye: {origColor: "blue"}, + origHColor: "brown", + pubicHColor: "brown", + hStyle: "long", + boobs: 1000, + boobsImplant: 600, + boobsImplantType: "normal", + butt: 4, + face: 15, + lips: 35, + lipsImplant: 10, + vagina: 2, + vaginaLube: 1, + anus: 2, + ovaries: 1, + anusTat: "tribal patterns", + skill: { + vaginal: 100, + oral: 100, + anal: 100 + }, + intelligence: 30, + attrXX: 80, + attrXY: 80, + fetishKnown: 1 + }, + /* heterochromia*/ + /* Tweaked face upwards, changed eye color, changed health from 20 to 6 -BoneyM*/ + { + ID: 900027, + slaveName: "Belle", + birthName: "Belle", + origin: "Formerly used solely for titfucking, $he quickly became a nymphomaniac after experiencing 'proper' sex.", + actualAge: 19, + physicalAge: 19, + visualAge: 19, + ovaryAge: 19, + health: {condition: 20}, + devotion: -75, + height: 155, + boobs: 1200, + boobsImplant: 1000, + boobsImplantType: "normal", + butt: 4, + buttImplant: 3, + buttImplantType: "normal", + vagina: 3, + vaginaLube: 1, + anus: 3, + ovaries: 1, + skill: { + vaginal: 35, + oral: 35, + anal: 35 + }, + intelligence: -30, + energy: 100, + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "odd", + custom: {tattoo: "$His breasts are tattooed with $his implant history, showing repeated additions."}, + sexualFlaw: "crude" + }, + /* rapey implant addict*/ + /* Is 'rapey' a quirk? Guess so. Added odd. Changed eye color, added nympho, added origin. -BoneyM*/ + { + ID: 900028, + slaveName: "Sophia", + birthName: "Sophia", + origin: "A former Head Girl of a rich man's harem, $he is used to being in charge of others.", + actualAge: 27, + physicalAge: 27, + visualAge: 27, + ovaryAge: 27, + health: {condition: 20}, + devotion: 25, + height: 175, + origHColor: "brown", + pubicHColor: "brown", + origSkin: "white", + hLength: 35, + hStyle: "shoulder length", + boobs: 1000, + butt: 4, + vagina: 2, + vaginaLube: 1, + ovaries: 1, + skill: { + vaginal: 35, + oral: 35, + anal: 35 + }, + intelligence: random(96, 99), + intelligenceImplant: 30, + attrXX: 0, + attrXY: 40, + fetish: "buttslut", + behavioralFlaw: "arrogant" + }, + /* dislikes women*/ + /* Added 'arrogant' and origin -BoneyM*/ + { + ID: 900029, + slaveName: "Fifi", + birthName: "Fifi", + slaveSurname: "la Mer", + birthSurname: "la Mer", + actualAge: 22, + physicalAge: 22, + visualAge: 22, + ovaryAge: 22, + health: {condition: 20}, + devotion: 25, + height: 155, + origHColor: "black", + pubicHColor: "black", + origSkin: "ebony", + race: "black", + hLength: 10, + hStyle: "short afro", + boobs: 1000, + nipplesPiercing: 2, + butt: 4, + vagina: 1, + vaginaLube: 1, + vaginaPiercing: 1, + clit: 3, + clitPiercing: 1, + anus: 3, + ovaries: 1, + clothes: "attractive lingerie", + attrXY: 40, + fetishKnown: 1, + navelPiercing: 1 + }, + /* big clit*/ + /* Added big clit, increased nipple piercing, added clit piercing -BoneyM*/ + { + ID: 900030, + slaveName: "Jones", + birthName: "Jones", + actualAge: 25, + physicalAge: 25, + visualAge: 25, + ovaryAge: 25, + health: {condition: 40}, + devotion: 25, + height: 175, + race: "white", + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "white", + hLength: 40, + hStyle: "long curls back in a ponytail", + boobs: 400, + butt: 1, + vagina: 2, + vaginaLube: 1, + anus: 2, + ovaries: 1, + skill: { + vaginal: 35, + oral: 35, + combat: 1 + }, + intelligence: 30, + intelligenceImplant: 30, + energy: 100, + attrXY: 40, + fetishKnown: 1, + custom: {tattoo: "$He has a large yakuza tattoo over $his shoulder, depicting roses and koi fishes swimming upstream."} + }, + /* violent nymphomania, buttslut*/ + /* Tweaked health upwards, corrected tattoo syntax, added combat skill -BoneyM*/ + { + ID: 900031, + slaveName: "Slave", + birthName: "Vanessa", + actualAge: 23, + physicalAge: 23, + visualAge: 23, + ovaryAge: 23, + health: {condition: 20}, + devotion: -75, + height: 157, + eye: {origColor: "blue"}, + origSkin: "pale", + hStyle: "long", + waist: -55, + boobs: 1200, + butt: 3, + lipsTat: "permanent makeup", + vagina: 1, + vaginaLube: 1, + vaginaPiercing: 1, + anus: 1, + ovaries: 1, + skill: { + oral: 15 + }, + attrXY: 40, + fetishKnown: 1, + custom: {tattoo: "$He has a barcode tattooed on $his abdomen, and 'cut here' lines on $his arms and legs."}, + sexualFlaw: "self hating" + }, + /* permashackles*/ + /* Changed eyes to blue, added tattoos -BoneyM*/ + { + ID: 900032, + slaveName: "Carol", + birthName: "Carol", + health: {condition: 20}, + devotion: 60, + weight: -20, + height: 155, + eye: {origColor: "blue"}, + origSkin: "pale", + hLength: 30, + hStyle: "shoulder length", + boobs: 400, + butt: 4, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + vaginal: 15, + oral: 15, + anal: 15 + }, + attrXY: 40, + fetishKnown: 1, + custom: { + tattoo: "$He has a cherry blossom tattooed on $his forearm.", + desc: "$He is unnaturally flexible." + } + }, + /* red contacts*/ + /* Reduced weight, changed eyes to blue, corrected tattoo syntax, added flexibility in customdesc, changed skin to pale -BoneyM*/ + { + ID: 900033, + slaveName: "Jennifer", + birthName: "Jennifer", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: 60, + race: "white", + origHColor: "brunette", + pubicHColor: "brunette", + origSkin: "fair", + hStyle: "long", + boobs: 500, + butt: 3, + vagina: 2, + vaginaLube: 1, + anus: 2, + skill: { + vaginal: 15, + oral: 15, + entertainment: 35 + }, + intelligence: 30, + intelligenceImplant: 30, + attrXY: 40, + fetish: "submissive", + fetishKnown: 1, + height: 173 + }, + /* Added entertain skill -BoneyM*/ + { + ID: 900034, + slaveName: "Charity", + birthName: "Charity", + actualAge: 29, + physicalAge: 29, + visualAge: 29, + ovaryAge: 29, + health: {condition: 20}, + devotion: 90, + race: "middle eastern", + origHColor: "black", + pubicHColor: "black", + origSkin: "light olive", + hLength: 80, + hStyle: "very long", + boobs: 650, + boobsImplant: 600, + boobsImplantType: "normal", + nipplesPiercing: 1, + butt: 5, + lipsPiercing: 1, + tonguePiercing: 1, + vagina: 1, + vaginaLube: 1, + anus: 1, + skill: { + vaginal: 100, + oral: 100, + anal: 100 + }, + entertainment: 35, + intelligence: 20, + intelligenceImplant: 30, + attrXX: 80, + attrXY: 40, + fetishKnown: 1, + custom: {tattoo: "$He has 'Charity' tattooed in cursive across the back of $his neck."} + }, + /* Changed $him to Arabic, corrected tattoo syntax, added entertain skill -BoneyM*/ + { + ID: 900035, + slaveName: "Riya", + birthName: "Riya", + 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.", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: 40, + weight: -20, + height: 155, + race: "indo-aryan", + eye: {origColor: "grey"}, + origHColor: "black", + pubicHColor: "black", + origSkin: "brown", + hStyle: "long", + boobs: 500, + butt: 3, + vagina: 1, + vaginaLube: 1, + clitPiercing: 3, + ovaries: 1, + earPiercing: 1, + skill: { + oral: 15, + whoring: 15, + entertainment: 15 + }, + intelligence: 30, + intelligenceImplant: 30, + attrXX: 80, + attrXY: 40, + fetishKnown: 1, + custom: {tattoo: "$He has a barcode of $his identifying information tattooed on $his left shoulder."}, + career: "a slaver" + }, + /* 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*/ + { + ID: 900036, + slaveName: "Alice", + birthName: "Alice", + health: {condition: 20}, + devotion: 60, + height: 155, + origHColor: "black", + pubicHColor: "black", + origSkin: "white", + hStyle: "long", + boobs: 300, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + vaginal: 15, + oral: 15, + anal: 15 + }, + attrXY: 40, + fetishKnown: 1, + custom: {desc: "$He has a scar on $his abdomen from kidney surgery in $his youth."}, + sexualFlaw: "crude" + }, + /* sexual one-upper*/ + /* Changed eyes, added scar -BoneyM*/ + { + ID: 900037, + slaveName: "Raven", + birthName: "Raven", + actualAge: 19, + physicalAge: 19, + visualAge: 19, + ovaryAge: 19, + health: {condition: 20}, + devotion: 20, + weight: -20, + race: "white", + eye: {origColor: "green"}, + override_H_Color: 1, + origHColor: "black", + hColor: "black with blue highlights", + origSkin: "white", + hStyle: "long", + boobs: 400, + butt: 2, + lipsPiercing: 1, + tonguePiercing: 1, + vagina: 1, + vaginaLube: 1, + ovaries: 1, + nails: 2, + skill: { + anal: 15 + }, + attrXY: 40, + fetish: "submissive", + fetishKnown: 1 + }, + /* likes toys*/ + /* Reduced weight, changed eyes, added nail polish -BoneyM*/ + { + ID: 900038, + slaveName: "Kino", + birthName: "Kino", + origin: "$He was formerly owned by someone who fancied themselves a geneticist, where $he acquired permanently discolored hair and odd fetishes.", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 40}, + devotion: -75, + height: 155, + race: "white", + override_H_Color: 1, + origHColor: "blue", + pubicHColor: "blue", + override_Skin: 1, + origSkin: "spray tanned", + hLength: 30, + hStyle: "short, spiky, with a long shoulder-length lock leading from $his temples down, one on each side", + boobs: 650, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + vaginal: 35, + oral: 35, + anal: 35 + }, + combat: 1, + intelligence: -30, + attrXY: 40, + fetishKnown: 1, + custom: { + desc: "$He has a vertical scar through $his right eye, is a dabbling artist, and is an oviposition fetishist." + }, + eye: { + origColor: "blue-green", + left: { + vision: 0 + }, + right: { + vision: 0 + } + } + }, + /* Added combat skill, increased health, added origin -BoneyM*/ + { + ID: 900039, + slaveName: "Vivienne", + birthName: "Vivienne", + origin: "$He is a former soldier who was sold into slavery after losing $his leg to an IED.", + actualAge: 39, + physicalAge: 39, + visualAge: 39, + ovaryAge: 39, + health: {condition: 20}, + devotion: 90, + race: "white", + eye: {origColor: "green"}, + origHColor: "red", + pubicHColor: "red", + origSkin: "white", + hStyle: "long", + boobs: 400, + butt: 3, + vagina: 1, + vaginaLube: 1, + anus: 1, + skill: { + vaginal: 15, + oral: 15, + anal: 15, + combat: 1 + }, + intelligence: 25, + intelligenceImplant: 30, + attrXY: 1, + fetishKnown: 1, + backTat: "$He has a military tattoo on $his back.", + 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."}, + career: "a soldier", + leg: { + left: { + type: 2 + } + } + }, + /* missing left leg, burn scar, low sex drive, fighter*/ + /* Added customdesc, fixed tattoo syntax, added combat skill, eye color and origin -BoneyM*/ + { + ID: 900040, + slaveName: "Lexi", + birthName: "Lexi", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: 25, + weight: -20, + height: 157, + race: "white", + eye: {origColor: "blue"}, + origHColor: "bleached blonde", + pubicHColor: "bleached blonde", + hStyle: "long", + boobs: 400, + butt: 2, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + oral: 35 + }, + attrXY: 40, + fetishKnown: 1 + }, + /* Changed eyes to blue -BoneyM*/ + { + ID: 900041, + slaveName: "Blue", + actualAge: 22, + physicalAge: 22, + visualAge: 22, + ovaryAge: 22, + health: {condition: 60}, + devotion: 35, + height: 165, + muscles: 20, + origHColor: "black", + pubicHColor: "black", + origSkin: "white", + hStyle: "short", + pubicHStyle: "bushy", + boobs: 400, + butt: 3, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + vaginal: 15, + oral: 15, + anal: 50 + }, + attrXY: 40, + fetish: "buttslut", + fetishKnown: 1, + backTat: "$He has angel wings across $his back.", + underArmHStyle: "bushy", + clothes: "a comfortable bodysuit", + vaginalAccessory: "large dildo", + buttplug: "large plug" + }, + /* Fixed tattoo syntax -BoneyM "$He has hairy, unshaven armpits, bush and asscrack."*/ + { + ID: 900042, + slaveName: "Maya", + birthName: "Maya", + actualAge: 28, + physicalAge: 28, + visualAge: 28, + ovaryAge: 28, + health: {condition: 40}, + devotion: 100, + height: 190, + markings: "freckled", + race: "white", + eye: {origColor: "green"}, + origHColor: "red", + pubicHColor: "red", + origSkin: "light", + hLength: 10, + boobs: 800, + butt: 2, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + vaginal: 35, + oral: 35, + anal: 35 + }, + attrXY: 40, + fetish: "cumslut", + fetishKnown: 1, + legsTat: "$His right thigh reads 'Fuck Me' in flowery script.", + stampTat: "$He has a fairly generic tramp stamp." + }, + /* Corrected tattoo syntax, changed skin to freckled, eyes to green, increased height -BoneyM*/ + /* Corrected skin to light?, and changed markings to freckled Bane70 */ + { + ID: 900043, + slaveName: "Alexis", + birthName: "Alexis", + actualAge: 25, + physicalAge: 25, + visualAge: 25, + ovaryAge: 25, + health: {condition: 20}, + devotion: 60, + muscles: 20, + height: 150, + race: "mixed race", + eye: {origColor: "hazel"}, + origHColor: "black", + pubicHColor: "black", + origSkin: "ebony", + hStyle: "long", + boobs: 800, + nipplesPiercing: 1, + butt: 4, + lips: 35, + vagina: 1, + vaginaLube: 1, + vaginaPiercing: 1, + clit: 1, + clitPiercing: 1, + anus: 1, + ovaries: 1, + earPiercing: 2, + nosePiercing: 1, + eyebrowPiercing: 1, + skill: { + vaginal: 15, + oral: 15, + anal: 15 + }, + intelligence: -20, + energy: 100, + attrXY: 75, + attrXX: 75, + fetishKnown: 1, + custom: {desc: "$He has a feminine personality despite $his high testosterone."}, + areolae: 2, + nipples: "huge", + voice: 1, + navelPiercing: 1, + tonguePiercing: 1 + }, + /* big clit*/ + /* Changed eyes to hazel, increased clit, added a lot of piercings, changed fetish to nympho, fixed customdesc syntax -BoneyM*/ + { + ID: 900044, + slaveName: "Anneliese", + birthName: "Anneliese", + origin: "$He is a former Head Girl that fetishizes $his own degradation.", + actualAge: 31, + physicalAge: 31, + visualAge: 31, + ovaryAge: 31, + health: {condition: 20}, + devotion: 100, + race: "white", + eye: {origColor: "blue"}, + origHColor: "golden", + pubicHColor: "golden", + origSkin: "pale", + hStyle: "long", + boobs: 800, + nipplesPiercing: 1, + butt: 4, + vagina: 2, + vaginaLube: 1, + vaginaPiercing: 2, + anus: 2, + ovaries: 1, + earPiercing: 1, + skill: { + vaginal: 100, + oral: 100, + anal: 100 + }, + clothes: "slutty jewelry", + intelligence: random(96, 99), + intelligenceImplant: 30, + attrXY: 40, + fetish: "humiliation", + fetishKnown: 1, + custom: {desc: "$He has the air of a princess."} + }, + /* Changed eyes to blue, added origin, pierced ears, fixed customdesc syntax -BoneyM*/ + { + ID: 900045, + slaveName: "Riley", + birthName: "Riley", + origin: "$He sold $himself into slavery in an attempt to sate $his incredible sex drive.", + health: {condition: 20}, + devotion: 75, + weight: -20, + height: 180, + origHColor: "black", + pubicHStyle: "black", + origSkin: "pale", + hLength: 10, + underArmHStyle: "bald", + boobs: 300, + nipplesPiercing: 1, + butt: 3, + lipsPiercing: 2, + tonguePiercing: 2, + vagina: 2, + vaginaLube: 1, + vaginaPiercing: 1, + clitPiercing: 1, + anus: 2, + ovaries: 1, + skill: { + vaginal: 100, + oral: 100, + anal: 100 + }, + vaginalAccessory: "large dildo", + buttplug: "large plug", + intelligence: 20, + intelligenceImplant: 30, + energy: 100, + attrXY: 100, + fetishKnown: 1, + custom: { + desc: "$He has a scar on the back of $his head, concealed by $his hair." + }, + }, + /* compulsive masturbation*/ + /* Moved customdesc to origin, added scar to customdesc, reduced weight, added nympho, added nipple and clit piercings -BoneyM*/ + { + ID: 900046, + slaveName: "Victoria", + birthName: "Victoria", + actualAge: 23, + physicalAge: 23, + visualAge: 23, + ovaryAge: 23, + health: {condition: -7}, + devotion: 25, + race: "white", + origSkin: "white", + hStyle: "long", + boobs: 650, + boobsTat: "degradation", + buttTat: "degradation", + lipsTat: "degradation", + vagina: 1, + vaginaLube: 1, + vaginaTat: "degradation", + anus: 1, + ovaries: 1, + anusTat: "degradation", + skill: { + vaginal: 15, + oral: 15, + anal: 15 + }, + addict: 999, + intelligence: -90, + attrXY: 40, + fetishKnown: 1, + custom: { + desc: "$He is a permanent, irrecoverable aphrodisiac addict." + }, + }, + /* Corrected customdesc syntax -BoneyM*/ + { + ID: 900047, + slaveName: "Aveline", + birthName: "Aveline", + origin: "$He was sold into slavery from a remote, primitive village.", + actualAge: 34, + physicalAge: 34, + visualAge: 34, + ovaryAge: 34, + health: {condition: 20}, + devotion: -75, + override_Skin: 1, + origSkin: "sun tanned", + hLength: 25, + hStyle: "in a bob", + boobs: 400, + butt: 3, + vaginaLube: 1, + ovaries: 1, + intelligence: -30, + attrXY: 40, + fetishKnown: 1, + stampTat: "$He has a barcode tattooed above $his butt." + }, + /* Added barcode tattoo and origin -BoneyM*/ + { + ID: 900048, + slaveName: "Emm", + birthName: "Emm", + actualAge: 24, + physicalAge: 24, + visualAge: 24, + ovaryAge: 24, + health: {condition: 20}, + devotion: 40, + weight: 20, + race: "white", + eye: {origColor: "green"}, + origHColor: "strawberry blonde", + pubicHColor: "strawberry blonde", + origSkin: "white", + hStyle: "long", + boobs: 650, + butt: 5, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + earPiercing: 1, + skill: { + vaginal: 15, + oral: 35, + whoring: 15, + entertainment: 15 + }, + attrXY: 40, + fetish: "cumslut", + fetishKnown: 1, + custom: { + desc: "$He is friendly, clever, and quick." + }, + }, + /* fluctuating weight*/ + /* Increased weight, added entertain and whore skill, added ear piercing, changed eyes -BoneyM*/ + { + ID: 900049, + slaveName: "Twenty", + birthName: "Twenty", + actualAge: 19, + physicalAge: 19, + visualAge: 19, + ovaryAge: 19, + health: {condition: 20}, + devotion: 40, + weight: 20, + origHColor: "black", + pubicHColor: "black", + origSkin: "light", + hStyle: "long", + boobs: 800, + vagina: 2, + vaginaLube: 1, + anus: 2, + ovaries: 1, + skill: { + vaginal: 35, + oral: 35, + anal: 35 + }, + intelligence: -50, + intelligenceImplant: 30, + attrXY: 40, + fetishKnown: 1, + custom: { + tattoo: "$He has a paw print tattoo on $his left buttock.", + desc: "$He constantly uses 'pussy' and 'kitty' puns when permitted." + }, + clothes: "kitty lingerie" + }, + /* Fixed tattoo and customdesc syntax -BoneyM*/ + { + ID: 900050, + slaveName: "Thorn", + birthName: "Thorn", + origin: "$He lived a hard life before becoming a slave.", + actualAge: 32, + physicalAge: 32, + visualAge: 32, + ovaryAge: 32, + health: {condition: 40}, + devotion: -50, + muscles: 20, + race: "black", + origHColor: "black", + pubicHColor: "black", + origSkin: "dark", + hLength: 10, + boobs: 650, + butt: 3, + ovaries: 1, + intelligence: -30, + intelligenceImplant: 30, + attrXY: 40, + fetish: "submissive", + custom: { + desc: "$He has many scars, including one over $his blind left eye." + }, + }, + /* Increased health, added origin, fixed customdesc syntax -BoneyM*/ + { + ID: 900051, + slaveName: "Kinsey", + birthName: "Kinsey", + actualAge: 27, + physicalAge: 27, + visualAge: 27, + ovaryAge: 27, + health: {condition: 20}, + devotion: 10, + height: 145, + origHColor: "black", + pubicHColor: "black", + hLength: 15, + hStyle: "short, with the left side shaved", + boobs: 500, + butt: 4, + buttImplant: 1, + buttImplantType: "normal", + vagina: 1, + vaginaLube: 1, + anus: 2, + nosePiercing: 1, + skill: { + vaginal: 15, + oral: 15 + }, + anal: 100, + attrXX: 80, + attrXY: 40, + fetishKnown: 1 + }, + /* Added nose piercing, reduced height, changed fetish to bisexual -BoneyM*/ + { + ID: 900052, + slaveName: "Sammy", + birthName: "Sammy", + origin: "$He chose to be a slave because the romanticized view of it $he had turns $him on.", + actualAge: 19, + physicalAge: 19, + visualAge: 19, + ovaryAge: 19, + health: {condition: 20}, + devotion: 25, + weight: 20, + height: 155, + race: "white", + eye: {origColor: "blue"}, + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "pale", + hLength: 80, + hStyle: "ass-length", + boobs: 300, + butt: 1, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + earPiercing: 1, + skill: { + vaginal: 15, + oral: 100 + }, + intelligence: 20, + intelligenceImplant: 30, + attrXX: 80, + attrXY: 40, + fetish: "buttslut", + fetishKnown: 1, + custom: { + desc: "$He has fetishes for wedgies, spanking and herms." + }, + }, + /* laid back*/ + /* Added origin, increased weight, pierced ears, added customdesc -BoneyM*/ + { + ID: 900053, + slaveName: "Klara", + birthName: "Klara", + origin: "$He was forced into slavery and rather brutally broken in.", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: -75, + height: 175, + race: "white", + eye: {origColor: "blue"}, + origSkin: "fair", + hStyle: "long and braided", + boobs: 800, + butt: 4, + vagina: 2, + vaginaLube: 1, + anus: 2, + ovaries: 1, + skill: { + vaginal: 100, + oral: 100, + anal: 100, + whoring: 35, + entertainment: 35 + }, + intelligence: -30, + attrXY: 40, + fetishKnown: 1, + brand: {"right buttock": "Cum slut"}, + custom: {tattoo: "'bitch whore' is tattooed on $his inner left thigh."} + }, + /* Fixed typo in customdesc, increased whore and entertainskill, changed eye color -BoneyM*/ + { + ID: 900054, + slaveName: "Lucy", + birthName: "Lucy", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: 40, + race: "white", + origSkin: "white", + eye: {origColor: "blue"}, + override_H_Color: 1, + origHColor: "brown", + hColor: "pale blonde", + hLength: 95, + hStyle: "ass length", + boobs: 300, + butt: 3, + buttTat: "degradation", + vagina: 1, + vaginaLube: 1, + vaginaTat: "degradation", + ovaries: 1, + intelligence: -30, + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "odd", + height: 165 + }, + /* innuendo*/ + /* Added odd, changed eye color -BoneyM*/ + { + ID: 900055, + slaveName: "Mandy", + birthName: "Mandy", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: 60, + hStyle: "long", + boobs: 500, + nipplesPiercing: 1, + butt: 3, + vagina: 2, + vaginaLube: 1, + clitPiercing: 1, + anus: 2, + ovaries: 1, + skill: { + vaginal: 35, + oral: 35, + anal: 35 + }, + clothes: "attractive lingerie", + attrXY: 40, + fetishKnown: 1 + }, + /* Couldn't find this slave in the thread or the submission page on the blog -BoneyM*/ + { + ID: 900056, + slaveName: "Dharma", + birthName: "Dharma", + actualAge: 26, + physicalAge: 26, + visualAge: 26, + ovaryAge: 26, + health: {condition: 20}, + devotion: -100, + height: 175, + race: "white", + eye: {origColor: "green"}, + origHColor: "dark brown", + pubicHColor: "dark brown", + origSkin: "pale", + hStyle: "long", + waist: -55, + boobs: 500, + butt: 3, + lips: 35, + vagina: 2, + vaginaLube: 1, + anus: 2, + analArea: 1, + ovaries: 1, + skill: { + vaginal: 15, + oral: 15, + anal: 15 + }, + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "arrogant", + custom: { + tattoo: "$He has a henna tattoo on $his left forearm, and a butterfly tattoo on $his right calf.", + desc: "$He has high cheekbones on a heart shaped face." + }, + faceShape: "cute", + sexualQuirk: "size queen" + }, + /* Fetish was set to 'arrogant' instead of quirk, corrected tattoo syntax -BoneyM*/ + { + ID: 900057, + slaveName: "Aya", + birthName: "Aya", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: -25, + race: "white", + override_H_Color: 1, + origHColor: "red", + hColor: "bright red", + origSkin: "white", + hStyle: "long", + boobs: 400, + butt: 3, + vagina: 1, + vaginaLube: 1, + clitPiercing: 1, + anus: 1, + ovaries: 1, + earPiercing: 2, + nosePiercing: 1, + skill: { + vaginal: 15, + oral: 35, + anal: 15 + }, + clothes: "attractive lingerie", + intelligence: random(96, 99), + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "bitchy", + custom: {desc: "$He has piercings along $his collarbones and corset piercings with red ribbons down $his lower back and thighs."}, + height: 168 + }, + /* masochist*/ + /* Added piercings, corrected customdesc syntax, added bitchy to fit with $his smart-ass masochist personality. -BoneyM*/ + { + ID: 900059, + slaveName: "Mikayla", + birthName: "Mikayla", + origin: "$He was previously owned by a creative sadist, who has left a variety of mental scars on $him.", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: -25, + weight: 20, + height: 157, + origSkin: "white", + hStyle: "long", + boobs: 500, + nipplesPiercing: 1, + butt: 3, + lips: 35, + vagina: 1, + vaginaLube: 1, + vaginaPiercing: 1, + clitPiercing: 1, + anus: 1, + ovaries: 1, + earPiercing: 1, + skill: { + vaginal: 15, + oral: 15, + anal: 15 + }, + intelligence: -35, + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "arrogant", + custom: {desc: "$He is extremely claustrophobic."} + }, + /* claustrophobia, pride*/ + /* Fixed customdesc syntax, added pierced ears, corrected hair color, added origin and arrogant -BoneyM*/ + { + ID: 900060, + slaveName: "Xendra", + birthName: "Xendra", + origin: "$He was a hermit until $he became a slave, and went along with it out of boredom.", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 40}, + devotion: 75, + height: 175, + race: "black", + eye: { + origColor: "brown", + left: { + iris: "purple" + }, + right: { + iris: "purple" + } + }, + override_Eye_Color: 1, + override_H_Color: 1, + origHColor: "white", + origSkin: "dark", + hStyle: "long", + boobs: 500, + butt: 3, + lips: 35, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + earPiercing: 1, + skill: { + vaginal: 15, + oral: 15, + anal: 15, + combat: 1 + }, + intelligence: 100, + intelligenceImplant: 30, + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "bitchy", + custom: { + tattoo: "$He has a pair of full sleeve tattoos.", + desc: "$He has many scars, and is skilled with plants." + }, + career: "a shut-in" + }, + /* toned, snuff, fighter*/ + /* Increased health, added combatskill, bitchy and pierced ears, fixed tattoo and customdesc syntax, corrected skin color from 'white' to 'dark' -BoneyM*/ + { + ID: 900061, + slaveName: "Gwen", + birthName: "Gwen", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 1}, + devotion: 60, + race: "asian", + origHColor: "dark", + pubicHColor: "dark", + origSkin: "white", + hStyle: "long", + boobs: 300, + nipplesPiercing: 1, + butt: 1, + face: 60, + vagina: 1, + vaginaLube: 1, + clitPiercing: 3, + clitSetting: "off", + anus: 2, + ovaries: 1, + skill: { + vaginal: 15, + oral: 15, + anal: 35 + }, + chastityVagina: 1, + attrXY: 40, + fetish: "submissive", + fetishKnown: 1, + custom: { + tattoo: "$He has 'Use Backdoor' tattooed above $his vagina and, in tribal tattoos, 'Anal Slut' on $his back.", + desc: "$He wears a dog collar with lights that indicate $his arousal and was bought wearing a vaginal chastity belt." + }, + height: 183 + }, + /* 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 */ + { + ID: 900062, + slaveName: "Asha", + birthName: "Asha", + actualAge: 23, + physicalAge: 23, + visualAge: 23, + ovaryAge: 23, + health: {condition: 20}, + devotion: 60, + weight: -20, + nationality: "Russian", + race: "white", + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "white", + hLength: 170, + hStyle: "neat", + waist: -55, + heels: 1, + boobs: 1200, + boobsImplant: 800, + boobsImplantType: "fillable", + nipplesPiercing: 2, + lactation: 1, + lactationDuration: 2, + butt: 6, + buttImplant: 3, + buttImplantType: "fillable", + face: 15, + faceImplant: 15, + lips: 35, + lipsImplant: 10, + lipsPiercing: 1, + tonguePiercing: 1, + vagina: 1, + vaginaLube: 1, + clitPiercing: 1, + anus: 1, + ovaries: 1, + earPiercing: 2, + skill: { + vaginal: 35, + oral: 35, + anal: 15 + }, + attrXY: 40, + fetishKnown: 1, + custom: { + tattoo: "$He has many girly tattoos.", + desc: "$He loves hair play." + }, + navelPiercing: 1 + }, + /* Reduced weight, increased face and faceimplant, added piercings, corrected tattoo and customdesc syntax -BoneyM*/ + { + ID: 900063, + slaveName: "Emily", + birthName: "Emily", + origin: "Before $he was made a slave, $he was a wealthy, popular honor student.", + actualAge: 19, + physicalAge: 19, + visualAge: 19, + ovaryAge: 19, + health: {condition: 20}, + devotion: -25, + height: 155, + race: "white", + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "white", + hLength: 10, + boobs: 400, + butt: 3, + vaginaLube: 1, + ovaries: 1, + skill: { + vaginal: 15, + oral: 15 + }, + anal: 15, + intelligence: random(96, 100), + intelligenceImplant: 30, + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "arrogant", + custom: {desc: "$He has a short nose and is very intelligent."} + }, + /* Added origin, reduced age, fetish was 'arrogant', changed it to quirk, fixed customdesc syntax. -BoneyM*/ + { + ID: 900064, + slaveName: "Bitch", + health: {condition: -20}, + devotion: -75, + height: 155, + eye: { + origColor: "dark", + left: { + pupil: "almond-shaped" + }, + right: { + pupil: "almond-shaped" + } + }, + origHColor: "dark", + origSkin: "pale", + waist: -55, + boobs: 300, + butt: 5, + lips: 35, + lipsPiercing: 1, + tonguePiercing: 1, + vaginaLube: 1, + ovaries: 1, + earPiercing: 1, + eyebrowPiercing: 1, + skill: { + oral: 35 + }, + intelligence: -60, + attrXY: 40, + fetishKnown: 1, + custom: {desc: "$He has a heart shaped face and many scars."}, + faceShape: "cute", + hips: 3, + markings: "beauty" + }, + /* Fixed customdesc syntax, changed eye color, added piercings, increased waist -BoneyM*/ + { + ID: 900065, + slaveName: "Nala", + birthName: "Nala", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: 10, + muscles: 20, + height: 180, + origHColor: "black", + hStyle: "long and in a ponytail", + boobs: 500, + butt: 3, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + vaginal: 15, + oral: 15, + anal: 15 + }, + energy: 100, + attrXY: 40, + fetishKnown: 1 + }, + /* First slave that didn't need fixing -BoneyM*/ + { + ID: 900066, + slaveName: "Ervona", + birthName: "Ervona", + origin: "$He was groomed just for you and believes $himself to be madly in love with you.", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 40}, + devotion: 100, + height: 178, + override_H_Color: 1, + origHColor: "white", + pubicHColor: "white", + origSkin: "bronze", + hLength: 25, + hStyle: "chin length", + boobs: 500, + nipples: "inverted", + nipplesPiercing: 1, + butt: 3, + clitPiercing: 1, + ovaries: 1, + clothes: "attractive lingerie", + intelligence: 30, + intelligenceImplant: 30, + attrXY: 40 + }, + /* love*/ + /* Added origin, removed it from customdesc. Increased health.*/ + { + ID: 900067, + slaveName: "Koko", + birthName: "Koko", + origin: "$He may originally be from an island nation.", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 60}, + devotion: -25, + height: 175, + override_H_Color: 1, + race: "asian", + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "brown", + hLength: 10, + boobs: 400, + butt: 2, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + earPiercing: 1, + skill: { + vaginal: 35, + oral: 35, + anal: 15 + }, + energy: 100, + attrXY: 40, + fetishKnown: 1, + custom: {desc: "$He is trim and fit."} + }, + /* genki*/ + /* Pierced ears, added origin, corrected customdesc syntax. -BoneyM*/ + { + ID: 900068, + slaveName: "Jasmine", + birthName: "Jasmine", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: 25, + height: 175, + origRace: "white", + race: "black", + eye: {origColor: "blue-green"}, + override_H_Color: 1, + override_Brow_H_Color: 1, + override_Arm_H_Color: 1, + override_Pubic_H_Color: 1, + override_Skin: 1, + origHColor: "fair blonde", + eyebrowHColor: "blonde", + pubicHColor: "blonde", + underArmHColor: "blonde", + origSkin: "brown", + hStyle: "long", + boobs: 400, + butt: 2, + vagina: 1, + vaginaLube: 1, + ovaries: 1, + attrXY: 40, + fetish: "humiliation" + }, + /* Changed eyes -BoneyM*/ + { + ID: 900069, + slaveName: "Orena", + birthName: "Orena", + actualAge: 23, + physicalAge: 23, + visualAge: 23, + ovaryAge: 23, + health: {condition: 20}, + devotion: -90, + override_H_Color: 1, + race: "white", + origHColor: "pink", + pubicHColor: "pink", + origSkin: "white", + hStyle: "long", + boobs: 1400, + nipplesPiercing: 1, + butt: 4, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + nosePiercing: 1, + attrXY: 40, + fetish: "arrogant", + fetishKnown: 1, + sexualFlaw: "hates penetration" + }, + /* hates sex*/ + /* Corrected hair color, added piercings, added 'hates penetration' -BoneyM*/ + { + ID: 900070, + slaveName: "Fatiah", + birthName: "Fatiah", + origin: "$He was taken as a slave by a Sultan, who presented $him as a gift to a surveyor.", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 80}, + devotion: 45, + weight: 20, + height: 257, + race: "middle eastern", + override_Brow_H_Color: 1, + override_Arm_H_Color: 1, + override_Pubic_H_Color: 1, + origHColor: "black and oily", + eyebrowHColor: "black", + pubicHColor: "black", + underArmHColor: "black", + origSkin: "brown", + hStyle: "long, but shaved on the left side", + boobs: 1200, + butt: 4, + vaginaLube: 1, + ovaries: 1, + intelligence: -30, + intelligenceImplant: 30, + attrXY: 40, + attrKnown: 0, + eyewear: "corrective glasses", + clothes: "a niqab and abaya", + hips: 2, + eye: { + left: { + vision: 1 + }, + right: { + vision: 1 + } + } + }, + /* Increased height, reduced weight, reduced butt, fixed customdesc syntax -BoneyM*/ + { + ID: 900071, + slaveName: "No Name", + birthName: "No Name", + origin: "A previous owner cultivated $his desire to escape slavery for his own amusement.", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 50}, + devotion: -100, + height: 165, + weight: -20, + muscles: 20, + race: "mixed race", + eye: {origColor: "blue"}, + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "white", + hStyle: "long", + pubicHStyle: "neat", + boobs: 300, + nipplesPiercing: 1, + butt: 3, + vaginaLube: 1, + clitPiercing: 3, + clitSetting: "oral", + anus: 2, + ovaries: 1, + skill: { + oral: 35, + anal: 35 + }, + intelligence: random(96, 99), + intelligenceImplant: 30, + attrXY: 40, + fetish: "cumslut", + fetishKnown: 1, + custom: {desc: "$He is fit and athletic."}, + behavioralFlaw: "arrogant", + hips: 1 + }, + /* //*hypno-anal/cum*/ + /* Reduced weight, changed eyes, corrected customdesc syntax, added origin, increased rebelliousness, changed clitsetting to oral. -BoneyM*/ + { + ID: 900072, + slaveName: "Sara", + birthName: "Sara", + 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.", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 40}, + devotion: 60, + height: 155, + nationality: "Mexican", + race: "latina", + override_H_Color: 1, + override_Brow_H_Color: 1, + override_Arm_H_Color: 1, + override_Pubic_H_Color: 1, + origHColor: "dark red", + eyebrowHColor: "red", + pubicHColor: "red", + underArmHColor: "red", + origSkin: "white", + hStyle: "long", + boobs: 400, + butt: 2, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + vaginal: 15, + oral: 15, + anal: 15 + }, + intelligence: -40, + intelligenceImplant: 30, + attrXY: 40, + fetish: "masochist", + fetishKnown: 1, + custom: { + tattoo: "$He has $his medical allergies tattooed around $his wrist.", + desc: "$He has either a masochistic streak, a self-harm habit, or both." + }, + }, + /* likes pain*/ + /* Corrected tattoo syntax, added origin and customdesc, increased health -BoneyM*/ + { + ID: 900073, + slaveName: "Falcon", + birthName: "Jamie", + actualAge: 23, + physicalAge: 23, + visualAge: 23, + ovaryAge: 23, + health: {condition: 20}, + devotion: 25, + race: "white", + eye: {origColor: "blue"}, + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "white", + hStyle: "long", + boobs: 400, + butt: 3, + lips: 35, + vagina: 1, + vaginaLube: 1, + ovaries: 1, + skill: { + vaginal: 15, + oral: 35 + }, + clothes: "a slave gown", + intelligence: 30, + intelligenceImplant: 30, + attrXX: 80, + attrXY: 40, + fetishKnown: 1, + custom: {desc: "$He has an implanted GPS tracker to find $him in case $his habit of stalking pretty girls gets the better of $him."} + }, + /* proactive stalker hypnosis masseuse*/ + /* Corrected birthname (was 'Jasmine'), changed eye color, added customdesc -BoneyM*/ + { + ID: 900074, + slaveName: "Beatrice (No. 525)", + birthName: "Beatrice", + 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.", + actualAge: 23, + physicalAge: 23, + visualAge: 23, + ovaryAge: 23, + health: {condition: 20}, + devotion: 30, + height: 155, + race: "white", + eye: {origColor: "blue-green"}, + override_H_Color: 1, + origHColor: "red", + hColor: "bright red", + origSkin: "pure white", + hLength: 80, + hStyle: "long and wavy, and down past $his ass", + waist: -55, + boobs: 800, + butt: 4, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + earPiercing: 1, + skill: { + vaginal: 35, + oral: 35, + anal: 35, + whoring: 15 + }, + entertainment: 15, + clothes: "a slave gown", + intelligence: 30, + intelligenceImplant: 30, + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "arrogant", + custom: { + tattoo: "$He has a fine, intricate vine-like tattoo around $his right ankle." + }, + }, + /* 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*/ + { + ID: 900075, + slaveName: "Yuuki", + birthName: "Yuuki", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: 45, + height: 145, + race: "asian", + override_Eye_Color: 1, + override_H_Color: 1, + eye: {origColor: "blue"}, + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "fair", + hStyle: "long and curly", + waist: -55, + boobs: 1000, + butt: 5, + vaginaLube: 1, + ovaries: 1, + skill: { + oral: 100, + entertainment: 35 + }, + intelligence: 30, + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "bitchy", + sexualFlaw: "crude " + }, + /* mischievous tease*/ + /* Reduced height, added entertainskill, added bitchy, changed eyes -BoneyM*/ + { + ID: 900076, + slaveName: "Elisa", + birthName: "Elisa", + health: {condition: 20}, + devotion: -55, + muscles: 20, + height: 145, + race: "white", + eye: {origColor: "bright blue"}, + origHColor: "white-blonde", + pubicHColor: "white-blonde", + origSkin: "extremely pale", + hStyle: "in a long braid", + waist: -55, + boobs: 500, + butt: 4, + face: 55, + ovaries: 1, + anusTat: "bleached", + skill: { + combat: 1 + }, + intelligence: 30, + intelligenceImplant: 30, + attrXY: 40, + fetish: "submissive", + behavioralFlaw: "arrogant", + sexualFlaw: "hates penetration", + 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."}, + mother: -9997, + father: -9996 + }, + /* also hates pen*/ + /* martin's sibling*/ + { + ID: 900077, + slaveName: "Yvonne", + birthName: "Yvonne", + actualAge: 24, + physicalAge: 24, + visualAge: 24, + ovaryAge: 24, + health: {condition: 20}, + devotion: 100, + height: 190, + eye: {origColor: "hazel"}, + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "light", + hStyle: "long", + waist: -55, + boobs: 700, + nipplesPiercing: 1, + butt: 2, + face: 55, + vaginaLube: 1, + clitPiercing: 3, + clitSetting: "all", + ovaries: 1, + anusTat: "bleached", + attrXY: 40, + fetish: "pregnancy" + }, + { + ID: 900078, + slaveName: "'Terminatrix' Heaven", + birthName: "Gabrielle", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 80}, + devotion: 100, + muscles: 50, + height: 190, + race: "black", + origHColor: "black", + pubicHColor: "brown", + origSkin: "black", + hLength: 5, + hStyle: "very short and a poor emulation of a military cut", + boobs: 250, + nipplesPiercing: 1, + butt: 5, + buttTat: "tribal patterns", + lipsPiercing: 1, + lipsTat: "tribal patterns", + vagina: 1, + vaginaLube: 1, + vaginaTat: "tribal patterns", + clit: 2, + anus: 1, + ovaries: 1, + anusTat: "tribal patterns", + earPiercing: 1, + nosePiercing: 1, + eyebrowPiercing: 1, + navelPiercing: 1, + shouldersTat: "tribal patterns", + armsTat: "tribal patterns", + legsTat: "tribal patterns", + stampTat: "tribal patterns", + skill: { + vaginal: 100, + oral: 100, + anal: 100, + whoring: 35, + entertainment: 15, + combat: 1 + }, + clothes: "a comfortable bodysuit", + collar: "heavy gold", + shoes: "flats", + intelligence: 20, + intelligenceImplant: 30, + attrXX: 80, + attrXY: 40, + fetishKnown: 1, + 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." + }, + }, + { + ID: 900079, + slaveName: "Lilliana", + birthName: "Zuzanna", + actualAge: 25, + physicalAge: 25, + visualAge: 25, + ovaryAge: 25, + health: {condition: 13}, + devotion: 100, + muscles: 100, + height: 190, + override_H_Color: 1, + override_Brow_H_Color: 1, + override_Arm_H_Color: 1, + override_Pubic_H_Color: 1, + origHColor: "white with red stripes", + eyebrowHColor: "white", + pubicHColor: "white", + underArmHColor: "white", + override_Skin: 1, + origSkin: "sun tanned", + hLength: 100, + hStyle: "back in a large ass length braid", + pubicHStyle: "bushy", + waist: -55, + boobs: 400, + nipplesPiercing: 1, + butt: 4, + face: 15, + faceImplant: 65, + lipsPiercing: 1, + tonguePiercing: 1, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + anusTat: "bleached", + makeup: 2, + nails: 1, + earPiercing: 1, + nosePiercing: 1, + eyebrowPiercing: 1, + skill: { + whoring: 15, + entertainment: 15, + combat: 1 + }, + clothes: "nice business attire", + collar: "leather with cowbell", + shoes: "heels", + intelligence: -30, + attrXY: 40, + fetish: "boobs", + fetishKnown: 1, + eye: { + origColor: "white", + left: { + vision: 0 + }, + right: { + vision: 0 + } + } + }, + /* Blind*/ + { + ID: 900080, + slaveName: "Jenna", + birthName: "Jenna", + assignment: "please you", + actualAge: 19, + physicalAge: 19, + visualAge: 19, + ovaryAge: 19, + health: {condition: 30}, + devotion: 60, + height: 145, + origSkin: "pale", + eye: {origColor: "violet"}, + origHColor: "red-blonde", + pubicHColor: "red-blonde", + hStyle: "waist-length", + waist: -55, + boobs: 650, + butt: 6, + face: 55, + lips: 35, + vaginaLube: 1, + clitPiercing: 3, + clitSetting: "submissive", + ovaries: 1, + skill: { + oral: 100 + }, + clothes: "a string bikini", + shoes: "heels", + attrXY: 40, + fetish: "submissive", + fetishKnown: 1, + custom: {tattoo: "$His name is tattooed in flowing cursive script across $his upper back. "} + }, + { + ID: 900081, + slaveName: "'Asspussy' Miss Julie O", + birthName: "Leah", + origin: "$He was sentenced to enslavement as a punishment for fraud and theft.", + actualAge: 42, + physicalAge: 42, + visualAge: 42, + ovaryAge: 42, + health: {condition: 70}, + devotion: 100, + height: 155, + markings: "none", + eye: {origColor: "blue"}, + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "pale", + hLength: 40, + hStyle: "fashionable for a Free Cities 3rd Grade Teacher, up in a tight bun", + pubicHStyle: "bushy", + waist: -55, + vagina: 2, + vaginaLube: 1, + clit: 1, + clitPiercing: 3, + clitSetting: "anal", + boobs: 650, + boobsImplant: 200, + boobsImplantType: "normal", + nipples: "huge", + butt: 3, + face: 15, + faceImplant: 65, + anus: 1, + ovaries: 1, + anusPiercing: 2, + anusTat: "bleached", + makeup: 2, + nails: 2, + earPiercing: 1, + skill: { + vaginal: 15, + oral: 15 + }, + clothes: "nice business attire", + collar: "heavy gold", + shoes: "heels", + intelligence: -40, + attrXY: 40, + fetish: "buttslut", + fetishKnown: 1, + 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." + }, + }, + /* huge nips*/ + { + ID: 900082, + slaveName: "Golden Cobra", + birthName: "Auyala", + origin: "$He was captured from West Central Africa.", + actualAge: 23, + physicalAge: 23, + visualAge: 23, + ovaryAge: 23, + health: {condition: 30}, + devotion: 100, + muscles: 50, + height: 190, + nationality: "Central African", + race: "black", + override_H_Color: 1, + override_Brow_H_Color: 1, + override_Arm_H_Color: 1, + override_Pubic_H_Color: 1, + eye: {origColor: "green"}, + origHColor: "golden blonde with copper streaks", + eyebrowHColor: "blonde", + pubicHColor: "blonde", + underArmHColor: "blonde", + origSkin: "brown", + hLength: 35, + 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", + pubicHStyle: "in a strip", + waist: -55, + boobs: 1450, + nipplesPiercing: 2, + butt: 5, + lips: 55, + vagina: 2, + vaginaLube: 1, + clit: 2, + clitPiercing: 2, + clitSetting: "lesbian", + anus: 2, + ovaries: 1, + anusTat: "bleached", + earPiercing: 1, + skill: { + vaginal: 100, + oral: 100, + anal: 100, + combat: 1 + }, + clothes: "slutty jewelry", + collar: "heavy gold", + shoes: "heels", + intelligence: -30, + attrXX: 80, + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "arrogant", + 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.", + desc: "$He has a streak of ritual scars resembling some very complex snake skin pattern running down $his spine from nape to tail-bone." + } + }, + { + ID: 900083, + slaveName: "'Top' Lillium", + birthName: "Sarah", + actualAge: 42, + physicalAge: 42, + visualAge: 42, + ovaryAge: 42, + health: {condition: 90}, + devotion: 100, + muscles: 20, + height: 190, + eye: {origColor: "green"}, + origHColor: "red", + override_H_Color: 1, + hColor: "deep red", + origSkin: "fair", + hLength: 20, + hStyle: "short and pleasantly frames $his face", + waist: -55, + boobs: 900, + butt: 4, + vagina: 2, + vaginaLube: 1, + clitPiercing: 3, + clitSetting: "all", + anus: 2, + ovaries: 1, + skill: { + vaginal: 100, + oral: 100, + anal: 100, + whoring: 100, + entertainment: 100, + combat: 1 + }, + clothes: "nice business attire", + collar: "heavy gold", + shoes: "flats", + energy: 100, + attrXY: 40, + fetishKnown: 1, + custom: { + tattoo: "$He has a small, grinning harlequin tattoo on $his inner thigh.", + desc: "In place of $his left hand's pinkie finger is a large pink scar that crosses the entire back of $his hand." + } + }, + { + ID: 900084, + slaveName: "Cammy", + birthName: "Viktoriya", + actualAge: 27, + physicalAge: 27, + visualAge: 27, + ovaryAge: 27, + health: {condition: 80}, + devotion: 70, + muscles: 75, + height: 145, + race: "white", + eye: {origColor: "blue"}, + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "pale", + hStyle: "tied back into two long braids", + boobs: 800, + butt: 2.5, + face: 15, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + vaginal: 35, + oral: 100, + anal: 100, + whoring: 15 + }, + entertainment: 15, + clothes: "a comfortable bodysuit", + collar: "pretty jewelry", + shoes: "heels", + attrXY: 40, + fetish: "cumslut", + custom: {desc: "$He has a long horizontal scar on $his left cheek."} + }, + { + ID: 900085, + slaveName: "Sheena", + birthName: "Penelope", + actualAge: 23, + physicalAge: 23, + visualAge: 23, + ovaryAge: 23, + health: {condition: 80}, + devotion: 90, + height: 155, + override_H_Color: 1, + override_Brow_H_Color: 1, + override_Arm_H_Color: 1, + override_Pubic_H_Color: 1, + origHColor: "black with deep red highlights", + eyebrowHColor: "red", + pubicHColor: "red", + underArmHColor: "red", + origSkin: "pale", + hStyle: "long and disheveled", + waist: -55, + boobs: 500, + nipplesPiercing: 1, + butt: 3, + lipsPiercing: 1, + vagina: 1, + vaginaLube: 1, + clitPiercing: 1, + clitSetting: "anal", + anus: 1, + ovaries: 1, + anusTat: "bleached", + makeup: 2, + nails: 2, + earPiercing: 2, + nosePiercing: 1, + navelPiercing: 1, + skill: { + vaginal: 100, + oral: 100, + anal: 35, + whoring: 15 + }, + entertainment: 15, + clothes: "a slutty outfit", + intelligence: -30, + attrXY: 40, + fetish: "buttslut", + fetishKnown: 1, + 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." + }, + }, + { + ID: 900086, + slaveName: "'Funbags' Young", + birthName: "Young", + actualAge: 23, + physicalAge: 23, + visualAge: 23, + ovaryAge: 23, + health: {condition: -10}, + devotion: 90, + height: 175, + nationality: "Korean", + race: "asian", + origHColor: "black", + pubicHColor: "black", + origSkin: "pale", + hLength: 10, + waist: -55, + boobs: 3550, + boobsImplant: 3000, + boobsImplantType: "advanced fillable", + nipplesPiercing: 1, + areolae: 3, + boobsTat: "degradation", + butt: 2, + face: 15, + lipsPiercing: 2, + lipsTat: "degradation", + tonguePiercing: 2, + vaginaLube: 1, + anus: 2, + ovaries: 1, + brand: {chest: "SLUT"}, + skill: { + oral: 100 + }, + aphrodisiacs: 1, + addict: 22, + collar: "shock punishment", + shoes: "heels", + attrXY: 40, + fetish: "cumslut", + fetishKnown: 1 + }, + { + ID: 900087, + slaveName: "Sakura", + birthName: "Sakura", + health: {condition: 100}, + devotion: 100, + muscles: 20, + race: "asian", + origSkin: "dark", + hLength: 25, + hStyle: "short and held back by a white bandana", + boobs: 600, + butt: 4, + faceImplant: 15, + vagina: 1, + vaginaLube: 1, + clit: 1, + clitPiercing: 3, + clitSetting: "humiliation", + anus: 1, + skill: { + vaginal: 100, + oral: 100, + whoring: 100, + entertainment: 100, + combat: 1 + }, + clothes: "a slutty outfit", + collar: "pretty jewelry", + shoes: "heels", + attrXY: 40, + fetish: "humiliation", + fetishKnown: 1, + custom: {desc: "$He is an enthusiastic high school graduate, eager to make $his teacher proud by becoming the greatest slave known to any owner."}, + career: "a student" + }, + { + ID: 900088, + slaveName: "Miss Maree", + birthName: "Tina", + origin: "A former headmistress, $he was sentenced to slavery after $he was caught training $his students to be lesbian trophy slaves.", + actualAge: 42, + physicalAge: 42, + visualAge: 42, + ovaryAge: 42, + health: {condition: 100}, + devotion: -50, + weight: 20, + height: 155, + nationality: "American", + eye: {origColor: "green"}, + origHColor: "red", + pubicHColor: "red", + origSkin: "pale", + hStyle: "in a large bun", + pubicHStyle: "in a strip", + waist: -55, + boobs: 1500, + areolae: 3, + boobsTat: "advertisements", + butt: 6, + face: 15, + lips: 35, + lipsTat: "permanent makeup", + vaginaLube: 1, + bellyAccessory: "a corset", + ovaries: 1, + anusTat: "flowers", + earPiercing: 1, + stampTat: "scenes", + skill: { + vaginal: 15, + oral: 15 + }, + collar: "leather with cowbell", + shoes: "heels", + intelligence: 100, + intelligenceImplant: 30, + attrXX: 80, + attrXY: 0, + fetishKnown: 1, + behavioralFlaw: "bitchy", + sexualFlaw: "hates men", + custom: {desc: "$He absolutely detests men."}, + career: "a principal" + }, + { + ID: 900089, + slaveName: "'Milkmaid' Megan", + birthName: "Megan", + origin: "$He was sold to you from the public slave market, and was probably kidnapped or otherwise forced into slavery.", + actualAge: 34, + physicalAge: 34, + visualAge: 34, + ovaryAge: 34, + health: {condition: 100}, + devotion: 100, + nationality: "American", + origSkin: "light", + hStyle: "long", + pubicHStyle: "bushy", + waist: -55, + boobs: 1350, + lactation: 1, + lactationDuration: 4, + butt: 3, + vagina: 2, + vaginaLube: 1, + vaginaPiercing: 1, + preg: 27, + pregType: 1, + pregWeek: 27, + pregKnown: 1, + belly: 5000, + bellyPreg: 5000, + counter: { + births: 1, + birthsTotal: 1 + }, + anus: 3, + ovaries: 1, + brand: {"right buttock": "SLAVE"}, + earPiercing: 1, + skill: { + vaginal: 100, + oral: 100, + anal: 100, + whoring: 100 + }, + entertainment: 35, + combat: 0, + collar: "heavy gold", + shoes: "flats", + energy: 100, + attrXY: 40, + fetishKnown: 1, + face: 0, + intelligence: 0 + }, + { + ID: 900090, + slaveName: "Horsepussy", + birthName: "Amber", + origin: "$He was sold to you from the public slave market, and was probably kidnapped or otherwise forced into slavery.", + actualAge: 35, + physicalAge: 35, + visualAge: 35, + ovaryAge: 35, + health: {condition: 80}, + devotion: 55.7, + height: 170, + race: "white", + nationality: "American", + eye: {origColor: "blue"}, + origSkin: "pale", + hLength: 10, + boobs: 500, + butt: 5, + vagina: 3, + vaginaLube: 1, + vaginaPiercing: 2, + clitPiercing: 3, + clitSetting: "vanilla", + anus: 3, + ovaries: 1, + anusPiercing: 1, + makeup: 1, + brand: {"right buttock": "SLAVE"}, + earPiercing: 1, + skill: { + vaginal: 100, + oral: 100, + anal: 100, + whoring: 100 + }, + entertainment: 35, + collar: "heavy gold", + shoes: "heels", + intelligence: 96, + intelligenceImplant: 30, + attrXY: 40, + fetishKnown: 1, + custom: { + tattoo: "$His nickname, 'Horsepussy,' is tattooed on $his forehead.", + 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.", + }, + labia: 3 + }, + { + ID: 900091, + slaveName: "Sakura", + birthName: "Mei", + origin: "$He is the winner of a martial arts slave tournament. You won $him in a bet.", + health: {condition: 80}, + devotion: 40, + muscles: 20, + nationality: "Japanese", + race: "asian", + origHColor: "black", + hStyle: "long, tied into a neat ponytail", + boobs: 300, + butt: 1, + face: 15, + vaginaLube: 1, + clitPiercing: 3, + clitSetting: "submissive", + analArea: 1, + ovaries: 1, + skill: { + combat: 1 + }, + clothes: "choosing her own clothes", + collar: "pretty jewelry", + shoes: "heels", + intelligence: 30, + intelligenceImplant: 30, + attrXY: 40, + fetish: "submissive", + fetishKnown: 1, + custom: { + tattoo: "$He has a tattoo of falling cherry petals on $his back, starting at $his shoulder blades, down to $his butt.", + 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." + }, + career: "a kunoichi" + }, + { + ID: 900092, + slaveName: "Zhao Li", + birthName: "Zhao Li", + origin: "$He was caught and enslaved while working undercover.", + actualAge: 35, + physicalAge: 35, + visualAge: 35, + ovaryAge: 35, + health: {condition: 100}, + devotion: 100, + muscles: 100, + height: 175, + race: "asian", + pubicHColor: "black", + origSkin: "pale", + hStyle: "long, but tied into Chinese buns.", + pubicHStyle: "in a strip", + boobs: 755, + butt: 4, + face: 15, + vagina: 1, + vaginaLube: 1, + clit: 1, + clitPiercing: 3, + clitSetting: "all", + anus: 2, + skill: { + vaginal: 100, + oral: 100, + anal: 100, + entertainment: 15, + combat: 1 + }, + clothes: "a comfortable bodysuit", + collar: "pretty jewelry", + shoes: "heels", + intelligence: 100, + intelligenceImplant: 30, + energy: 100, + attrXY: 40, + fetishStrength: 100, + fetishKnown: 1, + 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."}, + career: "a police detective" + }, + { + ID: 900093, + slaveName: "'Virago' Kissa", + birthName: "", + birthSurname: "", + origin: "In spite of the great demand for $his kind, $he has apparently eluded enslavement until recently.", + career: "a wanderer", + prestige: 1, + prestigeDesc: "$He is a natural albino.", + health: {condition: 100}, + devotion: 100, + muscles: 50, + height: 190, + nationality: "Ugandan", + race: "black", + hLength: 100, + hStyle: "extremely long and bushy", + pubicHStyle: "bushy", + waist: -55, + boobs: 600, + face: 55, + lips: 35, + vaginaLube: 1, + clitPiercing: 3, + clitSetting: "oral", + ovaries: 1, + anusTat: "bleached", + skill: { + oral: 100, + whoring: 100, + entertainment: 100, + combat: 3 + }, + rules: { + living: "luxurious", + speech: "permissive", + release: { + masturbation: 1, + partner: 1, + family: 1, + slaves: 1, + } + }, + collar: "pretty jewelry", + shoes: "flats", + intelligence: 100, + intelligenceImplant: 30, + attrXY: 40, + fetish: "cumslut", + fetishKnown: 1, + behavioralFlaw: "odd", + geneticQuirks: { + albinism: 2 + }, + albinismOverride: { + eyeColor: "pale grey", + hColor: "white", + skin: "extremely pale" + }, + 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.", + desc: "$His eyes are unsettling; though $his irises are a pale grey color, in some lights the whole eye takes on a red cast." + }, + }, + { + ID: 900094, + slaveName: "Annabelle", + birthName: "Annabelle", + origin: "$He came to be a slave not long after fleeing farm life for the Free Cities.", + health: {condition: 20}, + devotion: -65, + height: 155, + nationality: "American", + race: "white", + eye: {origColor: "blue"}, + origHColor: "blonde", + pubicHColor: "blonde", + override_Skin: 1, + origSkin: "sun tanned", + hStyle: "braided into pigtails", + pubicHStyle: "bushy", + waist: -55, + boobs: 500, + butt: 4, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + oral: 15, + anal: 15 + }, + whoring: 15, + attrXY: 40, + behavioralFlaw: "hates women", + custom: {desc: "The pale skin within $his tan lines is lightly freckled."}, + markings: "freckles", + career: "a farmer" + }, + { + ID: 900095, + slaveName: "'Vampire' Elvira", + birthName: "Elvira", + career: "a service worker", + actualAge: 20, + physicalAge: 20, + visualAge: 20, + ovaryAge: 20, + health: {condition: 90}, + devotion: 100, + height: 145, + nationality: "Swedish", + race: "white", + eye: {origColor: "blue"}, + origHColor: "red", + pubicHColor: "red", + override_Skin: 1, + origSkin: "sun tanned", + hLength: 85, + hStyle: "ass-length", + waist: -55, + boobs: 650, + boobsImplant: 200, + boobsImplantType: "normal", + nipplesPiercing: 2, + butt: 3, + buttImplant: 1, + buttImplantType: "normal", + face: 55, + faceImplant: 15, + lips: 35, + tonguePiercing: 1, + vagina: 3, + vaginaLube: 1, + clitPiercing: 1, + anus: 3, + ovaries: 1, + brand: {"right buttock": "your initials"}, + skill: { + vaginal: 100, + oral: 100, + anal: 100, + whoring: 100, + entertainment: 15 + }, + rules: { + living: "luxurious", + }, + clothes: "choosing her own clothes", + collar: "heavy gold", + intelligenceImplant: 30, + energy: 100, + attrXY: 40, + fetishKnown: 1 + }, + { + ID: 900096, + slaveName: "'Creamy' Mayu", + birthName: "Mayu", + actualAge: 19, + physicalAge: 19, + visualAge: 19, + ovaryAge: 19, + health: {condition: 100}, + devotion: 100, + weight: 20, + height: 190, + nationality: "Japanese", + race: "asian", + eye: {origColor: "blue"}, + origHColor: "black", + pubicHColor: "black", + origSkin: "pale", + hStyle: "long", + waist: -55, + boobs: 7500, + nipples: "huge", + areolae: 3, + boobsTat: "bovine patterns", + lactation: 2, + lactationDuration: 2, + butt: 7, + buttTat: "bovine patterns", + face: 15, + faceImplant: 65, + lips: 35, + lipsTat: "bovine patterns", + vagina: 2, + vaginaLube: 1, + vaginaTat: "bovine patterns", + counter: { + births: 1, + birthsTotal: 1, + }, + anus: 1, + ovaries: 1, + anusTat: "bovine patterns", + earPiercing: 1, + shouldersTat: "bovine patterns", + armsTat: "bovine patterns", + legsTat: "bovine patterns", + stampTat: "bovine patterns", + skill: { + vaginal: 100, + oral: 100 + }, + rules: { + living: "luxurious", + speech: "permissive", + release: { + masturbation: 1, + partner: 1, + family: 1, + slaves: 1, + }, + relationship: "permissive", + }, + clothes: "a nice maid outfit", + collar: "leather with cowbell", + shoes: "flats", + intelligence: 30, + attrXY: 40, + fetish: "boobs", + fetishKnown: 1, + custom: { + desc: "$He is quite sweaty, often soaking though any clothing $he is wearing." + }, + }, + { + ID: 900097, + slaveName: "'Submissive' Cindy", + birthName: "Cindy", + health: {condition: 100}, + devotion: 100, + muscles: 20, + height: 175, + nationality: "Indonesian", + race: "asian", + origHColor: "black", + pubicHColor: "black", + origSkin: "pale", + hLength: 0, + hStyle: "shaved bald", + pubicHStyle: "bushy", + boobs: 600, + nipplesPiercing: 1, + boobsTat: "tribal patterns", + butt: 2, + buttTat: "tribal patterns", + face: 55, + faceImplant: 15, + lips: 35, + lipsPiercing: 1, + lipsTat: "tribal patterns", + tonguePiercing: 1, + vaginaLube: 1, + vaginaPiercing: 1, + vaginaTat: "tribal patterns", + preg: -2, + clitPiercing: 3, + clitSetting: "all", + ovaries: 1, + anusPiercing: 1, + anusTat: "bleached", + earPiercing: 1, + nosePiercing: 1, + eyebrowPiercing: 1, + navelPiercing: 1, + shouldersTat: "tribal patterns", + armsTat: "tribal patterns", + legsTat: "tribal patterns", + stampTat: "tribal patterns", + skill: { + oral: 35, + combat: 1 + }, + rules: { + living: "luxurious", + speech: "permissive", + release: { + masturbation: 1, + partner: 1, + family: 1, + slaves: 1, + }, + relationship: "permissive" + }, + clothes: "attractive lingerie", + collar: "pretty jewelry", + shoes: "heels", + intelligence: -70, + intelligenceImplant: 30, + energy: 100, + attrXY: 40, + fetishKnown: 1, + custom: { + tattoo: "$He has a barcode tattooed on the top of $his head.", + desc: "$His skin is unnaturally perfect, totally without blemishes. $He radiates unnatural health and resilience." + }, + }, + { + ID: 900098, + slaveName: "Anna", + birthName: "Anna", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: 60, + height: 175, + origSkin: "white", + hLength: 10, + boobs: 800, + butt: 3, + vaginaLube: 1, + analArea: 1, + ovaries: 1, + attrXY: 40, + fetishKnown: 1 + }, +]; +/* Removed eyecolor customdesc -BoneyM*/ +App.Data.HeroSlaves.Dextreme = [ + { + ID: 900099, + slaveName: "Mouse", + birthName: "Mouse", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: -50, + weight: 20, + height: 152, + override_H_Color: 1, + pubicHColor: "purple", + origSkin: "pale", + eye: {origColor: "blue"}, + origHColor: "purple", + hLength: 10, + boobs: 1000, + areolae: 1, + butt: 5, + lipsTat: "permanent makeup", + vagina: 1, + vaginaLube: 1, + anus: 1, + analArea: 1, + ovaries: 1, + attrXY: 40, + fetishKnown: 1, + voice: 0, + nipples: "puffy", + removedLimbs: [1, 1, 1, 1] + }, + /* Increased nipples and areolae, changed eye color, added mute -BoneyM*/ + { + ID: 900100, + slaveName: "Box", + birthName: "Box", + origin: "When you took $him from $his previous owner, $he was locked into a beautiful rosewood box lined with red velvet, crying.", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + devotion: -75, + weight: 20, + override_Brow_H_Color: 1, + override_Arm_H_Color: 1, + override_Pubic_H_Color: 1, + eyebrowHColor: "blonde", + pubicHColor: "blonde", + underArmHColor: "blonde", + origSkin: "pale", + origHColor: "golden blonde", + hStyle: "long", + boobs: 400, + butt: 2, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + vaginal: 15, + oral: 15, + anal: 15 + }, + intelligence: -50, + attrXY: 40, + fetishKnown: 1, + custom: {desc: "$His amputation sites have titanium rings that go through to the bone. $He has been chemically blinded."}, + removedLimbs: [1, 1, 1, 1], + eye: { + left: { + vision: 0 + }, + right: { + vision: 0 + } + } + }, + /* 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 */ + { + ID: 900101, + slaveName: "Yukiko", + birthName: "Yukiko", + actualAge: 19, + physicalAge: 19, + visualAge: 19, + ovaryAge: 19, + health: {condition: 20}, + devotion: 100, + weight: -20, + race: "asian", + origHColor: "black", + pubicHColor: "black", + origSkin: "very fair", + hStyle: "long, and in a hime cut", + boobs: 500, + butt: 3, + vaginaLube: 1, + ovaries: 1, + clothes: "a slave gown", + intelligence: -40, + intelligenceImplant: 30, + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "odd", + custom: {desc: "$He is a work of art: stoic, mysterious, doll-like, — and always smiling."}, + voice: 0, + removedLimbs: [1, 1, 1, 1], + }, + + /* not much to change, lowered weight ('perfect slim body'), set to mute and changed flaw to odd- described as creepy */ + { + ID: 900102, + slaveName: "'Fucknugget' Pillow", + birthName: "Anika", + origin: "$He sold $himself into slavery to escape life on the streets.", + actualAge: 37, + physicalAge: 37, + visualAge: 37, + ovaryAge: 37, + health: {condition: 80}, + devotion: 100, + weight: 40, + origRace: "white", + override_Race: 1, + race: "latina", + eye: {origColor: "blue"}, + origHColor: "red", + pubicHColor: "red", + hStyle: "long", + waist: -100, + boobs: 6260, + boobsImplant: 4200, + boobsImplantType: "string", + nipplesPiercing: 2, + areolae: 3, + boobsTat: "flowers", + lactation: 2, + lactationDuration: 2, + butt: 12, + buttImplant: 1, + buttImplantType: "normal", + buttTat: "flowers", + face: 55, + faceImplant: 15, + lips: 55, + lipsImplant: 10, + lipsPiercing: 2, + lipsTat: "flowers", + tonguePiercing: 2, + vagina: 3, + vaginaLube: 1, + vaginaPiercing: 2, + vaginaTat: "flowers", + preg: 37, + pregType: 1, + pregWeek: 37, + pregKnown: 1, + belly: 13000, + bellyPreg: 13000, + counter: { + births: 2, + birthsTotal: 2 + }, + clitPiercing: 3, + clitSetting: "boobs", + anus: 2, + ovaries: 1, + anusPiercing: 2, + anusTat: "flowers", + makeup: 3, + earPiercing: 2, + nosePiercing: 2, + eyebrowPiercing: 2, + navelPiercing: 2, + shouldersTat: "advertisements", + stampTat: "flowers", + skill: { + vaginal: 100, + oral: 100, + anal: 100, + whoring: 15 + }, + aphrodisiacs: 1, + addict: 99, + clothes: "restrictive latex", + collar: "leather with cowbell", + intelligence: -70, + intelligenceImplant: 30, + attrXY: 40, + fetish: "boobs", + fetishKnown: 1, + removedLimbs: [1, 1, 1, 1] + }, + { + ID: 900103, + slaveName: "'DoL Toy' Allie", + birthName: "Aliana", + origin: "$He is an enslaved member of an anti-slavery extremist group.", + actualAge: 33, + physicalAge: 33, + visualAge: 33, + ovaryAge: 33, + health: {condition: 80}, + devotion: 65, + height: 155, + nationality: "Mexican", + race: "latina", + override_H_Color: 1, + origHColor: "raven black with red highlights", + origSkin: "brown", + hLength: 10, + waist: -55, + boobs: 700, + butt: 3, + face: 15, + lips: 35, + lipsTat: "permanent makeup", + vagina: 2, + vaginaLube: 1, + bellyAccessory: "an extreme corset", + clitPiercing: 3, + clitSetting: "submissive", + anus: 2, + ovaries: 1, + stampTat: "degradation", + skill: { + vaginal: 100, + oral: 100, + anal: 100, + whoring: 35, + entertainment: 15 + }, + collar: "heavy gold", + shoes: "heels", + intelligence: 25, + intelligenceImplant: 30, + attrXY: 40, + fetish: "submissive", + fetishKnown: 1, + 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."} + }, + { + ID: 900104, + slaveName: "'Onahole' Lian the Liberty Whore", + birthName: "Lian", + origin: "$He is an enslaved member of an anti-slavery extremist group.", + actualAge: 27, + physicalAge: 27, + visualAge: 27, + ovaryAge: 27, + health: { + condition: -50, + shortDamage: 10, + longDamage: 10 + }, + devotion: 100, + muscles: 20, + nationality: "Chinese", + race: "asian", + origHColor: "black", + pubicHColor: "black", + origSkin: "pale", + hLength: 0, + hStyle: "shaved bald", + waist: -100, + boobs: 2000, + boobsImplant: 600, + boobsImplantType: "normal", + areolae: 2, + butt: 8, + face: 55, + faceImplant: 65, + vagina: 3, + vaginaLube: 1, + clit: 2, + anus: 2, + skill: { + vaginal: 100, + oral: 100, + anal: 100, + whoring: 100 + }, + collar: "shock punishment", + shoes: "flats", + intelligence: 25, + intelligenceImplant: 30, + energy: 100, + attrXY: 40, + fetishKnown: 1, + removedLimbs: [1, 1, 1, 1], + }, + { + ID: 900105, + slaveName: "'Quiet' Fay", + birthName: "", + birthSurname: "", + 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.", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: -20}, + devotion: -100, + height: 145, + origHColor: "brown", + pubicHColor: "brown", + origSkin: "white", + hStyle: "long and disheveled", + boobs: 400, + butt: 2, + vaginaLube: 1, + ovaries: 1, + skill: { + oral: 15 + }, + clothes: "a nice maid outfit", + attrXY: 40, + fetish: "submissive", + custom: { + tattoo: "There's an 'X' imprinted on $his throat where $his larynx would be.", + desc: "$He earned $his name from $his permanent silence and fae physique." + }, + voice: 0 + }, + { + ID: 900106, + slaveName: "Flora", + birthName: "Flora", + health: {condition: 20}, + devotion: 25, + weight: -20, + height: 155, + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "white", + hStyle: "long", + boobs: 300, + butt: 1, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + vaginal: 35, + oral: 100, + anal: 35 + }, + energy: 100, + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "bitchy", + custom: {desc: "$He fits perfectly into a pillowcase."}, + removedLimbs: [1, 1, 1, 1], + }, + /* bitchy arrogant*/ + /* Added 'bitchy' quirk, reduced height and weight, added customdesc -BoneyM*/ + { + ID: 900107, + slaveName: "Cunt", + birthName: "Cunt", + actualAge: 19, + physicalAge: 19, + visualAge: 19, + ovaryAge: 19, + health: {condition: -10}, + devotion: 10, + race: "white", + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "white", + hLength: 30, + hStyle: "shoulder length", + heels: 1, + boobs: 800, + boobsImplant: 600, + boobsImplantType: "normal", + butt: 4, + buttImplant: 2, + buttImplantType: "normal", + vagina: 2, + vaginaLube: 1, + vaginaPiercing: 2, + clitPiercing: 1, + anus: 2, + anusTat: "tribal patterns", + nosePiercing: 1, + skill: { + vaginal: 15, + oral: 15, + anal: 35 + }, + intelligence: -70, + attrXY: 40, + attrKnown: 0, + fetish: "mindbroken", + fetishKnown: 1 + }, + /* mindbroken*/ + /* Tweaked smart piercing setting, corrected piercings -BoneyM*/ + { + ID: 900108, + slaveName: "Fleshlight", + birthName: "Fleshlight", + origin: "Nothing remains of the person $he originally was, either mentally or physically.", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: 60, + race: "white", + eye: {origColor: "blue"}, + origHColor: "blonde", + pubicHColor: "blonde", + override_Skin: 1, + origSkin: "spray tanned", + hStyle: "long", + waist: -55, + boobs: 800, + boobsImplant: 600, + boobsImplantType: "normal", + butt: 5, + buttImplant: 2, + buttImplantType: "normal", + lips: 55, + lipsImplant: 2, + lipsTat: "permanent makeup", + vagina: 2, + vaginaLube: 1, + anus: 2, + ovaries: 1, + makeup: 3, + nails: 3, + skill: { + vaginal: 35, + oral: 35, + anal: 35 + }, + shoes: "heels", + attrXY: 40, + fetish: "mindbroken", + fetishKnown: 1, + custom: {desc: "$He has many surgical scars and something seems off about $him."}, + scar: { + "left breast": { + burn: 0, + chain: 0, + cutting: 0, + exotic: 0, + generic: 0, + menacing: 0, + surgical: 2, + whip: 0 + }, + "right breast": { + burn: 0, + chain: 0, + cutting: 0, + exotic: 0, + generic: 0, + menacing: 0, + surgical: 2, + whip: 0 + }, + "left buttock": { + burn: 0, + chain: 0, + cutting: 0, + exotic: 0, + generic: 0, + menacing: 0, + surgical: 2, + whip: 0 + }, + "right buttock": { + burn: 0, + chain: 0, + cutting: 0, + exotic: 0, + generic: 0, + menacing: 0, + surgical: 2, + whip: 0 + }, + } + }, + /* heels*/ + /* Added origin, makeup and nails, changed eyes -BoneyM*/ + { + ID: 900109, + slaveName: "Whore", + birthName: "Whore", + actualAge: 19, + physicalAge: 19, + visualAge: 19, + ovaryAge: 19, + health: {condition: 20}, + devotion: 100, + height: 155, + origSkin: "white", + hStyle: "long and in a braid", + boobs: 400, + butt: 2, + vagina: 1, + vaginaLube: 1, + anus: 1, + ovaries: 1, + skill: { + vaginal: 15, + oral: 15, + anal: 15 + }, + attrXY: 40, + fetish: "mindbroken", + fetishKnown: 1, + custom: { + desc: "$He is a complete mental blank; to $him, there is only the Master." + }, + /* Fixed customdesc syntax, changed hair from blue -BoneyM*/ + }, + { + ID: 900110, + slaveName: "Camille", + birthName: "Camille", + origin: "$He is half of a famous musical duo, along with $his twin sister. They fled to the Free Cities.", + career: "an aspiring pop star", + prestige: 1, + prestigeDesc: "$He is a famed singer; citizens would pay top prices to feel $his mouth around their dicks.", + birthWeek: 16, + actualAge: 23, + physicalAge: 23, + visualAge: 23, + ovaryAge: 23, + health: {condition: 40}, + weight: -10, + muscles: 10, + height: 170, + nationality: "American", + race: "white", + eye: {origColor: "blue"}, + origHColor: "blonde", + origSkin: "pale", + hLength: 60, + hStyle: "neat, with thick luxurious bangs.", + waist: -55, + voice: 2, + boobs: 300, + boobShape: "perky", + butt: 2, + face: 100, + lips: 25, + earPiercing: 1, + skill: { + oral: 15, + entertainment: 100 + }, + energy: 50, + attrXX: 80, + fetish: "boobs", + fetishStrength: 70, + behavioralFlaw: "arrogant", + sexualFlaw: "hates men", + custom: {desc: "$He has an identical twin sister named Kennerly, from whom $he hates to be parted. They're from the former United States."}, + mother: -9999, + father: -9998 + }, + { + ID: 900111, + slaveName: "Kennerly", + birthName: "Kennerly", + origin: "$He is half of a famous musical duo, along with $his twin sister. They fled to the Free Cities.", + career: "an aspiring pop star", + prestige: 1, + prestigeDesc: "$He is a famed singer; citizens would pay top prices to feel $his mouth around their dicks.", + birthWeek: 16, + actualAge: 23, + physicalAge: 23, + visualAge: 23, + ovaryAge: 23, + health: {condition: 40}, + weight: 10, + height: 167, + nationality: "American", + race: "white", + markings: "beauty mark", + eye: {origColor: "blue"}, + origHColor: "blonde", + origSkin: "pale", + hLength: 60, + hStyle: "neat, with thick luxurious bangs.", + waist: -55, + voice: 2, + boobs: 500, + boobShape: "perky", + butt: 2, + face: 100, + lips: 15, + earPiercing: 1, + navelPiercing: 1, + skill: { + oral: 15, + entertainment: 100 + }, + energy: 50, + attrXX: 80, + fetish: "boobs", + fetishStrength: 70, + behavioralFlaw: "arrogant", + sexualFlaw: "hates men", + custom: {desc: "$He has an identical twin sister named Camille, from whom $he hates to be parted. They're from the former United States."}, + mother: -9999, + father: -9998 + }, +]; + +/* +{ + App.Entity.SlaveState.makeSkeleton()}, +{ + slaveName: "STANDARD", birthName: "STANDARD", ID: _i++, actualAge: 21, physicalAge: 21, visualAge: 21, ovaryAge: 21, health: {condition: 20}, devotion: 60, origHColor: "blonde", pubicHColor: "blonde", origSkin: "white", hStyle: "long", boobs: 500, butt: 3, vagina: 1, vaginaLube: 1, anus: 1, anusTat: "bleached", skill: {vaginal: 0, skill: {oral: 0, skill: {anal: 0, attrXY: 40, fetishKnown: 1}, +*/ diff --git a/src/npc/databases/dSlavesDatabase.tw b/src/npc/databases/dSlavesDatabase.tw deleted file mode 100644 index 3635ebfaf5c678d031238b1d6e51aa8b83a8139a..0000000000000000000000000000000000000000 --- a/src/npc/databases/dSlavesDatabase.tw +++ /dev/null @@ -1,606 +0,0 @@ -:: D Slaves Database - -<<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, setHealth(_HS, 20), _HS.devotion = 100, _HS.weight = 25, _HS.origHColor = "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.eyewear = "corrective glasses">> -<<run eyeSurgery(_HS, "both", "blur")>> -<<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, setHealth(_HS, 20), _HS.devotion = 100, _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "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), setHealth(_HS, 20), _HS.devotion = -25, _HS.origHColor = "light brown", _HS.pubicHColor = "light brown", _HS.origSkin = "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, setHealth(_HS, 60), _HS.devotion = -75, _HS.height = 190, _HS.muscles = 20, _HS.race = "white", _HS.origHColor = "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), setHealth(_HS, 20), _HS.height = 157, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hLength = 20, _HS.hStyle = "chin-length with bangs over one eye", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.boobsImplantType = "normal", _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, setHealth(_HS, 20), _HS.devotion = 20, _HS.weight = -20, _HS.height = 155, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "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), setHealth(_HS, 20), _HS.devotion = -75, _HS.weight = -20, _HS.eye.origColor = "green", _HS.origHColor = "dirty blonde", _HS.pubicHColor = "dirty blonde", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 20, _HS.height = 175, _HS.eye.origColor = "grey", _HS.origHColor = "dirty blonde", _HS.pubicHColor = "dirty blonde", _HS.origSkin = "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, setHealth(_HS, 40), _HS.devotion = -100, _HS.muscles = 20, _HS.height = 183, _HS.race = "black", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "black", _HS.hStyle = "long and curly", _HS.boobs = 1400, _HS.boobsImplant = 800, _HS.boobsImplantType = "normal", _HS.nipplesPiercing = 2, _HS.boobsTat = "degradation", _HS.butt = 6, _HS.buttImplant = 3, _HS.buttImplantType = "normal", _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, setHealth(_HS, 40), _HS.devotion = 20, _HS.nationality = "American", _HS.eye.origColor = "blue", _HS.origHColor = "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.eyewear = "corrective glasses">> -<<run eyeSurgery(_HS, "both", "blur")>> -<<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, setHealth(_HS, 20), _HS.devotion = 30, _HS.height = 155, _HS.eye.origColor = "green", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "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, setHealth(_HS, -10), _HS.devotion = 15, _HS.weight = -20, _HS.height = 152, _HS.markings = "freckled", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "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", setHealth(_HS, -10), _HS.devotion = 10, _HS.origHColor = "black", _HS.hLength = 10, _HS.pubicHColor = "black", _HS.override_Skin = 1, _HS.origSkin = "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, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = -30, _HS.height = 175, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = -100, _HS.weight = 40, _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = -100, _HS.weight = -20, _HS.height = 175, _HS.hLength = 15, _HS.override_Skin = 1, _HS.origSkin = "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, setHealth(_HS, 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.override_Pubic_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), setHealth(_HS, 20), _HS.devotion = 10, _HS.weight = -20, _HS.height = 163, _HS.race = "white", _HS.eye.origColor = "green", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "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), setHealth(_HS, 20), _HS.devotion = -50, _HS.weight = -20, _HS.eye.origColor = "amber", _HS.origHColor = "brown", _HS.override_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.hColor = "purple", _HS.pubicHColor = "purple", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = -75, _HS.height = 175, _HS.hStyle = "long", _HS.origHColor = "brown", _HS.pubicHColor = "brown", _HS.origSkin = "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, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 100, _HS.height = 175, _HS.eye.origColor = "green", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.boobsImplantType = "normal", _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, setHealth(_HS, 40), _HS.devotion = 15, _HS.height = 155, _HS.race = "latina", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "brown", _HS.hLength = 25, _HS.hStyle = "in a bob", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.boobsImplantType = "normal", _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, setHealth(_HS, 20), _HS.devotion = 100, _HS.height = 178, _HS.origHColor = "brown", _HS.pubicHColor = "brown", _HS.origSkin = "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), setHealth(_HS, 20), _HS.devotion = -40, _HS.height = 155, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 10, _HS.height = 155, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "strawberry blonde", _HS.pubicHColor = "strawberry blonde", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 15, _HS.height = 175, _HS.eye.origColor = "blue", _HS.origHColor = "brown", _HS.pubicHColor = "brown", _HS.hStyle = "long", _HS.boobs = 1000, _HS.boobsImplant = 600, _HS.boobsImplantType = "normal", _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, setHealth(_HS, 20), _HS.devotion = -75, _HS.height = 155, _HS.boobs = 1200, _HS.boobsImplant = 1000, _HS.boobsImplantType = "normal", _HS.butt = 4, _HS.buttImplant = 3, _HS.buttImplantType = "normal", _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, setHealth(_HS, 20), _HS.devotion = 25, _HS.height = 175, _HS.origHColor = "brown", _HS.pubicHColor = "brown", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 25, _HS.height = 155, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "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, setHealth(_HS, 40), _HS.devotion = 25, _HS.height = 175, _HS.race = "white", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = -75, _HS.height = 157, _HS.eye.origColor = "blue", _HS.origSkin = "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), setHealth(_HS, 20), _HS.devotion = 60, _HS.weight = -20, _HS.height = 155, _HS.eye.origColor = "blue", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 60, _HS.race = "white", _HS.origHColor = "brunette", _HS.pubicHColor = "brunette", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 90, _HS.race = "middle eastern", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "light olive", _HS.hLength = 80, _HS.hStyle = "very long", _HS.boobs = 650, _HS.boobsImplant = 600, _HS.boobsImplantType = "normal", _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, setHealth(_HS, 20), _HS.devotion = 40, _HS.weight = -20, _HS.height = 155, _HS.race = "indo-aryan", _HS.eye.origColor = "grey", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "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), setHealth(_HS, 20), _HS.devotion = 60, _HS.height = 155, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 20, _HS.weight = -20, _HS.race = "white", _HS.eye.origColor = "green", _HS.override_H_Color = 1, _HS.origHColor = "black", _HS.hColor = "black with blue highlights", _HS.origSkin = "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, setHealth(_HS, 40), _HS.devotion = -75, _HS.height = 155, _HS.race = "white", _HS.eye.origColor = "blue-green", _HS.override_H_Color = 1, _HS.origHColor = "blue", _HS.pubicHColor = "blue", _HS.override_Skin = 1, _HS.origSkin = "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.">> -<<run eyeSurgery(_HS, "both", "blind")>> -<<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, setHealth(_HS, 20), _HS.devotion = 90, _HS.race = "white", _HS.eye.origColor = "green", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 25, _HS.weight = -20, _HS.height = 157, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "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, setHealth(_HS, 60), _HS.devotion = 35, _HS.height = 165, _HS.muscles = 20, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "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, setHealth(_HS, 40), _HS.devotion = 100, _HS.height = 190, _HS.markings = "freckled", _HS.race = "white", _HS.eye.origColor = "green", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 60, _HS.muscles = 20, _HS.height = 150, _HS.race = "mixed race", _HS.eye.origColor = "hazel", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 100, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "golden", _HS.pubicHColor = "golden", _HS.origSkin = "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), setHealth(_HS, 20), _HS.devotion = 75, _HS.weight = -20, _HS.height = 180, _HS.origHColor = "black", _HS.pubicHStyle = "black", _HS.origSkin = "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, setHealth(_HS, -7), _HS.devotion = 25, _HS.race = "white", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = -75, _HS.override_Skin = 1, _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 40, _HS.weight = 20, _HS.race = "white", _HS.eye.origColor = "green", _HS.origHColor = "strawberry blonde", _HS.pubicHColor = "strawberry blonde", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 40, _HS.weight = 20, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "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, setHealth(_HS, 40), _HS.devotion = -50, _HS.muscles = 20, _HS.race = "black", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 10, _HS.height = 145, _HS.origHColor = "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.buttImplantType = "normal", _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, setHealth(_HS, 20), _HS.devotion = 25, _HS.weight = 20, _HS.height = 155, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = -75, _HS.height = 175, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 40, _HS.race = "white", _HS.origSkin = "white", _HS.eye.origColor = "blue", _HS.override_H_Color = 1, _HS.origHColor = "brown", _HS.hColor = "pale blonde", _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, setHealth(_HS, 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, setHealth(_HS, 20), _HS.devotion = -100, _HS.height = 175, _HS.race = "white", _HS.eye.origColor = "green", _HS.origHColor = "dark brown", _HS.pubicHColor = "dark brown", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = -25, _HS.race = "white", _HS.override_H_Color = 1, _HS.origHColor = "red", _HS.hColor = "bright red", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = -25, _HS.weight = 20, _HS.height = 157, _HS.origSkin = "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, setHealth(_HS, 40), _HS.devotion = 75, _HS.height = 175, _HS.race = "black", _HS.eye.origColor = "brown", _HS.override_Eye_Color = 1, _HS.override_H_Color = 1, _HS.origHColor = "white", _HS.origSkin = "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">> -<<run setEyeColor(_HS, "purple")>> -<<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, setHealth(_HS, 1), _HS.devotion = 60, _HS.race = "asian", _HS.origHColor = "dark", _HS.pubicHColor = "dark", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 60, _HS.weight = -20, _HS.nationality = "Russian", _HS.race = "white", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hLength = 170, _HS.hStyle = "neat", _HS.waist = -55, _HS.heels = 1, _HS.boobs = 1200, _HS.boobsImplant = 800, _HS.boobsImplantType = "fillable", _HS.nipplesPiercing = 2, _HS.lactation = 1, _HS.lactationDuration = 2, _HS.butt = 6, _HS.buttImplant = 3, _HS.buttImplantType = "fillable", _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, setHealth(_HS, 20), _HS.devotion = -25, _HS.height = 155, _HS.race = "white", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "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), setHealth(_HS, -20), _HS.devotion = -75, _HS.height = 155, _HS.eye.origColor = "dark", _HS.origHColor = "dark", _HS.origSkin = "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">> -<<run setEyeColorFull(_HS, "", "almond-shaped", "", "both")>> -<<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, setHealth(_HS, 20), _HS.devotion = 10, _HS.muscles = 20, _HS.height = 180, _HS.origHColor = "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, setHealth(_HS, 40), _HS.devotion = 100, _HS.height = 178, _HS.override_H_Color = 1, _HS.origHColor = "white", _HS.pubicHColor = "white", _HS.origSkin = "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, setHealth(_HS, 60), _HS.devotion = -25, _HS.height = 175, _HS.override_H_Color = 1, _HS.race = "asian", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 25, _HS.height = 175, _HS.origRace = "white", _HS.race = "black", _HS.eye.origColor = "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.origHColor = "fair blonde", _HS.eyebrowHColor = "blonde", _HS.pubicHColor = "blonde", _HS.underArmHColor = "blonde", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = -90, _HS.override_H_Color = 1, _HS.race = "white", _HS.origHColor = "pink", _HS.pubicHColor = "pink", _HS.origSkin = "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, setHealth(_HS, 80, 0, 0, 0), _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.origHColor = "black and oily", _HS.eyebrowHColor = "black", _HS.pubicHColor = "black", _HS.underArmHColor = "black", _HS.origSkin = "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.eyewear = "corrective glasses", _HS.clothes = "a niqab and abaya", _HS.hips = 2>> -<<run eyeSurgery(_HS, "both", "blur")>> -<<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, setHealth(_HS, 50), _HS.devotion = -100, _HS.height = 165, _HS.weight = -20, _HS.muscles = 20, _HS.race = "mixed race", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "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, setHealth(_HS, 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.origHColor = "dark red", _HS.eyebrowHColor = "red", _HS.pubicHColor = "red", _HS.underArmHColor = "red", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 25, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 30, _HS.height = 155, _HS.race = "white", _HS.eye.origColor = "blue-green", _HS.override_H_Color = 1, _HS.origHColor = "red", _HS.hColor = "bright red", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 45, _HS.height = 145, _HS.race = "asian", _HS.override_Eye_Color = 1, _HS.override_H_Color = 1, _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "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), setHealth(_HS, 20), _HS.devotion = -55, _HS.muscles = 20, _HS.height = 145, _HS.race = "white", _HS.eye.origColor = "bright blue", _HS.origHColor = "white-blonde", _HS.pubicHColor = "white-blonde", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 100, _HS.height = 190, _HS.eye.origColor = "hazel", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "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, setHealth(_HS, 80, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 50, _HS.height = 190, _HS.race = "black", _HS.origHColor = "black", _HS.pubicHColor = "brown", _HS.origSkin = "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, setHealth(_HS, 13), _HS.devotion = 100, _HS.muscles = 100, _HS.height = 190, _HS.eye.origColor = "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 = "white with red stripes", _HS.eyebrowHColor = "white", _HS.pubicHColor = "white", _HS.underArmHColor = "white", _HS.override_Skin = 1, _HS.origSkin = "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>> -<<run eyeSurgery(_HS, "both", "blind")>> -<<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, setHealth(_HS, 30), _HS.devotion = 60, _HS.height = 145, _HS.origSkin = "pale", _HS.eye.origColor = "violet", _HS.origHColor = "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, setHealth(_HS, 70), _HS.devotion = 100, _HS.height = 155, _HS.markings = "none", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "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.boobsImplantType = "normal", _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, setHealth(_HS, 30), _HS.devotion = 100, _HS.muscles = 50, _HS.height = 190, _HS.nationality = "Central African", _HS.race = "black", _HS.override_H_Color = 1, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.eye.origColor = "green", _HS.origHColor = "golden blonde with copper streaks", _HS.eyebrowHColor = "blonde", _HS.pubicHColor = "blonde", _HS.underArmHColor = "blonde", _HS.origSkin = "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, setHealth(_HS, 90, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 20, _HS.height = 190, _HS.eye.origColor = "green", _HS.origHColor = "red", _HS.override_H_Color = 1, _HS.hColor = "deep red", _HS.origSkin = "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, setHealth(_HS, 80, 0, 0, 0), _HS.devotion = 70, _HS.muscles = 75, _HS.height = 145, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "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, setHealth(_HS, 80, 0, 0, 0), _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.origHColor = "black with deep red highlights", _HS.eyebrowHColor = "red", _HS.pubicHColor = "red", _HS.underArmHColor = "red", _HS.origSkin = "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, setHealth(_HS, -10), _HS.devotion = 90, _HS.height = 175, _HS.nationality = "Korean", _HS.race = "asian", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hLength = 10, _HS.waist = -55, _HS.boobs = 3550, _HS.boobsImplant = 3000, _HS.boobsImplantType = "advanced fillable", _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), setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 20, _HS.race = "asian", _HS.origSkin = "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, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = -50, _HS.weight = 20, _HS.height = 155, _HS.nationality = "American", _HS.eye.origColor = "green", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "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)>> - -<<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, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.nationality = "American", _HS.origSkin = "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, setHealth(_HS, 80, 0, 0, 0), _HS.devotion = 55.7, _HS.height = 170, _HS.race = "white", _HS.nationality = "American", _HS.eye.origColor = "blue", _HS.origSkin = "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), setHealth(_HS, 80, 0, 0, 0), _HS.devotion = 40, _HS.muscles = 20, _HS.nationality = "Japanese", _HS.race = "asian", _HS.origHColor = "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, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 100, _HS.height = 175, _HS.race = "asian", _HS.pubicHColor = "black", _HS.origSkin = "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), setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 50, _HS.height = 190, _HS.nationality = "Ugandan", _HS.race = "black", _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.masturbation = 1, _HS.rules.release.partner = 1, _HS.rules.release.family = 1, _HS.rules.release.slaves = 1, _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.albinismOverride = {eyeColor: "pale grey", hColor: "white", skin: "extremely pale"}, _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), setHealth(_HS, 20), _HS.devotion = -65, _HS.height = 155, _HS.nationality = "American", _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "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, setHealth(_HS, 90, 0, 0, 0), _HS.devotion = 100, _HS.height = 145, _HS.nationality = "Swedish", _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 85, _HS.hStyle = "ass-length", _HS.waist = -55, _HS.boobs = 650, _HS.boobsImplant = 200, _HS.boobsImplantType = "normal", _HS.nipplesPiercing = 2, _HS.butt = 3, _HS.buttImplant = 1, _HS.buttImplantType = "normal", _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, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.weight = 20, _HS.height = 190, _HS.nationality = "Japanese", _HS.race = "asian", _HS.eye.origColor = "blue", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "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.masturbation = 1, _HS.rules.release.partner = 1, _HS.rules.release.family = 1, _HS.rules.release.slaves = 1, _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), setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 20, _HS.height = 175, _HS.nationality = "Indonesian", _HS.race = "asian", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "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.masturbation = 1, _HS.rules.release.partner = 1, _HS.rules.release.family = 1, _HS.rules.release.slaves = 1, _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, setHealth(_HS, 20), _HS.devotion = 60, _HS.height = 175, _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = -50, _HS.weight = 20, _HS.height = 152, _HS.override_H_Color = 1, _HS.pubicHColor = "purple", _HS.origSkin = "pale", _HS.eye.origColor = "blue", _HS.origHColor = "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 App.Utils.removeHeroLimbs(_HS, "all")>> -<<set $heroSlaves.push(_HS)>> -/*Increased nipples and areolae, changed eye color, added mute -BoneyM*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Box", _HS.birthName = "Box", _HS.origin = "When you took $him from $his previous owner, $he was locked into a beautiful rosewood box lined with red velvet, crying.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS), _HS.devotion = -75, _HS.weight = 20, _HS.override_Brow_H_Color = 1, _HS.override_Arm_H_Color = 1, _HS.override_Pubic_H_Color = 1, _HS.eyebrowHColor = "blonde", _HS.pubicHColor = "blonde", _HS.underArmHColor = "blonde", _HS.origSkin = "pale", _HS.origHColor = "golden blonde", _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 = -50, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$His amputation sites have titanium rings that go through to the bone. $He has been chemically blinded.">> -<<run App.Utils.removeHeroLimbs(_HS, "all"), eyeSurgery(_HS, "both", "blind")>> -<<set $heroSlaves.push(_HS)>> -/* 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, setHealth(_HS, 20), _HS.devotion = 100, _HS.weight = -20, _HS.race = "asian", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "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 App.Utils.removeHeroLimbs(_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, setHealth(_HS, 80, 0, 0, 0), _HS.devotion = 100, _HS.weight = 40, _HS.origRace = "white", _HS.override_Race = 1, _HS.race = "latina", _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.hStyle = "long", _HS.waist = -100, _HS.boobs = 6260, _HS.boobsImplant = 4200, _HS.boobsImplantType = "string", _HS.nipplesPiercing = 2, _HS.areolae = 3, _HS.boobsTat = "flowers", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 12, _HS.buttImplant = 1, _HS.buttImplantType = "normal", _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 App.Utils.removeHeroLimbs(_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, setHealth(_HS, 80, 0, 0, 0), _HS.devotion = 65, _HS.height = 155, _HS.nationality = "Mexican", _HS.race = "latina", _HS.override_H_Color = 1, _HS.origHColor = "raven black with red highlights", _HS.origSkin = "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, setHealth(_HS, -50, 10, 10), _HS.devotion = 100, _HS.muscles = 20, _HS.nationality = "Chinese", _HS.race = "asian", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.waist = -100, _HS.boobs = 2000, _HS.boobsImplant = 600, _HS.boobsImplantType = "normal", _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 App.Utils.removeHeroLimbs(_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, setHealth(_HS, -20), _HS.devotion = -100, _HS.height = 145, _HS.origHColor = "brown", _HS.pubicHColor = "brown", _HS.origSkin = "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), setHealth(_HS, 20), _HS.devotion = 25, _HS.weight = -20, _HS.height = 155, _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "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 App.Utils.removeHeroLimbs(_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, setHealth(_HS, -10), _HS.devotion = 10, _HS.race = "white", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.heels = 1, _HS.boobs = 800, _HS.boobsImplant = 600, _HS.boobsImplantType = "normal", _HS.butt = 4, _HS.buttImplant = 2, _HS.buttImplantType = "normal", _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, setHealth(_HS, 20), _HS.devotion = 60, _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 800, _HS.boobsImplant = 600, _HS.boobsImplantType = "normal", _HS.butt = 5, _HS.buttImplant = 2, _HS.buttImplantType = "normal", _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)>> -<<run App.Medicine.Modification.addScar(_HS, "right buttock", "surgical", 2)>> -<<set $heroSlaves.push(_HS)>> -/*heels*/ -/*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, setHealth(_HS, 20), _HS.devotion = 100, _HS.height = 155, _HS.origSkin = "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*/ - -<</if>> - -<<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, setHealth(_HS, 40), _HS.weight = -10, _HS.muscles = 10, _HS.height = 170, _HS.nationality = "American", _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.origSkin = "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, setHealth(_HS, 40), _HS.weight = 10, _HS.height = 167, _HS.nationality = "American", _HS.race = "white", _HS.markings = "beauty mark", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 60, _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "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/ddSlavesDatabase.js b/src/npc/databases/ddSlavesDatabase.js new file mode 100644 index 0000000000000000000000000000000000000000..e19514820ad08c9c98b4ed2d2b3377dbc7d67356 --- /dev/null +++ b/src/npc/databases/ddSlavesDatabase.js @@ -0,0 +1,1596 @@ +/* eslint-disable camelcase */ +// _i = 800000}, + +App.Data.HeroSlaves.DD = [ + { + ID: 800001, + slaveName: "Marylynne", + birthName: "Tyson", + genes: "XY", + origin: "$He is a life-long house slave who has always tried to be the perfect woman, despite $his dick.", + actualAge: 34, + physicalAge: 34, + visualAge: 34, + ovaryAge: 34, + health: {condition: 20}, + devotion: 100, + origSkin: "white", + hStyle: "long", + waist: -55, + boobs: 1000, + areolae: 1, + butt: 5, + lips: 35, + vagina: -1, + preg: -2, + dick: 2, + anus: 3, + prostate: 1, + balls: 1, + scrotum: 1, + skill: {oral: 35, anal: 100}, + intelligenceImplant: 30, + attrXX: 40, + attrXY: 40, + fetish: "buttslut", + fetishKnown: 1, + custom: {desc: "$He is extremely self-conscious about $his dick."}, + sexualFlaw: "shamefast", + behavioralQuirk: "insecure" + }, + { + ID: 800002, + slaveName: "Alyssa", + birthName: "Alyssa", + genes: "XY", + assignment: "be a servant", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: -30}, + devotion: 60, + race: "white", + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "pale", + hLength: 10, + hStyle: "short", + boobs: 300, + butt: 1, + vagina: -1, + preg: -2, + dick: 2, + anus: 1, + prostate: 1, + balls: 1, + scrotum: 1, + attrXX: 40, + attrXY: 40, + fetishKnown: 1, + faceShape: "androgynous" + }, + { + ID: 800003, + slaveName: "Adrian", + birthName: "Adrian", + genes: "XY", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20, tired: 10}, + devotion: 75, + hStyle: "long", + boobs: 400, + butt: 2, + vagina: -1, + preg: -2, + dick: 3, + anus: 1, + prostate: 1, + balls: 1, + scrotum: 1, + skill: {oral: 15, anal: 15}, + attrXX: 40, + attrXY: 40, + fetish: "buttslut", + fetishKnown: 1, + behavioralFlaw: "odd" + }, + { + ID: 800004, + slaveName: "Lola", + birthName: "Lola", + genes: "XY", + actualAge: 27, + physicalAge: 27, + visualAge: 27, + ovaryAge: 27, + health: {condition: 20}, + devotion: 35, + height: 175, + origSkin: "white", + hStyle: "long", + boobs: 1000, + boobsImplant: 600, + boobsImplantType: "normal", + butt: 4, + buttImplant: 2, + buttImplantType: "normal", + vagina: -1, + preg: -2, + dick: 3, + anus: 3, + prostate: 1, + balls: 1, + scrotum: 1, + skill: {oral: 15, anal: 15}, + aphrodisiacs: 1, + addict: 10, + intelligence: -30, + attrXX: 40, + attrXY: 40, + fetish: "submissive", + fetishKnown: 1 + }, + { + ID: 800005, + slaveName: "Amanda", + birthName: "Amanda", + genes: "XY", + origin: "$He was raised as a girl despite $his gargantuan dick to be a truly unique slave.", + actualAge: 17, + physicalAge: 17, + visualAge: 17, + ovaryAge: 17, + health: {condition: 20}, + height: 152, + origHColor: "black", + hStyle: "long", + boobs: 500, + butt: 3, + vagina: -1, + preg: -2, + dick: 5, + anus: 1, + prostate: 1, + balls: 3, + scrotum: 3, + intelligence: 20, + intelligenceImplant: 30, + attrXX: 80, + attrXY: 40, + fetishKnown: 1 + }, + { + ID: 800006, + slaveName: "'Mrs.' Maria", + birthName: "Maria", + genes: "XY", + origin: "$He was once a successful drug lord, but was turned into $his current self after making too many enemies.", + actualAge: 28, + physicalAge: 28, + visualAge: 28, + ovaryAge: 28, + health: {condition: 100}, + devotion: 75, + muscles: 20, + height: 175, + origHColor: "blonde", + pubicHColor: "blonde", + override_Skin: 1, + origSkin: "spray tanned", + hLength: 10, + boobs: 1000, + boobsImplant: 600, + boobsImplantType: "normal", + nipplesPiercing: 1, + lips: 55, + lipsImplant: 10, + vagina: -1, + preg: -2, + clitPiercing: 3, + clitSetting: "anal", + dick: 5, + anus: 2, + prostate: 1, + balls: 2, + scrotum: 2, + skill: {oral: 100, anal: 100}, + intelligence: 100, + intelligenceImplant: 30, + attrXX: 40, + attrXY: 40, + fetishKnown: 1, + brand: {"left testicle": "a brand of a former master"}, + stampTat: "$He has a fairly generic tramp stamp.", + career: "a gang leader" + }, + { + ID: 800007, + slaveName: "Sugar", + birthName: "Sugar", + genes: "XY", + actualAge: 24, + physicalAge: 24, + visualAge: 24, + ovaryAge: 24, + health: {condition: 20}, + height: 175, + eye: {origColor: "blue"}, + origHColor: "platinum blonde", + origSkin: "pale", + hStyle: "long", + waist: -55, + boobs: 1400, + boobsImplant: 1200, + boobsImplantType: "fillable", + butt: 5, + buttImplant: 4, + buttImplantType: "fillable", + lips: 55, + lipsImplant: 2, + vagina: -1, + preg: -2, + dick: 5, + anus: 1, + prostate: 1, + balls: 1, + scrotum: 1, + skill: {oral: 100, anal: 100}, + clothes: "slutty jewelry", + intelligence: -90, + intelligenceImplant: 30, + attrXX: 40, + attrXY: 40, + fetish: "cumslut", + fetishKnown: 1, + custom: {desc: "$He is as dumb as a bag of hammers."} + }, + { + ID: 800008, + slaveName: "Bella", + birthName: "Bella", + genes: "XY", + origin: "$He grew up in a rich and deviant household, surrounded by but never a part of bizarre and unusual sex acts.", + actualAge: 19, + physicalAge: 19, + visualAge: 19, + ovaryAge: 19, + health: {condition: 20}, + devotion: 10, + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "white", + hLength: 10, + boobs: 300, + butt: 1, + vagina: -1, + preg: -2, + dick: 2, + prostate: 1, + balls: 1, + scrotum: 1, + clothes: "a slave gown", + intelligence: 30, + intelligenceImplant: 30, + attrXX: 40, + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "arrogant" + }, + { + ID: 800009, + slaveName: "Julia", + birthName: "Julia", + genes: "XY", + origin: "$He was homeless and willing to do anything for food, which in the end resulted in $him becoming a slave.", + health: {condition: 20}, + devotion: 30, + origSkin: "white", + hLength: 10, + hStyle: "short", + boobs: 300, + butt: 1, + vagina: -1, + preg: -2, + dick: 3, + anus: 2, + prostate: 1, + balls: 2, + scrotum: 2, + skill: {oral: 35, anal: 35}, + clothes: "a slave gown", + intelligence: -20, + attrXX: 40, + attrXY: 40, + fetishKnown: 1, + custom: {desc: "$He has beautiful eyes and some scars."} + }, + { + ID: 800010, + slaveName: "Lily", + birthName: "Lily", + genes: "XY", + actualAge: 20, + physicalAge: 20, + visualAge: 20, + ovaryAge: 20, + health: {condition: 20}, + devotion: -60, + origHColor: "black", + pubicHColor: "black", + origSkin: "white", + hLength: 10, + hStyle: "short", + boobs: 300, + butt: 1, + vagina: -1, + preg: -2, + dick: 3, + prostate: 1, + balls: 2, + scrotum: 2, + clothes: "a slave gown", + attrXX: 40, + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "bitchy" + }, + { + ID: 800011, + slaveName: "Harry", + birthName: "Harry", + genes: "XY", + actualAge: 20, + physicalAge: 20, + visualAge: 20, + ovaryAge: 20, + health: {condition: 20}, + devotion: 25, + height: 175, + heightImplant: 1, + eye: {origColor: "blue"}, + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "white", + hStyle: "a medium length", + boobs: 300, + butt: 5, + face: 15, + faceImplant: 15, + lipsTat: "permanent makeup", + vagina: -1, + preg: -2, + dick: 2, + anus: 2, + prostate: 1, + balls: 1, + scrotum: 1, + skill: {oral: 15, anal: 15}, + clothes: "attractive lingerie", + intelligence: -20, + attrXX: 40, + attrXY: 40, + fetish: "cumslut", + fetishKnown: 1 + }, + { + ID: 800012, + slaveName: "Jen", + birthName: "Jen", + genes: "XY", + actualAge: 20, + physicalAge: 20, + visualAge: 20, + ovaryAge: 20, + health: {condition: 20}, + devotion: 40, + height: 175, + origHColor: "dark brown", + pubicHColor: "dark brown", + origSkin: "white", + hLength: 40, + hStyle: "up in a bun", + boobs: 300, + butt: 5, + vagina: -1, + preg: -2, + dick: 3, + prostate: 1, + balls: 1, + scrotum: 1, + clothes: "attractive lingerie", + attrXX: 40, + attrXY: 40, + fetish: "cumslut", + fetishKnown: 1, + career: "a librarian", + intelligence: 35, + intelligenceImplant: 30 + }, + { + ID: 800013, + slaveName: "Kai", + birthName: "Mordecai", + genes: "XY", + actualAge: 23, + physicalAge: 23, + visualAge: 23, + ovaryAge: 23, + health: {condition: 20}, + devotion: 60, + height: 191, + nationality: "Russian", + race: "white", + origHColor: "black", + pubicHColor: "black", + origSkin: "white", + hLength: 140, + hStyle: "knee length", + waist: -55, + heels: 1, + boobs: 1000, + boobsImplant: 600, + boobsImplantType: "normal", + nipplesPiercing: 2, + lactation: 1, + lactationDuration: 2, + butt: 5, + buttImplant: 3, + buttImplantType: "normal", + lips: 35, + lipsImplant: 10, + lipsPiercing: 1, + vagina: 1, + preg: -2, + dick: 5, + anus: 1, + prostate: 1, + balls: 2, + scrotum: 2, + skill: {oral: 35, anal: 15}, + clothes: "restrictive latex", + intelligence: 25, + intelligenceImplant: 30, + attrXX: 40, + attrXY: 40, + fetishKnown: 1, + custom: {tattoo: "$He has many girly tattoos.", desc: "$He likes hair play."}, + navelPiercing: 1 + }, + { + ID: 800014, + slaveName: "Mackenzie", + birthName: "Mackenzie", + genes: "XY", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 40}, + devotion: 60, + markings: "freckled", + eye: {origColor: "blue"}, + origHColor: "red", + pubicHColor: "red", + origSkin: "pale", + hStyle: "long", + boobs: 1800, + nipplesPiercing: 1, + butt: 4, + lips: 35, + vagina: -1, + preg: -2, + dick: 3, + anus: 1, + prostate: 1, + balls: 2, + scrotum: 2, + skill: {oral: 15, anal: 15}, + intelligence: 98, + intelligenceImplant: 30, + attrXX: 40, + attrXY: 40, + fetish: "submissive", + fetishKnown: 1, + custom: {desc: "$He has a slim and perfectly feminine frame except for $his big feet and ears. $He's very intelligent and well learned."} + }, + { + ID: 800015, + slaveName: "Rachel", + birthName: "Rachel", + genes: "XY", + origin: "$He volunteered to become a slave when $he turned 18.", + health: {condition: 20}, + devotion: 100, + height: 155, + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "pale", + hLength: 60, + hStyle: "shoulder length", + waist: -55, + boobs: 600, + butt: 2, + face: 15, + lips: 35, + vagina: -1, + preg: -2, + dick: 2, + prostate: 1, + balls: 1, + scrotum: 1, + anusTat: "bleached", + intelligence: 20, + attrXX: 40, + attrXY: 40, + fetish: "buttslut" + }, + { + ID: 800016, + slaveName: "Nikole", + birthName: "Nikole", + genes: "XY", + actualAge: 19, + physicalAge: 19, + visualAge: 19, + ovaryAge: 19, + health: {condition: 80}, + devotion: 100, + race: "white", + markings: "freckled", + eye: {origColor: "green"}, + origHColor: "red", + pubicHColor: "red", + origSkin: "pale", + hLength: 60, + hStyle: "long and in a ponytail", + boobs: 200, + butt: 5, + lips: 35, + vagina: -1, + preg: -2, + dick: 5, + anus: 1, + prostate: 1, + balls: 3, + scrotum: 3, + anusTat: "bleached", + skill: {oral: 100, anal: 100}, + attrXX: 40, + attrXY: 40, + fetishKnown: 1, + custom: {tattoo: "$He has a tattoo of a black widow's hourglass pattern on $his ballsack."} + }, + { + ID: 800017, + slaveName: "Exta", + birthName: "Exta", + genes: "XY", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: 60, + muscles: 20, + height: 190, + eye: {origColor: "brown"}, + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "white", + hLength: 15, + hStyle: "short, and in a boyish cut", + boobs: 300, + butt: 1, + vagina: -1, + preg: -2, + dick: 2, + prostate: 1, + balls: 1, + anusTat: "bleached", + skill: {oral: 15, combat: 1}, + intelligence: 30, + attrXX: 40, + attrXY: 40, + fetishKnown: 1, + custom: {tattoo: "$He has a raised circuitry pattern on the nape of $his neck.", sexualFlaw: "shamefast", career: "a businessman"} + }, + { + ID: 800018, + slaveName: "Martin", + birthName: "Martin", + genes: "XY", + actualAge: 19, + physicalAge: 19, + visualAge: 19, + ovaryAge: 19, + health: {condition: 20}, + devotion: -55, + muscles: 20, + height: 190, + eye: {origColor: "bright blue"}, + origHColor: "white", + pubicHColor: "white", + origSkin: "extremely pale", + hLength: 15, + hStyle: "short and in a boyish cut", + waist: -55, + boobs: 100, + butt: 4, + face: 55, + vagina: -1, + preg: -2, + dick: 3, + prostate: 1, + balls: 3, + scrotum: 3, + anusTat: "bleached", + skill: {combat: 1}, + intelligence: 30, + intelligenceImplant: 30, + attrXX: 40, + attrXY: 40, + fetish: "submissive", + behavioralFlaw: "arrogant", + 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 sister, Elisa, $he has a lovely singing voice. $He prays quite often, if allowed to."}, + mother: -9997, + father: -9996, + sexualFlaw: "hates penetration" + }, + { + ID: 800019, + slaveName: "Steven", + birthName: "Steven", + genes: "XY", + origin: "$He was forced into slavery due to extreme debt.", + actualAge: 31, + physicalAge: 31, + visualAge: 31, + ovaryAge: 31, + health: {condition: 20}, + devotion: -55, + weight: 40, + origHColor: "blonde", + pubicHColor: "blonde", + race: "white", + hLength: 0, + hStyle: "shaved bald", + boobs: 200, + butt: 3, + vagina: -1, + preg: -2, + dick: 3, + prostate: 1, + balls: 3, + scrotum: 3, + anusTat: "bleached", + skill: {oral: 15}, + attrXX: 40, + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "arrogant", + sexualFlaw: "hates penetration" + }, + { + ID: 800020, + slaveName: "Selene", + birthName: "Selene", + genes: "XY", + origin: "Once $he was an arcology security officer, lured to aphrodisiacs addiction and feminized by $his boss (and former wife), to whom $he was sold as a slave to satisfy her spousal maintenance after divorce.", + actualAge: 32, + physicalAge: 32, + visualAge: 32, + ovaryAge: 32, + health: {condition: 20}, + devotion: 40, + muscles: 20, + height: 175, + race: "latina", + eye: {origColor: "ice blue"}, + origHColor: "ashen with black streaks", + pubicHColor: "ashen", + origSkin: "brown", + hLength: 30, + hStyle: "shoulder length", + waist: -55, + boobs: 1400, + butt: 1, + face: 55, + lips: 35, + vagina: -1, + preg: -2, + dick: 5, + anus: 2, + dickPiercing: 1, + prostate: 1, + balls: 2, + scrotum: 2, + anusTat: "bleached", + earPiercing: 1, + navelPiercing: 1, + skill: {anal: 100, combat: 1}, + addict: 50, + intelligence: 20, + intelligenceImplant: 30, + attrXX: 40, + attrXY: 40, + fetish: "buttslut", + fetishKnown: 1, + behavioralFlaw: "odd", + custom: {desc: "$He has a large police badge made of polished silver pinned right to the skin with several barbell piercings just above $his left nipple. $He wears two pairs of handcuffs as bracelets (one pair on each wrist); the handcuff keyholes are welded, so they cannot be unlocked and removed in any normal way."}, + career: "a security guard" + }, + { + ID: 800021, + slaveName: "'Buns' Jones", + birthName: "Jones", + genes: "XY", + devotion: 31, + nationality: "Chinese", + race: "asian", + override_H_Color: 1, + origHColor: "black", + hColor: "dark brown with bleached highlights", + override_Skin: 1, + origSkin: "spray tanned", + hLength: 60, + hStyle: "long and braided into a ponytail", + waist: -55, + boobs: 200, + butt: 8, + lips: 35, + vagina: -1, + vaginaTat: "rude words", + preg: -2, + dick: 3, + prostate: 1, + balls: 2, + scrotum: 2, + anusTat: "flowers", + makeup: 1, + nails: 1, + earPiercing: 1, + shouldersTat: "tribal patterns", + armsTat: "rude words", + stampTat: "rude words", + skill: {oral: 100, entertainment: 15}, + clothes: "a slutty outfit", + collar: "pretty jewelry", + shoes: "heels", + intelligence: 30, + attrXX: 40, + attrXY: 40, + fetish: "buttslut", + fetishKnown: 1, + custom: {desc: "A palm sized ring adorns the end of $his braid, perfect for grabbing and pulling during any occasion."} + }, + { + ID: 800022, + slaveName: "Mistress Izzy", + birthName: "Isabella", + genes: "XY", + health: {condition: 70}, + devotion: 100, + eye: {origColor: "black"}, + origHColor: "sparkling and shiny golden red", + pubicHColor: "blonde", + override_Skin: 1, + origSkin: "sun tanned", + hLength: 60, + hStyle: "in thick long heavy braids", + waist: -100, + boobs: 9200, + boobsImplant: 6000, + boobsImplantType: "advanced fillable", + nipplesPiercing: 2, + boobsTat: "bovine patterns", + lactation: 2, + lactationDuration: 2, + counter: {milk: 3010}, + butt: 8, + buttImplant: 1, + buttImplantType: "normal", + buttTat: "bovine patterns", + face: 55, + faceImplant: 65, + lips: 55, + lipsImplant: 2, + lipsPiercing: 2, + lipsTat: "bovine patterns", + tonguePiercing: 2, + vagina: 2, + vaginaPiercing: 2, + vaginaTat: "bovine patterns", + preg: -2, + clitPiercing: 3, + anus: 2, + dick: 5, + prostate: 1, + balls: 3, + scrotum: 2, + anusPiercing: 2, + anusTat: "bovine patterns", + makeup: 2, + nails: 2, + brand: {"right buttock": "SLUT"}, + earPiercing: 2, + nosePiercing: 2, + eyebrowPiercing: 2, + navelPiercing: 2, + shouldersTat: "bovine patterns", + armsTat: "bovine patterns", + legsTat: "bovine patterns", + stampTat: "bovine patterns", + skill: { + vaginal: 35, + oral: 100, + anal: 100, + whoring: 100, + entertainment: 35 + }, + collar: "leather with cowbell", + shoes: "heels", + intelligence: 20, + energy: 100, + attrXX: 40, + attrXY: 40, + fetishKnown: 1, + custom: { + tattoo: "$He has tattoos of teasing, enticing messages begging others to come taste $his addictive milk.", + desc: "$His musky milky aura drives men and women around $him giggly and dumb with lust." + }, + horn: "cow horns" + }, + { + ID: 800023, + slaveName: "Joan", + birthName: "Mila", + genes: "XY", + actualAge: 28, + physicalAge: 28, + visualAge: 28, + ovaryAge: 28, + health: {condition: 100}, + devotion: 25, + weight: 20, + height: 175, + origHColor: "dark brown", + pubicHColor: "brown", + origSkin: "pale", + hLength: 30, + hStyle: "shoulder-length, done up in a ponytail", + pubicHStyle: "bushy", + boobs: 650, + nipplesPiercing: 1, + areolae: 2, + lactation: 2, + lactationDuration: 2, + butt: 7, + lips: 35, + vagina: -1, + preg: -2, + clitPiercing: 3, + dick: 4, + prostate: 1, + balls: 5, + scrotum: 4, + anusPiercing: 1, + makeup: 1, + nails: 1, + earPiercing: 1, + skill: {entertainment: 35}, + clothes: "cutoffs and a t-shirt", + collar: "pretty jewelry", + shoes: "heels", + intelligence: -40, + intelligenceImplant: 30, + attrXX: 80, + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "odd", + custom: {tattoo: "$He has a blood red, faux brand tattoo on $his left ass cheek.", desc: "$He has a nearly faded pockmark on the skin above $his left eyebrow, the last reminder of $his awkward past."} + }, + { + ID: 800024, + slaveName: "Aisha", + birthName: "Aicha", + genes: "XY", + origin: "$He sold $himself into slavery to escape a life of boredom.", + health: {condition: -20}, + devotion: 45, + height: 155, + heightImplant: -1, + race: "middle eastern", + override_Eye_Color: 1, + eye: {origColor: "blue"}, + override_H_Color: 1, + override_Brow_H_Color: 1, + override_Arm_H_Color: 1, + override_Pubic_H_Color: 1, + origHColor: "peachy fading into a red ombre at the bottom", + eyebrowHColor: "red", + pubicHColor: "red", + underArmHColor: "red", + origSkin: "light", + hLength: 30, + hStyle: "shoulder-length in a hime cut", + waist: -55, + boobs: 250, + butt: 3.5, + face: 55, + faceImplant: 65, + vagina: -1, + preg: -2, + clitPiercing: 3, + anus: 1, + dick: 5, + dickTat: "flowers", + prostate: 1, + balls: 2, + scrotum: 2, + anusPiercing: 1, + anusTat: "flowers", + brand: {"back": "your initials"}, + earPiercing: 1, + skill: {oral: 15, anal: 15, entertainment: 15}, + clothes: "a comfortable bodysuit", + collar: "pretty jewelry", + shoes: "heels", + intelligence: -30, + attrXX: 40, + attrXY: 40, + custom: {tattoo: "$He has tattooed petals trailing from the nape of $his neck down $his back, ending between $his butt cheeks.", desc: "$His red pubic hair is waxed into the shape of a heart. $He has bright blue eyeshadow on $his bottom lids."}, + pubicHStyle: "waxed" + }, + { + ID: 800025, + slaveName: "Laura", + birthName: "Rolan", + genes: "XY", + prestige: 1, + prestigeDesc: "$He is a high-ranking spy who was captured while trying to obtain secrets about the defenses of one the Free Cities.", + health: {condition: -10}, + devotion: 5, + height: 155, + race: "middle eastern", + override_H_Color: 1, + override_Eye_Color: 1, + eye: {origColor: "blue"}, + origHColor: "white", + pubicHColor: "white", + origSkin: "dark", + hLength: 60, + hStyle: "long and tied in a bun using a pearl chain", + heels: 1, + boobs: 200, + butt: 2, + vagina: -1, + preg: -2, + bellyAccessory: "a corset", + dick: 2, + prostate: 1, + balls: 2, + scrotum: 2, + makeup: 1, + nails: 1, + earPiercing: 1, + navelPiercing: 1, + skill: {oral: 15}, + collar: "pretty jewelry", + shoes: "heels", + intelligence: 100, + intelligenceImplant: 30, + attrXX: 40, + attrXY: 40, + career: "a spy" + }, + { + ID: 800026, + slaveName: "'Dragon Goddess' Chae-won", + genes: "XY", + birthName: "Chae-won", + origin: "$He is a former Kkangpae gang member who was sold into slavery by $his former boss as a punishment.", + prestige: 1, + prestigeDesc: "$He is a famed Free Cities whore, and commands top prices.", + actualAge: 26, + physicalAge: 26, + visualAge: 26, + ovaryAge: 26, + health: {condition: 50}, + devotion: 31, + muscles: 50, + height: 155, + nationality: "Korean", + race: "asian", + override_H_Color: 1, + origHColor: "black", + hColor: "onyx black and rainbow-streaked", + override_Skin: 1, + origSkin: "sun tanned", + hLength: 60, + hStyle: "styled in high chignon resembling a traditional Japanese geisha's Shimada hairstyle, with plenty of decorated hairpins", + waist: -55, + boobs: 6000, + boobsImplant: 3000, + boobsImplantType: "advanced fillable", + nipples: "huge", + butt: 4.5, + face: 55, + faceImplant: 15, + lips: 35, + lipsTat: "permanent makeup", + tonguePiercing: 1, + vagina: -1, + preg: -2, + anus: 1, + dick: 5, + prostate: 1, + balls: 4, + scrotum: 4, + anusTat: "bleached", + nails: 3, + earPiercing: 1, + legsTat: "flowers", + stampTat: "flowers", + skill: {oral: 100, anal: 100, whoring: 100}, + clothes: "a slave gown", + collar: "pretty jewelry", + shoes: "heels", + intelligence: -3, + intelligenceImplant: 30, + energy: 100, + attrXX: 40, + attrXY: 40, + fetishKnown: 1, + behavioralFlaw: "arrogant", + custom: {tattoo: "$He has two neon-blue butterflies tattooed on $his right temple and one more right above $his right eyebrow; a bright blue, luminescent tattoo of an oriental dragon is intertwining with floral tattoos on $his right leg.", desc: "$He is almost never seen without $his long, thin, lavishly decorated smoking pipe, either holding it in hand, or carrying it tucked in $his chignon."}, + career: "a gang member" + }, + { + ID: 800027, + slaveName: "Bailey", + birthName: "Bryan", + genes: "XY", + origin: "$He was sold to your predecessor by $his husband to pay off his extreme debt.", + actualAge: 22, + physicalAge: 22, + visualAge: 22, + ovaryAge: 22, + health: {condition: 50}, + devotion: -50, + nationality: "American", + race: "white", + eye: {origColor: "blue"}, + origHColor: "black", + pubicHColor: "black", + origSkin: "fair", + hLength: 50, + hStyle: "chest-length, styled up in schoolgirl pigtails with bangs", + boobs: 700, + boobsImplant: 400, + boobsImplantType: "normal", + butt: 2, + lips: 35, + vagina: -1, + preg: -2, + anus: 1, + dick: 2, + prostate: 1, + balls: 2, + scrotum: 2, + makeup: 1, + nails: 1, + earPiercing: 1, + skill: {oral: 15}, + clothes: "a slutty maid outfit", + shoes: "heels", + intelligenceImplant: 30, + attrXX: 40, + attrXY: 40, + fetish: "submissive", + fetishKnown: 1 + }, + { + ID: 800028, + slaveName: "'Mistress' Ingrid", + birthName: "Ingrid", + genes: "XY", + actualAge: 42, + physicalAge: 42, + visualAge: 42, + ovaryAge: 42, + health: {condition: 100}, + devotion: 100, + muscles: 20, + height: 190, + race: "white", + nationality: "Norwegian", + eye: {origColor: "blue"}, + override_H_Color: 1, + origHColor: "black", + hColor: "onyx black", + origSkin: "pale", + hLength: 90, + hStyle: "ass-length with Nordic braids throughout", + waist: -55, + boobs: 800, + butt: 5, + face: 55, + lips: 35, + preg: -2, + clitPiercing: 3, + dick: 4, + prostate: 1, + balls: 4, + scrotum: 4, + ovaries: 1, + makeup: 2, + nails: 2, + skill: { + vaginal: 35, + oral: 35, + anal: 15, + whoring: 35, + entertainment: 35, + combat: 1 + }, + clothes: "a slave gown", + collar: "pretty jewelry", + shoes: "boots", + intelligence: 25, + intelligenceImplant: 30, + energy: 100, + attrXX: 40, + attrXY: 40, + fetishKnown: 1, + custom: {desc: "$He has the style of Gothic royalty, and the demeanor to match."} + }, + { + ID: 800029, + slaveName: "'Demon Whore' Yuzuki", + birthName: "Yuri", + genes: "XY", + origin: "$His origins are unknown, but rumor has it that $he is a literal demon.", + actualAge: 19, + physicalAge: 19, + visualAge: 19, + ovaryAge: 19, + health: {condition: 60}, + devotion: 90.4, + muscles: 20, + height: 190, + nationality: "Japanese", + race: "asian", + eye: {origColor: "green", left: {pupil: "demonic"}, right: {pupil: "demonic"}}, + origHColor: "black", + pubicHColor: "black", + origSkin: "pale", + hStyle: "long", + pubicHStyle: "in a strip", + waist: -100, + boobs: 10000, + boobsImplant: 4800, + boobsImplantType: "advanced fillable", + areolae: 2, + lactation: 2, + lactationDuration: 2, + butt: 9, + face: 55, + faceImplant: 65, + lips: 35, + vagina: 1, + clitPiercing: 3, + clitSetting: "humiliation", + anus: 1, + dick: 5, + prostate: 1, + balls: 5, + scrotum: 4, + ovaries: 1, + makeup: 2, + nails: 2, + skill: { + vaginal: 15, + oral: 100, + anal: 15, + whoring: 15, + entertainment: 15, + combat: 1 + }, + clothes: "a string bikini", + collar: "pretty jewelry", + shoes: "boots", + attrXX: 40, + attrXY: 40, + fetish: "humiliation", + fetishKnown: 1 + }, + { + ID: 800030, + slaveName: "Fuckmeat", + birthName: "Alva", + genes: "XY", + prestige: 1, + prestigeDesc: "$He is a famed Free Cities slut, and can please anyone.", + actualAge: 19, + physicalAge: 19, + visualAge: 19, + ovaryAge: 19, + health: {condition: 100}, + devotion: 100, + muscles: 20, + height: 145, + race: "white", + nationality: "Swedish", + eye: {origColor: "blue"}, + origHColor: "blonde", + pubicHColor: "blonde", + origSkin: "pale", + hLength: 0, + hStyle: "shaved bald", + pubicHStyle: "bushy", + boobs: 1700, + boobsTat: "rude words", + butt: 8, + buttTat: "rude words", + face: 55, + lips: 35, + vagina: -1, + vaginaTat: "rude words", + preg: -2, + anus: 3, + dick: 2, + dickTat: "rude words", + prostate: 1, + balls: 1, + scrotum: 2, + anusTat: "rude words", + makeup: 3, + nails: 3, + brand: {"cheek": "a penis symbol"}, + shouldersTat: "rude words", + armsTat: "rude words", + legsTat: "rude words", + stampTat: "rude words", + skill: { + oral: 100, + anal: 100, + whoring: 100, + entertainment: 100, + combat: 1 + }, + diet: "muscle building", + clothes: "harem gauze", + collar: "heavy gold", + shoes: "boots", + energy: 100, + attrXX: 40, + attrXY: 40, + fetishStrength: 0, + fetishKnown: 1, + custom: {tattoo: "$He has a swastika tattooed on $his ballsack."} + }, + { + ID: 800031, + slaveName: "Caroline", + birthName: "Carl", + prestige: 1, + 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.", + genes: "XY", + actualAge: 44, + physicalAge: 44, + visualAge: 44, + ovaryAge: 44, + health: {condition: 60}, + devotion: 90, + height: 145, + heightImplant: -1, + race: "white", + nationality: "French", + eye: {origColor: "blue"}, + origHColor: "blonde", + pubicHColor: "blonde", + override_Skin: 1, + origSkin: "spray tanned", + hLength: 70, + hStyle: "ass-length", + waist: -55, + heels: 1, + boobs: 1100, + boobsImplant: 400, + boobsImplantType: "normal", + nipplesPiercing: 1, + areolae: 1, + butt: 4, + buttImplant: 2, + buttImplantType: "normal", + face: 55, + faceImplant: 65, + lips: 55, + lipsImplant: 2, + vagina: 1, + vaginaLube: 1, + preg: -2, + anus: 2, + anusTat: "bleached", + makeup: 3, + nails: 1, + earPiercing: 1, + navelPiercing: 1, + legsTat: "degradation", + stampTat: "degradation", + skill: { + vaginal: 100, + oral: 100, + anal: 100, + whoring: 15, + entertainment: 35 + }, + drugs: "breast injections", + addict: 1, + clothes: "slutty jewelry", + collar: "tight steel", + intelligence: -90, + intelligenceImplant: 30, + attrXY: 40, + fetish: "humiliation", + behavioralFlaw: "arrogant", + 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.'", desc: "Since becoming a slave $he has been turned into a little bimbo."} + }, +]; + +App.Data.HeroSlaves.DDextreme = [ + { + ID: 800032, + slaveName: "Fjola", + birthName: "Fjola", + genes: "XY", + origin: "$He was born into a slave ring that practiced heavy hormone manipulation to alter slaves from a very young age.", + actualAge: 21, + physicalAge: 21, + visualAge: 21, + ovaryAge: 21, + health: {condition: 20}, + devotion: 10, + weight: 20, + height: 160, + eye: { + origColor: "grey" + }, + origHColor: "black", + pubicHColor: "black", + origSkin: "pale", + hLength: 30, + hStyle: "curly and shoulder length", + boobs: 1000, + butt: 3, + vagina: 1, + preg: -2, + dick: 2, + anus: 1, + skill: { + oral: 15, + anal: 15 + }, + intelligence: -40, + intelligenceImplant: 30, + attrXX: 40, + attrXY: 40, + fetish: "submissive", + fetishKnown: 1, + custom: {desc: "$He has a small scar on $his cheek, and many larger ones on $his back."} + }, + + /* tsundere, grey eyes, unhappy to be herm*/ + /* Changed eye color, added customdesc and origin -BoneyM*/ + + { + ID: 800033, + slaveName: "Alex", + birthName: "Alex", + genes: "XY", + origin: "$He was given a sex change in a freak laboratory mix-up, and sold $himself into slavery out of desperation due to a lack of any way to prove $his identity.", + health: {condition: 20}, + height: 175, + origSkin: "pale", + hStyle: "long", + boobs: 400, + preg: -2, + attrXX: 40, + attrXY: 40, + sexualFlaw: "hates penetration", + prostate: 1 + }, + + /* MtF*/ + /* Made a post-op to match the bio as closely as possible in-universe, added origin, added hates penetration. -BoneyM*/ + + { + ID: 800034, + slaveName: "Janine", + birthName: "Janine", + genes: "XY", + origin: "$He was enslaved after $he fell into debt to you.", + actualAge: 27, + physicalAge: 27, + visualAge: 27, + ovaryAge: 27, + health: {condition: 90}, + devotion: 100, + nationality: "German", + eye: {origColor: "blue"}, + origHColor: "golden blonde", + pubicHColor: "blonde", + origSkin: "pale", + hLength: 10, + hStyle: "flowing gently just past $his cheek, framing $his face beautifully", + waist: -55, + boobs: 500, + butt: 3.5, + face: 15, + lips: 35, + vagina: -1, + preg: -2, + dick: 1, + anusTat: "bleached", + skill: {oral: 100}, + clothes: "a penitent nuns habit", + collar: "tight steel", + shoes: "heels", + attrXX: 40, + attrXY: 40, + fetish: "submissive", + fetishKnown: 1, + custom: {desc: "$He has a beauty mark just above $his lip, on an otherwise flawless face."} + }, + + { + ID: 800035, + slaveName: "Buck", + birthName: "Buck", + genes: "XY", + origin: "$He was a soldier before being enslaved.", + actualAge: 23, + physicalAge: 23, + visualAge: 23, + ovaryAge: 23, + health: {condition: 90}, + devotion: -100, + muscles: 50, + height: 190, + eye: {origColor: "blue"}, + origHColor: "black", + pubicHColor: "black", + override_Skin: 1, + origSkin: "spray tanned", + hLength: 0, + prostate: 1, + hStyle: "shaved", + waist: -55, + boobs: 100, + nipplesPiercing: 1, + butt: 1, + face: 15, + vagina: -1, + preg: -2, + dick: 5, + analArea: 1, + balls: 3, + scrotum: 3, + anusTat: "bleached", + earPiercing: 1, + nosePiercing: 1, + navelPiercing: 1, + skill: {combat: 1}, + intelligence: -40, + intelligenceImplant: 30, + attrXX: 40, + attrXY: 40, + behavioralFlaw: "bitchy", + career: "a soldier" + }, + + /* dickskilled*/ + + { + ID: 800036, + slaveName: "'Udders' Erika", + birthName: "Erika", + genes: "XY", + actualAge: 28, + physicalAge: 28, + visualAge: 28, + ovaryAge: 28, + health: {condition: 90}, + devotion: 55, + height: 145, + eye: {origColor: "blue"}, + origSkin: "fair", + hStyle: "long", + pubicHStyle: "in a strip", + boobs: 1250, + areolae: 2, + boobsTat: "bovine patterns", + lactation: 2, + lactationDuration: 2, + butt: 2, + buttTat: "bovine patterns", + lips: 55, + lipsImplant: 10, + lipsTat: "bovine patterns", + vagina: -1, + vaginaTat: "bovine patterns", + preg: -3, + clitPiercing: 3, + clitSetting: "boobs", + anus: 2, + dick: 1, + dickTat: "bovine patterns", + prostate: 1, + anusTat: "bovine patterns", + nosePiercing: 2, + shouldersTat: "bovine patterns", + armsTat: "bovine patterns", + legsTat: "bovine patterns", + stampTat: "bovine patterns", + skill: {oral: 100, anal: 100, entertainment: 35}, + collar: "leather with cowbell", + attrXX: 40, + attrXY: 40, + fetish: "boobs", + fetishKnown: 1, + custom: {desc: "Though $his vocal cords have been altered to keep $him from speaking, $he is still capable of the occasional moo."} + }, + + + { + ID: 800037, + slaveName: "Danny 'The D'", + slaveSurname: "Ildoe", + birthName: "Danny 'The D'", + birthSurname: "Ildoe", + origin: "Born without limbs and abandoned by $his parents, $he was taken in by a posh family, given a massive cock, and trained to be the wealthy lady's perfect living sex toy.", + actualAge: 28, + visualAge: 28, + physicalAge: 28, + ovaryAge: 28, + health: {condition: 100}, + devotion: 100, + muscles: 50, + height: 94, + eye: {origColor: "blue"}, + origHColor: "black", + pubicHColor: "black", + override_Skin: 1, + origSkin: "spray tanned", + hLength: 10, + hStyle: "short", + waist: 55, + boobs: 50, + hips: -1, + butt: 0, + face: 45, + vagina: -1, + preg: 0, + dick: 6, + balls: 10, + scrotum: 7, + prostate: 2, + anusTat: "bleached", + energy: 95, + intelligenceImplant: 30, + attrXX: 100, + attrXY: 0, + skill: {oral: 95}, + fetish: "submissive", + fetishKnown: 1, + behavioralQuirk: "advocate" + }, +]; + +/* +{slaveName = "STANDARD", birthName = "STANDARD", ID = _i++, actualAge = 21, physicalAge = 21, visualAge = 21, ovaryAge = 21, health: {condition: 20}, devotion = 60, origSkin = "white", origHColor = "blonde", pubicHColor = "blonde", hLength = 20, boobs = 300, butt = 1, vagina = -1, preg = -2, dick = 2, anus = 1, balls = 1, scrotum = 1, anusTat = "bleached", skill.oral = 15, skill.anal = 15, attrXX = 40, attrXY = 40, fetishKnown = 1}, +*/ diff --git a/src/npc/databases/ddSlavesDatabase.tw b/src/npc/databases/ddSlavesDatabase.tw deleted file mode 100644 index 81d915682179c5f55997f7b7a3aab0f5e42ab326..0000000000000000000000000000000000000000 --- a/src/npc/databases/ddSlavesDatabase.tw +++ /dev/null @@ -1,199 +0,0 @@ -:: DD Slaves Database - -<<set _i = 800000>> -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Marylynne", _HS.birthName = "Tyson", _HS.genes = "XY", _HS.origin = "$He is a life-long house slave who has always tried to be the perfect woman, despite $his dick.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 34, _HS.physicalAge = 34, _HS.visualAge = 34, _HS.ovaryAge = 34, setHealth(_HS, 20), _HS.devotion = 100, _HS.origSkin = "white", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 1000, _HS.areolae = 1, _HS.butt = 5, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.anus = 3, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.skill.oral = 35, _HS.skill.anal = 100, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.desc = "$He is extremely self-conscious about $his dick.", _HS.sexualFlaw = "shamefast", _HS.behavioralQuirk = "insecure">> -<<set $heroSlaves.push(_HS)>> -/*Increased areolae, added origin and customdesc -BoneyM*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Alyssa", _HS.birthName = "Alyssa", _HS.genes = "XY", _HS.ID = _i++, _HS.assignment = "be a servant", _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, -30), _HS.devotion = 60, _HS.race = "white", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 10, _HS.hStyle = "short", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.faceShape = "androgynous">> -<<set $heroSlaves.push(_HS)>> -/*Changed assignment -BoneyM*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Adrian", _HS.birthName = "Adrian", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20, 0, 0, 0, 10), _HS.devotion = 75, _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd">> -<<set $heroSlaves.push(_HS)>> -/*switch*/ -/*Added odd as a stand-in for the multiple personalities -BoneyM*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Lola", _HS.birthName = "Lola", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, setHealth(_HS, 20), _HS.devotion = 35, _HS.height = 175, _HS.origSkin = "white", _HS.hStyle = "long", _HS.boobs = 1000, _HS.boobsImplant = 600, _HS.boobsImplantType = "normal", _HS.butt = 4, _HS.buttImplant = 2, _HS.buttImplantType = "normal", _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.anus = 3, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.aphrodisiacs = 1, _HS.addict = 10, _HS.intelligence = -30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1>> -<<set $heroSlaves.push(_HS)>> -/*Second slave to not need changes -BoneyM*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Amanda", _HS.birthName = "Amanda", _HS.genes = "XY", _HS.origin = "$He was raised as a girl despite $his gargantuan dick to be a truly unique slave.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 17, _HS.physicalAge = 17, _HS.visualAge = 17, _HS.ovaryAge = 17, setHealth(_HS, 20), _HS.height = 152, _HS.origHColor = "black", _HS.hStyle = "long", _HS.boobs = 500, _HS.butt = 3, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 5, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 3, _HS.scrotum = 3, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1>> -<<set $heroSlaves.push(_HS)>> -/*Added origin, removed anal virginity -BoneyM*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'Mrs.' Maria", _HS.birthName = "Maria", _HS.genes = "XY", _HS.origin = "$He was once a successful drug lord, but was turned into $his current self after making too many enemies.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 75, _HS.muscles = 20, _HS.height = 175, _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.hLength = 10, _HS.boobs = 1000, _HS.boobsImplant = 600, _HS.boobsImplantType = "normal", _HS.nipplesPiercing = 1, _HS.lips = 55, _HS.lipsImplant = 10, _HS.vagina = -1, _HS.preg = -2, _HS.clitPiercing = 3, _HS.clitSetting = "anal", _HS.dick = 5, _HS.anus = 2, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.brand["left testicle"] = "a brand of a former master", _HS.stampTat = "$He has a fairly generic tramp stamp.", _HS.career = "a gang leader">> -<<set $heroSlaves.push(_HS)>> -/*branded nut*/ -/*Added brand to customtat, added origin -BoneyM*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Sugar", _HS.birthName = "Sugar", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 24, _HS.physicalAge = 24, _HS.visualAge = 24, _HS.ovaryAge = 24, setHealth(_HS, 20), _HS.height = 175, _HS.eye.origColor = "blue", _HS.origHColor = "platinum blonde", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.waist = -55, _HS.boobs = 1400, _HS.boobsImplant = 1200, _HS.boobsImplantType = "fillable", _HS.butt = 5, _HS.buttImplant = 4, _HS.buttImplantType = "fillable", _HS.lips = 55, _HS.lipsImplant = 2, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 5, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.clothes = "slutty jewelry", _HS.intelligence = -90, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.custom.desc = "$He is as dumb as a bag of hammers.">> -<<set $heroSlaves.push(_HS)>> -/*also buttslut*/ -/*Added customdesc, changed eye color -BoneyM*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Bella", _HS.birthName = "Bella", _HS.genes = "XY", _HS.origin = "$He grew up in a rich and deviant household, surrounded by but never a part of bizarre and unusual sex acts.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 20), _HS.devotion = 10, _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hLength = 10, _HS.boobs = 300, _HS.butt = 1, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.clothes = "a slave gown", _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant">> -<<set $heroSlaves.push(_HS)>> -/*Added origin -BoneyM*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Julia", _HS.birthName = "Julia", _HS.genes = "XY", _HS.origin = "$He was homeless and willing to do anything for food, which in the end resulted in $him becoming a slave.", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = 30, _HS.origSkin = "white", _HS.hLength = 10, _HS.hStyle = "short", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.anus = 2, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.skill.oral = 35, _HS.skill.anal = 35, _HS.clothes = "a slave gown", _HS.intelligence = -20, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has beautiful eyes and some scars.">> -<<set $heroSlaves.push(_HS)>> -/*love*/ -/*Added origin, corrected customdesc syntax, increased cock and balls size to average -BoneyM*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Lily", _HS.birthName = "Lily", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, setHealth(_HS, 20), _HS.devotion = -60, _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "white", _HS.hLength = 10, _HS.hStyle = "short", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.clothes = "a slave gown", _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "bitchy">> -<<set $heroSlaves.push(_HS)>> -/*angry*/ -/*Added bitchy, increased cock and balls size to average -BoneyM*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Harry", _HS.birthName = "Harry", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, setHealth(_HS, 20), _HS.devotion = 25, _HS.height = 175, _HS.heightImplant = 1, _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hStyle = "a medium length", _HS.boobs = 300, _HS.butt = 5, _HS.face = 15, _HS.faceImplant = 15, _HS.lipsTat = "permanent makeup", _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.anus = 2, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.clothes = "attractive lingerie", _HS.intelligence = -20, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1>> -<<set $heroSlaves.push(_HS)>> -/*light makeup tats*/ -/*Added makeup tattoos, added facial surgery, changed eye color, added height and heightimplant -BoneyM*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Jen", _HS.birthName = "Jen", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 20, _HS.physicalAge = 20, _HS.visualAge = 20, _HS.ovaryAge = 20, setHealth(_HS, 20), _HS.devotion = 40, _HS.height = 175, _HS.origHColor = "dark brown", _HS.pubicHColor = "dark brown", _HS.origSkin = "white", _HS.hLength = 40, _HS.hStyle = "up in a bun", _HS.boobs = 300, _HS.butt = 5, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.clothes = "attractive lingerie", _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "cumslut", _HS.fetishKnown = 1, _HS.career = "a librarian", _HS.intelligence = 35, _HS.intelligenceImplant = 30>> -<<set $heroSlaves.push(_HS)>> -/*bookkeeper etc*/ -/*Removed customdesc copied over from previous slave -BoneyM*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Kai", _HS.birthName = "Mordecai", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, setHealth(_HS, 20), _HS.devotion = 60, _HS.height = 191, _HS.nationality = "Russian", _HS.race = "white", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "white", _HS.hLength = 140, _HS.hStyle = "knee length", _HS.waist = -55, _HS.heels = 1, _HS.boobs = 1000, _HS.boobsImplant = 600, _HS.boobsImplantType = "normal", _HS.nipplesPiercing = 2, _HS.lactation = 1, _HS.lactationDuration = 2, _HS.butt = 5, _HS.buttImplant = 3, _HS.buttImplantType = "normal", _HS.lips = 35, _HS.lipsImplant = 10, _HS.lipsPiercing = 1, _HS.vagina = 1, _HS.preg = -2, _HS.dick = 5, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.skill.oral = 35, _HS.skill.anal = 15, _HS.clothes = "restrictive latex", _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has many girly tattoos.", _HS.custom.desc = "$He likes hair play.", _HS.navelPiercing = 1>> -<<set $heroSlaves.push(_HS)>> -/*Increased height and balls size -BoneyM*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Mackenzie", _HS.birthName = "Mackenzie", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21,setHealth(_HS, 40), _HS.devotion = 60, _HS.markings = "freckled", _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.boobs = 1800, _HS.nipplesPiercing = 1, _HS.butt = 4, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = random(96,99), _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.desc = "$He has a slim and perfectly feminine frame except for $his big feet and ears. $He's very intelligent and well learned.">> -<<set $heroSlaves.push(_HS)>> -/*intelligent, classy, devoted to Master*/ -/*Increased ball size, changed eye color, changed skin to freckled, increased health, corrected customdesc syntax -BoneyM*/ -/% Fixed skin to pale, and changed markings to freckled %/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Rachel", _HS.birthName = "Rachel", _HS.genes = "XY", _HS.origin = "$He volunteered to become a slave when $he turned 18.", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = 100, _HS.height = 155, _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 60, _HS.hStyle = "shoulder length", _HS.waist = -55, _HS.boobs = 600, _HS.butt = 2, _HS.face = 15, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.anusTat = "bleached", _HS.intelligence = 20, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "buttslut">> -<<set $heroSlaves.push(_HS)>> - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Nikole", _HS.birthName = "Nikole", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 80, 0, 0, 0), _HS.devotion = 100, _HS.race = "white", _HS.markings = "freckled", _HS.eye.origColor = "green", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.origSkin = "pale", _HS.hLength = 60, _HS.hStyle = "long and in a ponytail", _HS.boobs = 200, _HS.butt = 5, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 5, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 3, _HS.scrotum = 3, _HS.anusTat = "bleached", _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a tattoo of a black widow's hourglass pattern on $his ballsack.">> -<<set $heroSlaves.push(_HS)>> -/% Put the freckles from custDesc to markings Bane70 %/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Exta", _HS.birthName = "Exta", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = 60, _HS.muscles = 20, _HS.height = 190, _HS.eye.origColor = "brown", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "white", _HS.hLength = 15, _HS.hStyle = "short, and in a boyish cut", _HS.boobs = 300, _HS.butt = 1, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.prostate = 1, _HS.balls = 1, _HS.anusTat = "bleached", _HS.skill.oral = 15, _HS.skill.combat = 1, _HS.intelligence = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a raised circuitry pattern on the nape of $his neck.", _HS.sexualFlaw = "shamefast", _HS.career = "a businessman">> -<<set $heroSlaves.push(_HS)>> -/*business skill*/ -/*likes mods - gave internal testicles as such PM*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Martin", _HS.birthName = "Martin", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 20), _HS.devotion = -55, _HS.muscles = 20, _HS.height = 190, _HS.eye.origColor = "bright blue", _HS.origHColor = "white", _HS.pubicHColor = "white", _HS.origSkin = "extremely pale", _HS.hLength = 15, _HS.hStyle = "short and in a boyish cut", _HS.waist = -55, _HS.boobs = 100, _HS.butt = 4, _HS.face = 55, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.prostate = 1, _HS.balls = 3, _HS.scrotum = 3, _HS.anusTat = "bleached", _HS.skill.combat = 1, _HS.intelligence = 30, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.behavioralFlaw = "arrogant", _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 sister, Elisa, $he has a lovely singing voice. $He prays quite often, if allowed to.", _HS.mother = -9997, _HS.father = -9996, _HS.sexualFlaw = "hates penetration">> -<<set $heroSlaves.push(_HS)>> -/*also hates pen*/ -/*elisa's sibling*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Steven", _HS.birthName = "Steven", _HS.genes = "XY", _HS.origin = "$He was forced into slavery due to extreme debt.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 31, _HS.physicalAge = 31, _HS.visualAge = 31, _HS.ovaryAge = 31, setHealth(_HS, 20), _HS.devotion = -55, _HS.weight = 40, _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.race = "white", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.boobs = 200, _HS.butt = 3, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.prostate = 1, _HS.balls = 3, _HS.scrotum = 3, _HS.anusTat = "bleached", _HS.skill.oral = 15, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.sexualFlaw = "hates penetration">> -<<set $heroSlaves.push(_HS)>> -/*also hates pen*/ -/*wide dick*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Selene", _HS.birthName = "Selene", _HS.genes = "XY", _HS.origin = "Once $he was an arcology security officer, lured to aphrodisiacs addiction and feminized by $his boss (and former wife), to whom $he was sold as a slave to satisfy her spousal maintenance after divorce.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 32, _HS.physicalAge = 32, _HS.visualAge = 32, _HS.ovaryAge = 32, setHealth(_HS, 20), _HS.devotion = 40, _HS.muscles = 20, _HS.height = 175, _HS.race = "latina", _HS.eye.origColor = "ice blue", _HS.origHColor = "ashen with black streaks", _HS.pubicHColor = "ashen", _HS.origSkin = "brown", _HS.hLength = 30, _HS.hStyle = "shoulder length", _HS.waist = -55, _HS.boobs = 1400, _HS.butt = 1, _HS.face = 55, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 5, _HS.anus = 2, _HS.dickPiercing = 1, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.anusTat = "bleached", _HS.earPiercing = 1, _HS.navelPiercing = 1, _HS.skill.anal = 100, _HS.skill.combat = 1, _HS.addict = 50, _HS.intelligence = 20, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.custom.desc = "$He has a large police badge made of polished silver pinned right to the skin with several barbell piercings just above $his left nipple. $He wears two pairs of handcuffs as bracelets (one pair on each wrist); the handcuff keyholes are welded, so they cannot be unlocked and removed in any normal way.", _HS.career = "a security guard">> -<<set $heroSlaves.push(_HS)>> - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'Buns' Jones", _HS.birthName = "Jones", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS), _HS.devotion = 31, _HS.nationality = "Chinese", _HS.race = "asian", _HS.override_H_Color = 1, _HS.origHColor = "black", _HS.hColor = "dark brown with bleached highlights", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.hLength = 60, _HS.hStyle = "long and braided into a ponytail", _HS.waist = -55, _HS.boobs = 200, _HS.butt = 8, _HS.lips = 35, _HS.vagina = -1, _HS.vaginaTat = "rude words", _HS.preg = -2, _HS.dick = 3, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.anusTat = "flowers", _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.shouldersTat = "tribal patterns", _HS.armsTat = "rude words", _HS.stampTat = "rude words", _HS.skill.oral = 100, _HS.skill.entertainment = 15, _HS.clothes = "a slutty outfit", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.custom.desc = "A palm sized ring adorns the end of $his braid, perfect for grabbing and pulling during any occasion.">> -<<set $heroSlaves.push(_HS)>> - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Mistress Izzy", _HS.birthName = "Isabella", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 70), _HS.devotion = 100, _HS.eye.origColor = "black", _HS.origHColor = "sparkling and shiny golden red", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 60, _HS.hStyle = "in thick long heavy braids", _HS.waist = -100, _HS.boobs = 9200, _HS.boobsImplant = 6000, _HS.boobsImplantType = "advanced fillable", _HS.nipplesPiercing = 2, _HS.boobsTat = "bovine patterns", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.counter.milk = 3010, _HS.butt = 8, _HS.buttImplant = 1, _HS.buttImplantType = "normal", _HS.buttTat = "bovine patterns", _HS.face = 55, _HS.faceImplant = 65, _HS.lips = 55, _HS.lipsImplant = 2, _HS.lipsPiercing = 2, _HS.lipsTat = "bovine patterns", _HS.tonguePiercing = 2, _HS.vagina = 2, _HS.vaginaPiercing = 2, _HS.vaginaTat = "bovine patterns", _HS.preg = -2, _HS.clitPiercing = 3, _HS.anus = 2, _HS.dick = 5, _HS.prostate = 1, _HS.balls = 3, _HS.scrotum = 2, _HS.anusPiercing = 2, _HS.anusTat = "bovine patterns", _HS.makeup = 2, _HS.nails = 2, _HS.brand["right buttock"] = "SLUT",_HS.earPiercing = 2, _HS.nosePiercing = 2, _HS.eyebrowPiercing = 2, _HS.navelPiercing = 2, _HS.shouldersTat = "bovine patterns", _HS.armsTat = "bovine patterns", _HS.legsTat = "bovine patterns", _HS.stampTat = "bovine patterns", _HS.skill.vaginal = 35, _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 100, _HS.skill.entertainment = 35, _HS.collar = "leather with cowbell", _HS.shoes = "heels", _HS.intelligence = 20, _HS.energy = 100, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has tattoos of teasing, enticing messages begging others to come taste $his addictive milk.", _HS.custom.desc = "$His musky milky aura drives men and women around $him giggly and dumb with lust.", _HS.horn = "cow horns">> -<<set $heroSlaves.push(_HS)>> -/*Dropped desc = $He has two cute horns protruding from $his forehead. A few addicted milkslaves of $his own tag along behind $him. */ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Joan", _HS.birthName = "Mila", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 25, _HS.weight = 20, _HS.height = 175, _HS.origHColor = "dark brown", _HS.pubicHColor = "brown", _HS.origSkin = "pale", _HS.hLength = 30, _HS.hStyle = "shoulder-length, done up in a ponytail", _HS.pubicHStyle = "bushy", _HS.boobs = 650, _HS.nipplesPiercing = 1, _HS.areolae = 2, _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 7, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.clitPiercing = 3, _HS.dick = 4, _HS.prostate = 1, _HS.balls = 5, _HS.scrotum = 4, _HS.anusPiercing = 1, _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.skill.entertainment = 35, _HS.clothes = "cutoffs and a t-shirt", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = -40, _HS.intelligenceImplant = 30, _HS.attrXX = 80, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd", _HS.custom.tattoo = "$He has a blood red, faux brand tattoo on $his left ass cheek.", _HS.custom.desc = "$He has a nearly faded pockmark on the skin above $his left eyebrow, the last reminder of $his awkward past.">> -<<set $heroSlaves.push(_HS)>> - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Aisha", _HS.birthName = "Aicha", _HS.genes = "XY", _HS.origin = "$He sold $himself into slavery to escape a life of boredom.", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, -20), _HS.devotion = 45, _HS.height = 155, _HS.heightImplant = -1, _HS.race = "middle eastern", _HS.override_Eye_Color = 1, _HS.eye.origColor = "blue", _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 = "peachy fading into a red ombre at the bottom", _HS.eyebrowHColor = "red", _HS.pubicHColor = "red", _HS.underArmHColor = "red", _HS.origSkin = "light", _HS.hLength = 30, _HS.hStyle = "shoulder-length in a hime cut", _HS.waist = -55, _HS.boobs = 250, _HS.butt = 3.5, _HS.face = 55, _HS.faceImplant = 65, _HS.vagina = -1, _HS.preg = -2, _HS.clitPiercing = 3, _HS.anus = 1, _HS.dick = 5, _HS.dickTat = "flowers", _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.anusPiercing = 1, _HS.anusTat = "flowers", _HS.brand["back"] = "your initials",_HS.earPiercing = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.skill.entertainment = 15, _HS.clothes = "a comfortable bodysuit", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = -30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.custom.tattoo = "$He has tattooed petals trailing from the nape of $his neck down $his back, ending between $his butt cheeks.", _HS.custom.desc = "$His red pubic hair is waxed into the shape of a heart. $He has bright blue eyeshadow on $his bottom lids.", _HS.pubicHStyle = "waxed">> -<<set $heroSlaves.push(_HS)>> - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Laura", _HS.birthName = "Rolan", _HS.genes = "XY", _HS.ID = _i++, _HS.prestige = 1, _HS.prestigeDesc = "$He is a high-ranking spy who was captured while trying to obtain secrets about the defenses of one the Free Cities.", _HS.birthWeek = random(0,51), setHealth(_HS, -10), _HS.devotion = 5, _HS.height = 155, _HS.race = "middle eastern", _HS.override_H_Color = 1, _HS.override_Eye_Color = 1, _HS.eye.origColor = "blue", _HS.origHColor = "white", _HS.pubicHColor = "white", _HS.origSkin = "dark", _HS.hLength = 60, _HS.hStyle = "long and tied in a bun using a pearl chain", _HS.heels = 1, _HS.boobs = 200, _HS.butt = 2, _HS.vagina = -1, _HS.preg = -2, _HS.bellyAccessory = "a corset", _HS.dick = 2, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.navelPiercing = 1, _HS.skill.oral = 15, _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = 100, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.career = "a spy">> -<<set $heroSlaves.push(_HS)>> - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'Dragon Goddess' Chae-won", _HS.genes = "XY", _HS.birthName = "Chae-won", _HS.origin = "$He is a former Kkangpae gang member who was sold into slavery by $his former boss as a punishment.", _HS.ID = _i++, _HS.prestige = 1, _HS.prestigeDesc = "$He is a famed Free Cities whore, and commands top prices.", _HS.birthWeek = random(0,51), _HS.actualAge = 26, _HS.physicalAge = 26, _HS.visualAge = 26, _HS.ovaryAge = 26, setHealth(_HS, 50), _HS.devotion = 31, _HS.muscles = 50, _HS.height = 155, _HS.nationality = "Korean", _HS.race = "asian", _HS.override_H_Color = 1, _HS.origHColor = "black", _HS.hColor = "onyx black and rainbow-streaked", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 60, _HS.hStyle = "styled in high chignon resembling a traditional Japanese geisha's Shimada hairstyle, with plenty of decorated hairpins", _HS.waist = -55, _HS.boobs = 6000, _HS.boobsImplant = 3000, _HS.boobsImplantType = "advanced fillable", _HS.nipples = "huge", _HS.butt = 4.5, _HS.face = 55, _HS.faceImplant = 15, _HS.lips = 35, _HS.lipsTat = "permanent makeup", _HS.tonguePiercing = 1, _HS.vagina = -1, _HS.preg = -2, _HS.anus = 1, _HS.dick = 5, _HS.prostate = 1, _HS.balls = 4, _HS.scrotum = 4, _HS.anusTat = "bleached", _HS.nails = 3, _HS.earPiercing = 1, _HS.legsTat = "flowers", _HS.stampTat = "flowers", _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 100, _HS.clothes = "a slave gown", _HS.collar = "pretty jewelry", _HS.shoes = "heels", _HS.intelligence = -3, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.behavioralFlaw = "arrogant", _HS.custom.tattoo = "$He has two neon-blue butterflies tattooed on $his right temple and one more right above $his right eyebrow; a bright blue, luminescent tattoo of an oriental dragon is intertwining with floral tattoos on $his right leg.", _HS.custom.desc = "$He is almost never seen without $his long, thin, lavishly decorated smoking pipe, either holding it in hand, or carrying it tucked in $his chignon.", _HS.career = "a gang member">> -<<set $heroSlaves.push(_HS)>> - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Bailey", _HS.birthName = "Bryan", _HS.genes = "XY", _HS.origin = "$He was sold to your predecessor by $his husband to pay off his extreme debt.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 22, _HS.physicalAge = 22, _HS.visualAge = 22, _HS.ovaryAge = 22, setHealth(_HS, 50), _HS.devotion = -50, _HS.nationality = "American", _HS.race = "white", _HS.eye.origColor = "blue", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "fair", _HS.hLength = 50, _HS.hStyle = "chest-length, styled up in schoolgirl pigtails with bangs", _HS.boobs = 700, _HS.boobsImplant = 400, _HS.boobsImplantType = "normal", _HS.butt = 2, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.anus = 1, _HS.dick = 2, _HS.prostate = 1, _HS.balls = 2, _HS.scrotum = 2, _HS.makeup = 1, _HS.nails = 1, _HS.earPiercing = 1, _HS.skill.oral = 15, _HS.clothes = "a slutty maid outfit", _HS.shoes = "heels", _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1>> -<<set $heroSlaves.push(_HS)>> - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'Mistress' Ingrid", _HS.birthName = "Ingrid", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 42, _HS.physicalAge = 42, _HS.visualAge = 42, _HS.ovaryAge = 42, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 20, _HS.height = 190, _HS.race = "white", _HS.nationality = "Norwegian", _HS.eye.origColor = "blue", _HS.override_H_Color = 1, _HS.origHColor = "black", _HS.hColor = "onyx black", _HS.origSkin = "pale", _HS.hLength = 90, _HS.hStyle = "ass-length with Nordic braids throughout", _HS.waist = -55, _HS.boobs = 800, _HS.butt = 5, _HS.face = 55, _HS.lips = 35, _HS.preg = -2, _HS.clitPiercing = 3, _HS.dick = 4, _HS.prostate = 1, _HS.balls = 4, _HS.scrotum = 4, _HS.ovaries = 1, _HS.makeup = 2, _HS.nails = 2, _HS.skill.vaginal = 35, _HS.skill.oral = 35, _HS.skill.anal = 15, _HS.skill.whoring = 35, _HS.skill.entertainment = 35, _HS.skill.combat = 1, _HS.clothes = "a slave gown", _HS.collar = "pretty jewelry", _HS.shoes = "boots", _HS.intelligence = 25, _HS.intelligenceImplant = 30, _HS.energy = 100, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.custom.desc = "$He has the style of Gothic royalty, and the demeanor to match.">> -<<set $heroSlaves.push(_HS)>> - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'Demon Whore' Yuzuki", _HS.birthName = "Yuri", _HS.genes = "XY", _HS.origin = "$His origins are unknown, but rumor has it that $he is a literal demon.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 60), _HS.devotion = 90.4, _HS.muscles = 20, _HS.height = 190, _HS.nationality = "Japanese", _HS.race = "asian", _HS.eye.origColor = "green", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hStyle = "long", _HS.pubicHStyle = "in a strip", _HS.waist = -100, _HS.boobs = 10000, _HS.boobsImplant = 4800, _HS.boobsImplantType = "advanced fillable", _HS.areolae = 2, _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 9, _HS.face = 55, _HS.faceImplant = 65, _HS.lips = 35, _HS.vagina = 1, _HS.clitPiercing = 3, _HS.clitSetting = "humiliation", _HS.anus = 1, _HS.dick = 5, _HS.prostate = 1, _HS.balls = 5, _HS.scrotum = 4, _HS.ovaries = 1, _HS.makeup = 2, _HS.nails = 2, _HS.skill.vaginal = 15, _HS.skill.oral = 100, _HS.skill.anal = 15, _HS.skill.whoring = 15, _HS.skill.entertainment = 15, _HS.skill.combat = 1, _HS.clothes = "a string bikini", _HS.collar = "pretty jewelry", _HS.shoes = "boots", _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "humiliation", _HS.fetishKnown = 1>> -<<run setEyeColorFull(_HS, "", "demonic", "", "both")>> -<<set $heroSlaves.push(_HS)>> - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Fuckmeat", _HS.birthName = "Alva", _HS.genes = "XY", _HS.ID = _i++, _HS.prestige = 1, _HS.prestigeDesc = "$He is a famed Free Cities slut, and can please anyone.", _HS.birthWeek = random(0,51), _HS.actualAge = 19, _HS.physicalAge = 19, _HS.visualAge = 19, _HS.ovaryAge = 19, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 20, _HS.height = 145, _HS.race = "white", _HS.nationality = "Swedish", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 0, _HS.hStyle = "shaved bald", _HS.pubicHStyle = "bushy", _HS.boobs = 1700, _HS.boobsTat = "rude words", _HS.butt = 8, _HS.buttTat = "rude words", _HS.face = 55, _HS.lips = 35, _HS.vagina = -1, _HS.vaginaTat = "rude words", _HS.preg = -2, _HS.anus = 3, _HS.dick = 2, _HS.dickTat = "rude words", _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 2, _HS.anusTat = "rude words", _HS.makeup = 3, _HS.nails = 3, _HS.brand["cheek"] = "a penis symbol",_HS.shouldersTat = "rude words", _HS.armsTat = "rude words", _HS.legsTat = "rude words", _HS.stampTat = "rude words", _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.whoring = 100, _HS.skill.entertainment = 100, _HS.skill.combat = 1, _HS.diet = "muscle building", _HS.clothes = "harem gauze", _HS.collar = "heavy gold", _HS.shoes = "boots", _HS.energy = 100, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishStrength = 0, _HS.fetishKnown = 1, _HS.custom.tattoo = "$He has a swastika tattooed on $his ballsack.">> -<<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, setHealth(_HS, 60), _HS.devotion = 90, _HS.height = 145, _HS.heightImplant = -1, _HS.race = "white", _HS.nationality = "French", _HS.eye.origColor = "blue", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.hLength = 70, _HS.hStyle = "ass-length", _HS.waist = -55, _HS.heels = 1, _HS.boobs = 1100, _HS.boobsImplant = 400, _HS.boobsImplantType = "normal", _HS.nipplesPiercing = 1, _HS.areolae = 1, _HS.butt = 4, _HS.buttImplant = 2, _HS.buttImplantType = "normal", _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 $seeExtreme == 1>> - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Fjola", _HS.birthName = "Fjola", _HS.genes = "XY", _HS.origin = "$He was born into a slave ring that practiced heavy hormone manipulation to alter slaves from a very young age.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20), _HS.devotion = 10, _HS.weight = 20, _HS.height = 160, _HS.eye.origColor = "grey", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.hLength = 30, _HS.hStyle = "curly and shoulder length", _HS.boobs = 1000, _HS.butt = 3, _HS.vagina = 1, _HS.preg = -2, _HS.dick = 2, _HS.anus = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.intelligence = -40, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.desc = "$He has a small scar on $his cheek, and many larger ones on $his back.">> -<<set $heroSlaves.push(_HS)>> -/*tsundere, grey eyes, unhappy to be herm*/ -/*Changed eye color, added customdesc and origin -BoneyM*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Alex", _HS.birthName = "Alex", _HS.genes = "XY", _HS.origin = "$He was given a sex change in a freak laboratory mix-up, and sold $himself into slavery out of desperation due to a lack of any way to prove $his identity.", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.height = 175, _HS.origSkin = "pale", _HS.hStyle = "long", _HS.boobs = 400, _HS.preg = -2, _HS.attrXX = 40, _HS.attrXY = 40, _HS.sexualFlaw = "hates penetration", _HS.prostate = 1>> -<<set $heroSlaves.push(_HS)>> -/*MtF*/ -/*Made a post-op to match the bio as closely as possible in-universe, added origin, added hates penetration. -BoneyM*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Janine", _HS.birthName = "Janine", _HS.genes = "XY", _HS.origin = "$He was enslaved after $he fell into debt to you.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 27, _HS.physicalAge = 27, _HS.visualAge = 27, _HS.ovaryAge = 27, setHealth(_HS, 90, 0, 0, 0), _HS.devotion = 100, _HS.nationality = "German", _HS.eye.origColor = "blue", _HS.origHColor = "golden blonde", _HS.pubicHColor = "blonde", _HS.origSkin = "pale", _HS.hLength = 10, _HS.hStyle = "flowing gently just past $his cheek, framing $his face beautifully", _HS.waist = -55, _HS.boobs = 500, _HS.butt = 3.5, _HS.face = 15, _HS.lips = 35, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 1, _HS.anusTat = "bleached", _HS.skill.oral = 100, _HS.clothes = "a penitent nuns habit", _HS.collar = "tight steel", _HS.shoes = "heels", _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.custom.desc = "$He has a beauty mark just above $his lip, on an otherwise flawless face.">> -<<set $heroSlaves.push(_HS)>> - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Buck", _HS.birthName = "Buck", _HS.genes = "XY", _HS.origin = "$He was a soldier before being enslaved.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 23, _HS.physicalAge = 23, _HS.visualAge = 23, _HS.ovaryAge = 23, setHealth(_HS, 90, 0, 0, 0), _HS.devotion = -100, _HS.muscles = 50, _HS.height = 190, _HS.eye.origColor = "blue", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.hLength = 0, _HS.prostate = 1, _HS.hStyle = "shaved", _HS.waist = -55, _HS.boobs = 100, _HS.nipplesPiercing = 1, _HS.butt = 1, _HS.face = 15, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 5, _HS.analArea = 1, _HS.prostate = 1, _HS.balls = 3, _HS.scrotum = 3, _HS.anusTat = "bleached", _HS.earPiercing = 1, _HS.nosePiercing = 1, _HS.navelPiercing = 1, _HS.skill.combat = 1, _HS.intelligence = -40, _HS.intelligenceImplant = 30, _HS.attrXX = 40, _HS.attrXY = 40, _HS.behavioralFlaw = "bitchy", _HS.career = "a soldier">> -<<set $heroSlaves.push(_HS)>> -/*dickskilled*/ - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "'Udders' Erika", _HS.birthName = "Erika", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, setHealth(_HS, -10), _HS.devotion = 55, _HS.height = 145, _HS.eye.origColor = "blue", _HS.origSkin = "fair", _HS.hStyle = "long", _HS.pubicHStyle = "in a strip", _HS.boobs = 1250, _HS.areolae = 2, _HS.boobsTat = "bovine patterns", _HS.lactation = 2, _HS.lactationDuration = 2, _HS.butt = 2, _HS.buttTat = "bovine patterns", _HS.lips = 55, _HS.lipsImplant = 10, _HS.lipsTat = "bovine patterns", _HS.vagina = -1, _HS.vaginaTat = "bovine patterns", _HS.preg = -3, _HS.clitPiercing = 3, _HS.clitSetting = "boobs", _HS.anus = 2, _HS.dick = 1, _HS.dickTat = "bovine patterns", _HS.prostate = 1, _HS.anusTat = "bovine patterns", _HS.nosePiercing = 2, _HS.shouldersTat = "bovine patterns", _HS.armsTat = "bovine patterns", _HS.legsTat = "bovine patterns", _HS.stampTat = "bovine patterns", _HS.skill.oral = 100, _HS.skill.anal = 100, _HS.skill.entertainment = 35, _HS.collar = "leather with cowbell", _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "boobs", _HS.fetishKnown = 1, _HS.custom.desc = "Though $his vocal cords have been altered to keep $him from speaking, $he is still capable of the occasional moo.">> -<<set $heroSlaves.push(_HS)>> - -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Danny 'The D'", _HS.slaveSurname = "Ildoe", _HS.birthName = "Danny 'The D'", _HS.birthSurname = "Ildoe", _HS.origin = "Born without limbs and abandoned by $his parents, $he was taken in by a posh family, given a massive cock, and trained to be the wealthy lady's perfect living sex toy.", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.visualAge = 28, _HS.physicalAge = 28, _HS.ovaryAge = 28, setHealth(_HS, 100, 0, 0, 0, 0), _HS.devotion = 100, _HS.muscles = 50, _HS.height = 94, _HS.eye.origColor = "blue", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.override_Skin = 1, _HS.origSkin = "spray tanned", _HS.hLength = 10, _HS.hStyle = "short", _HS.waist = 55, _HS.boobs = 50, _HS.hips = -1, _HS.butt = 0, _HS.face = 45, _HS.vagina = -1, _HS.preg = 0, _HS.dick = 6, _HS.balls = 10, _HS.scrotum = 7, _HS.prostate = 2, _HS.anusTat = "bleached", _HS.energy = 95, _HS.intelligenceImplant = 30, _HS.attrXX = 100, _HS.attrXY = 0, _HS.skill.oral = 95, _HS.fetish = "submissive", _HS.fetishKnown = 1, _HS.behavioralQuirk = "advocate">> -<<run App.Utils.removeHeroLimbs(_HS, "all")>> -<<set $heroSlaves.push(_HS)>> -/* needed an amputated slave for debug reasons -prndev */ - -<</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, setHealth(_HS, 20), _HS.devotion = 60, _HS.origSkin = "white", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.hLength = 20, _HS.boobs = 300, _HS.butt = 1, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 2, _HS.anus = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.anusTat = "bleached", _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetishKnown = 1>> -<<set $heroSlaves.push(_HS)>> -*/ diff --git a/src/npc/databases/dfSlavesDatabase.js b/src/npc/databases/dfSlavesDatabase.js new file mode 100644 index 0000000000000000000000000000000000000000..4f0afee9ea19933639cd286594a11da6741c7e6b --- /dev/null +++ b/src/npc/databases/dfSlavesDatabase.js @@ -0,0 +1,338 @@ +/* eslint-disable camelcase */ +// _i: 700000}, + +App.Data.HeroSlaves.DF = [ + { + ID: 700001, + slaveName: "Cherry", + birthName: "Cherry", + health: {condition: 20}, + devotion: 75, + actualAge: 18, + physicalAge: 18, + visualAge: 18, + ovaryAge: 18, + eye: {origColor: "light brown"}, + pubicHColor: "black", + origSkin: "white", + origHColor: "black", + hStyle: "long", + pubicHStyle: "waxed", + boobs: 500, + nipplesPiercing: 1, + butt: 3, + lips: 35, + vagina: 1, + vaginaLube: 1, + vaginaPiercing: 2, + preg: -2, + ovaries: 1, + skill: {vaginal: 35}, + attrXY: 40, + fetish: "submissive", + fetishKnown: 1, + lipsTat: "Two cherries are tattooed on $his left cheek.", + buttTat: "Two cherries are tattooed on $his right butt cheek.", + clitPiercing: 2, + counter: {birthsTotal: 1} + }, + /* vag implant, vibe nips*/ + { + ID: 700002, + slaveName: "Strawberry", + birthName: "Strawberry", + actualAge: 30, + physicalAge: 30, + visualAge: 30, + ovaryAge: 30, + health: {condition: 20}, + devotion: 40, + height: 175, + eye: {origColor: "dark brown"}, + origHColor: "blonde", + pubicHColor: "blonde", + override_Skin: 1, + origSkin: "sun tanned", + hStyle: "long", + pubicHStyle: "waxed", + waist: -55, + boobs: 1000, + boobsImplant: 400, + boobsImplantType: "normal", + nipplesPiercing: 1, + butt: 5, + buttImplant: 2, + buttImplantType: "normal", + lips: 35, + lipsImplant: 10, + vagina: 2, + vaginaLube: 1, + vaginaPiercing: 2, + preg: -2, + anus: 2, + ovaries: 1, + skill: {vaginal: 35, oral: 35, anal: 35}, + attrXY: 40, + fetish: "humiliation", + fetishKnown: 1, + lipsTat: "Strawberries are tattooed on $his left cheek.", + buttTat: "Strawberries are tattooed on $his right buttock.", + clitPiercing: 2, + counter: {birthsTotal: 2} + }, + /* vibe nips, muscles*/ + { + ID: 700003, + slaveName: "Melon", + birthName: "Melon", + actualAge: 23, + physicalAge: 23, + visualAge: 23, + ovaryAge: 23, + health: {condition: 20}, + devotion: 50, + height: 175, + eye: {origColor: "blue"}, + origHColor: "red", + pubicHColor: "red", + override_Skin: 1, + origSkin: "sun tanned", + hLength: 10, + hStyle: "short", + pubicHStyle: "waxed", + boobs: 1800, + boobsImplant: 800, + boobsImplantType: "fillable", + nipplesPiercing: 1, + butt: 4, + lips: 35, + lipsImplant: 10, + vagina: 2, + vaginaLube: 1, + vaginaPiercing: 2, + preg: -2, + anus: 2, + ovaries: 1, + skill: {vaginal: 15, oral: 100, anal: 15}, + attrXY: 40, + fetish: "submissive", + fetishKnown: 1, + lipsTat: "Watermelons are tattooed on $his face.", + buttTat: "Watermelons are tattooed on $his buttocks.", + teeth: "removable", + clitPiercing: 2, + lipsPiercing: 2, + counter: {PbirthsTotal: 1} + }, + /* vibe nips, saliva implant*/ + { + ID: 700004, + slaveName: "Carambola", + birthName: "Carambola", + actualAge: 25, + physicalAge: 25, + visualAge: 25, + ovaryAge: 25, + health: {condition: 20}, + devotion: 90, + height: 175, + eye: {origColor: "light green"}, + origHColor: "dark blonde", + pubicHColor: "dark blonde", + override_Skin: 1, + origSkin: "sun tanned", + hLength: 60, + hStyle: "curly and long, and in pigtails", + pubicHStyle: "waxed", + boobs: 650, + nipplesPiercing: 1, + butt: 8, + buttImplant: 4, + buttImplantType: "fillable", + lips: 35, + vagina: 1, + vaginaLube: 1, + vaginaPiercing: 2, + preg: -2, + anus: 3, + ovaries: 1, + skill: {vaginal: 15, oral: 15, anal: 100}, + attrXY: 40, + fetish: "buttslut", + fetishKnown: 1, + lipsTat: "Carambolas — starfruits — are tattooed on $his face.", + buttTat: "Carambolas — starfruits — are tattooed on $his buttocks.", + clitPiercing: 2, + tonguePiercing: 1, + clothes: "no clothing", + collar: "bell collar", + heels: 1 + }, + /* vibe nips, saliva implant lube*/ + { + ID: 700005, + slaveName: "Banana", + actualAge: 28, + physicalAge: 28, + visualAge: 28, + ovaryAge: 28, + health: {condition: 20}, + devotion: 65, + race: "latina", + origHColor: "black", + pubicHColor: "black", + origSkin: "brown", + hLength: 0, + boobs: 400, + nipplesPiercing: 1, + butt: 5, + lips: 35, + vagina: 2, + vaginaLube: 1, + vaginaPiercing: 2, + preg: -2, + anus: 2, + ovaries: 1, + skill: {vaginal: 35, oral: 100, anal: 35}, + attrXY: 40, + fetish: "submissive", + fetishKnown: 1, + lipsTat: "Bananas are tattooed on $his face.", + buttTat: "Bananas are tattooed on $his buttocks.", + teeth: "removable", + clitPiercing: 2, + hips: 1, + labia: 2, + clit: 1, + bald: 1, + hStyle: "bald", + pubicHStyle: "bald", + underArmHStyle: "bald", + intelligence: -30 + }, + /* vibe nips, big pusslips+clit*/ + { + ID: 700006, + slaveName: "Green Grape", + birthName: "Green Grape", + health: {condition: 20}, + devotion: 40, + actualAge: 18, + physicalAge: 18, + visualAge: 18, + ovaryAge: 18, + race: "mixed race", + eye: {origColor: "green"}, + origHColor: "black", + pubicHColor: "black", + origSkin: "pale", + hStyle: "long", + pubicHStyle: "waxed", + boobs: 650, + nipplesPiercing: 1, + butt: 4, + vagina: 1, + vaginaLube: 1, + vaginaPiercing: 2, + preg: -2, + anus: 1, + ovaries: 1, + skill: {vaginal: 35, oral: 35, anal: 35}, + attrXX: 80, + attrXY: 40, + fetishKnown: 1, + lipsTat: "Green grapes are tattooed on $his face.", + buttTat: "Green grapes are tattooed on $his buttocks.", + mother: -9995, + father: -9994, + clitPiercing: 2, + intelligence: -60 + }, + /* vibe nips, implant link to sister*/ + { + ID: 700007, + slaveName: "Purple Grape", + birthName: "Purple Grape", + actualAge: 23, + physicalAge: 23, + visualAge: 23, + ovaryAge: 23, + health: {condition: 20}, + devotion: 40, + race: "mixed race", + eye: {origColor: "black"}, + origHColor: "black", + pubicHColor: "black", + origSkin: "brown", + hLength: 60, + hStyle: "long", + pubicHStyle: "waxed", + boobs: 650, + nipplesPiercing: 1, + butt: 4, + vagina: 1, + vaginaLube: 1, + vaginaPiercing: 2, + preg: -2, + anus: 1, + ovaries: 1, + skill: {vaginal: 35, oral: 35, anal: 35}, + attrXX: 80, + attrXY: 40, + fetishKnown: 1, + lipsTat: "Purple grapes are tattooed on $his face.", + buttTat: "Purple grapes are tattooed on $his buttocks.", + mother: -9995, + father: -9994, + clitPiercing: 2, + intelligence: -60 + }, + /* vibe nips, implant link to sister + {slaveName: "Apple", birthName: "Apple", ID: 700008, actualAge: 28, physicalAge: 28, visualAge: 28, ovaryAge: 28, health: {condition: 20}, devotion: 75, muscles: 20, eye.origColor: "dark brown", pubicHColor: "black", origSkin: "pale", origHColor: "black", hStyle: "long", pubicHStyle: "waxed", boobs: 500, nipplesPiercing: 1, butt: 3, lips: 55, lipsTat: "permanent makeup", vagina: 3, vaginaLube: 1, vaginaPiercing: 2, preg: -2, ovaries: 1, skill.vaginal: 15, skill.oral: 35, vaginalAccessory: "large dildo", buttplug: "large plug", attrXY: 40, fetish: "submissive", fetishKnown: 1, lipsTat: "Cored apples are tattooed on $his face.", buttTat: "Cored apples are tattooed $his on buttocks.", intelligence: -60, clitPiercing: 2}, + /*vibe nips, stupid, sensitive, no masturb implant*/ +]; + +App.Data.HeroSlaves.DFextreme = [ + { + ID: 700009, + slaveName: "Plum", + birthName: "Plum", + actualAge: 28, + physicalAge: 28, + visualAge: 28, + ovaryAge: 28, + health: {condition: 20}, + devotion: 75, + muscles: 30, + weight: 20, + eye: {origColor: "brown"}, + origHColor: "brown", + origSkin: "pale", + hLength: 20, + hStyle: "short and wavy", + pubicHStyle: "waxed", + boobs: 400, + nipplesPiercing: 1, + butt: 2, + lips: 35, + vagina: 4, + vaginaLube: 1, + vaginaPiercing: 2, + preg: -2, + anus: 2, + ovaries: 1, + skill: {vaginal: 15, oral: 15, anal: 15}, + buttplug: "large plug", + attrXY: 40, + fetishKnown: 1, + lipsTat: "Cored plums are tattooed on $his face.", + buttTat: "Cored plums are tattooed on $his buttocks.", + custom: {desc: "$He has massive C-clamp piercings in $his back that allow $him to act as furniture, and a truly enormous vagina."}, + clitPiercing: 2, + corsetPiercing: 1, + sexualFlaw: "self hating", + clothes: "no clothing", + vaginalAccessory: "long, huge dildo" + }, + /* vibe nips, can act as furniture*/ +]; diff --git a/src/npc/databases/dfSlavesDatabase.tw b/src/npc/databases/dfSlavesDatabase.tw deleted file mode 100644 index 4e1cf89141dde26486cf9d86e062fd2bffc19ab6..0000000000000000000000000000000000000000 --- a/src/npc/databases/dfSlavesDatabase.tw +++ /dev/null @@ -1,49 +0,0 @@ -:: DF Slaves Database - -<<set _i = 700000>> -<<set _HS = App.Entity.SlaveState.makeSkeleton()>> -<<set _HS.slaveName = "Cherry", _HS.birthName = "Cherry", _HS.ID = _i++, _HS.birthWeek = random(0,51), setHealth(_HS, 20), _HS.devotion = 75, _HS.actualAge = 18, _HS.physicalAge = 18, _HS.visualAge = 18, _HS.ovaryAge = 18, _HS.eye.origColor = "light brown", _HS.pubicHColor = "black", _HS.origSkin = "white", _HS.origHColor = "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, setHealth(_HS, 20), _HS.devotion = 40, _HS.height = 175, _HS.eye.origColor = "dark brown", _HS.origHColor = "blonde", _HS.pubicHColor = "blonde", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hStyle = "long", _HS.pubicHStyle = "waxed", _HS.waist = -55, _HS.boobs = 1000, _HS.boobsImplant = 400, _HS.boobsImplantType = "normal", _HS.nipplesPiercing = 1, _HS.butt = 5, _HS.buttImplant = 2, _HS.buttImplantType = "normal", _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, setHealth(_HS, 20), _HS.devotion = 50, _HS.height = 175, _HS.eye.origColor = "blue", _HS.origHColor = "red", _HS.pubicHColor = "red", _HS.override_Skin = 1, _HS.origSkin = "sun tanned", _HS.hLength = 10, _HS.hStyle = "short", _HS.pubicHStyle = "waxed", _HS.boobs = 1800, _HS.boobsImplant = 800, _HS.boobsImplantType = "fillable", _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, setHealth(_HS, 20), _HS.devotion = 90, _HS.height = 175, _HS.eye.origColor = "light green", _HS.origHColor = "dark blonde", _HS.pubicHColor = "dark blonde", _HS.override_Skin = 1, _HS.origSkin = "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.buttImplantType = "fillable", _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, setHealth(_HS, 20), _HS.devotion = 65, _HS.race = "latina", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "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), setHealth(_HS, 20), _HS.devotion = 40, _HS.actualAge = 18, _HS.physicalAge = 18, _HS.visualAge = 18, _HS.ovaryAge = 18, _HS.race = "mixed race", _HS.eye.origColor = "green", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 40, _HS.race = "mixed race", _HS.eye.origColor = "black", _HS.origHColor = "black", _HS.pubicHColor = "black", _HS.origSkin = "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, setHealth(_HS, 20), _HS.devotion = 75, _HS.muscles = 20, _HS.eye.origColor = "dark brown", _HS.pubicHColor = "black", _HS.origSkin = "pale", _HS.origHColor = "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, setHealth(_HS, 20), _HS.devotion = 75, _HS.muscles = 30, _HS.weight = 20, _HS.eye.origColor = "brown", _HS.origHColor = "brown", _HS.origSkin = "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/uncategorized/completeCatalog.tw b/src/uncategorized/completeCatalog.tw index 486b56209d1cd14fa83ed9546da39612761d4315..2fe58952f8a3c60df8e4070a111d92811655b2a0 100644 --- a/src/uncategorized/completeCatalog.tw +++ b/src/uncategorized/completeCatalog.tw @@ -2,98 +2,40 @@ <<set $nextButton = "Back to Main", $nextLink = "Main", $returnTo = "Main">> -//This is the complete catalog of slaves that you can acquire from other slaveowners. Most of these slaves are not for sale, so persuading their owners to part with them will be extremely expensive.// - -<br><br> - -<<for $i = 0; $i < $heroSlaves.length; $i++>> - <<if $i > 0>> | <</if>> - <<if $heroSlaves[$i].ID == $activeSlave.ID>> - //$heroSlaves[$i].slaveName// - <<else>> - <<print "[[$heroSlaves[$i].slaveName|Complete Catalog][$activeSlave = App.Utils.getHeroSlave($heroSlaves[" + $i + "], $baseHeroSlave)]]">> - <</if>> -<</for>> - -<<if ndef $activeSlave.pubicHColor>> - <<set $activeSlave.pubicHColor = $activeSlave.hColor>> -<</if>> -<<if ndef $activeSlave.underArmHColor>> - <<set $activeSlave.underArmHColor = $activeSlave.hColor>> -<</if>> -<<if $activeSlave.override_Race != 1>> - <<set $activeSlave.origRace = $activeSlave.race>> -<</if>> -<<if $activeSlave.override_Eye_Color != 1>> - <<run resetEyeColor($activeSlave, "both")>> -<</if>> -<<if $activeSlave.override_H_Color != 1>> - <<set $activeSlave.hColor = getGeneticHairColor($activeSlave)>> -<</if>> -<<if $activeSlave.override_Arm_H_Color != 1>> - <<set $activeSlave.underArmHColor = getGeneticHairColor($activeSlave)>> -<</if>> -<<if $activeSlave.override_Pubic_H_Color != 1>> - <<set $activeSlave.pubicHColor = getGeneticHairColor($activeSlave)>> -<</if>> -<<if $activeSlave.override_Brow_H_Color != 1>> - <<set $activeSlave.eyebrowHColor = getGeneticHairColor($activeSlave)>> -<</if>> -<<if $activeSlave.override_Skin != 1>> - <<set $activeSlave.skin = getGeneticSkinColor($activeSlave)>> -<</if>> -<<run SetBellySize($activeSlave)>> -<<set $specialSlavesPriceOverride = 1>> -<<run nationalityToAccent($activeSlave)>> -<<if $familyTesting == 1>> - /* special slaves exceptions to keep siblings sensible */ - <<if $activeSlave.mother == -9999 && $activeSlave.father == -9998>> /* The twins — Camille & Kennerly */ - <<for _k = 0; _k < $slaves.length; _k++>> - <<if areSisters($slaves[_k], $activeSlave) > 0>> - <<set $activeSlave.actualAge = $slaves[_k].actualAge, $activeSlave.physicalAge = $activeSlave.actualAge, $activeSlave.visualAge = $activeSlave.actualAge, $activeSlave.ovaryAge = $activeSlave.actualAge, $activeSlave.birthWeek = $slaves[_k].birthWeek>> - <</if>> - <</for>> - <</if>> - <<if $activeSlave.mother == -9997 && $activeSlave.father == -9996>> /* The siblings — Elisa & Martin */ - <<for _k = 0; _k < $slaves.length; _k++>> - <<if areSisters($slaves[_k], $activeSlave) > 0>> - <<if $activeSlave.birthName == "Elisa">> - <<set $activeSlave.actualAge = $slaves[_k].actualAge-1, $activeSlave.physicalAge = $activeSlave.actualAge, $activeSlave.visualAge = $activeSlave.actualAge, $activeSlave.ovaryAge = $activeSlave.actualAge>> - <<elseif $activeSlave.birthName == "Martin">> - <<set $activeSlave.actualAge = $slaves[_k].actualAge+1, $activeSlave.physicalAge = $activeSlave.actualAge, $activeSlave.visualAge = $activeSlave.actualAge, $activeSlave.ovaryAge = $activeSlave.actualAge>> - <</if>> - <</if>> - <</for>> +<span class="scene-intro"> + This is the complete catalog of slaves that you can acquire from other slaveowners. Most of these slaves are not for sale, so persuading their owners to part with them will be extremely expensive. +</span> + +<p> + <<set _heroSlaves = App.Utils.buildHeroArray()>> + + <<for $i = 0; $i < _heroSlaves.length; $i++>> + <<if $i > 0>> | <</if>> + <<if _heroSlaves[$i].slaveName == $activeSlave.slaveName>> + <span class="note">_heroSlaves[$i].slaveName</span> + <<else>> + <<print "[[_heroSlaves[$i].slaveName|Complete Catalog][$activeSlave = App.Utils.getHeroSlave(_heroSlaves[" + $i + "])]]">> + <</if>> + <</for>> +</p> + +<p> + <<set $saleDescription = 1>> + <<include "Long Slave Description">> + <<set $specialSlavesPriceOverride = 1>> + <<set _slaveCost = slaveCost($activeSlave)>> + <<set $specialSlavesPriceOverride = 0>> + <<set _slaveCost = (10*Math.trunc((_slaveCost/10)*2))>> + <<if _slaveCost < 40000>> + <<set _slaveCost += random(20000,60000)>> <</if>> - <<if $activeSlave.mother == -9995 && $activeSlave.father == -9994>> /* The fruit siblings — Green & Purple Grape */ - <<for _k = 0; _k < $slaves.length; _k++>> - <<if areSisters($slaves[_k], $activeSlave) > 0>> - <<if $activeSlave.birthName == "Green Grape">> - <<set $activeSlave.actualAge = $slaves[_k].actualAge-5, $activeSlave.physicalAge = $activeSlave.actualAge, $activeSlave.visualAge = $activeSlave.actualAge, $activeSlave.ovaryAge = $activeSlave.actualAge>> - <<elseif $activeSlave.birthName == "Purple Grape">> - <<set $activeSlave.actualAge = $slaves[_k].actualAge+5, $activeSlave.physicalAge = $activeSlave.actualAge, $activeSlave.visualAge = $activeSlave.actualAge, $activeSlave.ovaryAge = $activeSlave.actualAge>> - <</if>> - <</if>> - <</for>> - <</if>> -<</if>> - -<br><br> - -<<set $saleDescription = 1>> -<<include "Long Slave Description">> -<<set _slaveCost = slaveCost($activeSlave)>> -<<set _slaveCost = (10*Math.trunc((_slaveCost/10)*2))>> -<<if _slaveCost < 40000>> - <<set _slaveCost += random(20000,60000)>> -<</if>> -<<set $specialSlavesPriceOverride = 0>> - -<br><br> +</p> -The offered price is <<print cashFormat(_slaveCost)>>. +<p> + The offered price is <<print cashFormat(_slaveCost)>>. -<<link "Buy $his slave contract" "New Slave Intro">> - <<set $activeSlave.weekAcquired = $week, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main", $specialSlave = 1>> - <<run cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave)>> -<</link>> + <<link "Buy $his slave contract" "New Slave Intro">> + <<set $activeSlave.weekAcquired = $week, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main", $specialSlave = 1>> + <<run cashX(forceNeg(_slaveCost), "slaveTransfer", $activeSlave)>> + <</link>> +</p> diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw index fc72395e59ec7a6298090f9ad37d1a1737970e51..4a4c6cdee0082b89656e8ba3238745b0febcf910 100644 --- a/src/uncategorized/newSlaveIntro.tw +++ b/src/uncategorized/newSlaveIntro.tw @@ -89,10 +89,8 @@ <</if>> <<if $specialSlave == 1>> - <<set $i = $heroSlaves.findIndex(function(s) { return s.ID == $activeSlave.ID; })>> - <<if $i != -1>> - <<set $heroSlaves.deleteAt($i)>> - <</if>> + <<run $heroSlavesPuchased.push($heroSlaveID)>> + <<unset $heroSlaveID>> <<set $specialSlave = 0>> <</if>> diff --git a/src/uncategorized/specialSlave.tw b/src/uncategorized/specialSlave.tw index f85ea2eeb36cf577a8ca52d46c40730862d35c4c..9cb6971c02221c3ba5aafd8a8b18dd1d0b89f9db 100644 --- a/src/uncategorized/specialSlave.tw +++ b/src/uncategorized/specialSlave.tw @@ -2,77 +2,14 @@ <<set $nextButton = "Back", $nextLink = "Buy Slaves", $returnTo = "Buy Slaves", $showEncyclopedia = 1, $encyclopedia = "Direct Sales">> -<<if $heroSlaves.length == 0>> +<<set _heroSlaves = App.Utils.buildHeroArray()>> + +<<if _heroSlaves.length == 0>> Unfortunately, the catalog is empty. <<else>> - <<run slaveSortMinor($heroSlaves)>> - <<set $activeSlave = App.Utils.getHeroSlave($heroSlaves.random(), $baseHeroSlave)>> - <<set $activeSlave.weekAcquired = $week>> - <<if ndef $activeSlave.pubicHColor>> - <<set $activeSlave.pubicHColor = $activeSlave.hColor>> - <</if>> - <<if ndef $activeSlave.underArmHColor>> - <<set $activeSlave.underArmHColor = $activeSlave.hColor>> - <</if>> - - <<if $activeSlave.override_Race != 1>> - <<set $activeSlave.origRace = $activeSlave.race>> - <</if>> - - <<if $activeSlave.override_Eye_Color != 1>> - <<run resetEyeColor($activeSlave, "both")>> - <</if>> - <<if $activeSlave.override_H_Color != 1>> - <<set $activeSlave.hColor = getGeneticHairColor($activeSlave)>> - <</if>> - <<if $activeSlave.override_Arm_H_Color != 1>> - <<set $activeSlave.underArmHColor = getGeneticHairColor($activeSlave)>> - <</if>> - <<if $activeSlave.override_Pubic_H_Color != 1>> - <<set $activeSlave.pubicHColor = getGeneticHairColor($activeSlave)>> - <</if>> - <<if $activeSlave.override_Brow_H_Color != 1>> - <<set $activeSlave.eyebrowHColor = getGeneticHairColor($activeSlave)>> - <</if>> - <<if $activeSlave.override_Skin != 1>> - <<set $activeSlave.skin = getGeneticSkinColor($activeSlave)>> - <</if>> - - <<run SetBellySize($activeSlave)>> - <<if $familyTesting == 1>> - /* special slaves exceptions to keep siblings sensible */ - <<if $activeSlave.mother == -9999 && $activeSlave.father == -9998>> /* The twins — Camille & Kennerly */ - <<for _k = 0; _k < $slaves.length; _k++>> - <<if areSisters($slaves[_k], $activeSlave) > 0>> - <<set $activeSlave.actualAge = $slaves[_k].actualAge, $activeSlave.physicalAge = $activeSlave.actualAge, $activeSlave.visualAge = $activeSlave.actualAge, $activeSlave.ovaryAge = $activeSlave.actualAge, $activeSlave.birthWeek = $slaves[_k].birthWeek>> - <</if>> - <</for>> - <</if>> - <<if $activeSlave.mother == -9997 && $activeSlave.father == -9996>> /* The siblings — Elisa & Martin */ - <<for _k = 0; _k < $slaves.length; _k++>> - <<if areSisters($slaves[_k], $activeSlave) > 0>> - <<if $activeSlave.birthName == "Elisa">> - <<set $activeSlave.actualAge = $slaves[_k].actualAge-1, $activeSlave.physicalAge = $activeSlave.actualAge, $activeSlave.visualAge = $activeSlave.actualAge, $activeSlave.ovaryAge = $activeSlave.actualAge>> - <<elseif $activeSlave.birthName == "Martin">> - <<set $activeSlave.actualAge = $slaves[_k].actualAge+1, $activeSlave.physicalAge = $activeSlave.actualAge, $activeSlave.visualAge = $activeSlave.actualAge, $activeSlave.ovaryAge = $activeSlave.actualAge>> - <</if>> - <</if>> - <</for>> - <</if>> - <<if $activeSlave.mother == -9995 && $activeSlave.father == -9994>> /* The fruit siblings — Green & Purple Grape */ - <<for _k = 0; _k < $slaves.length; _k++>> - <<if areSisters($slaves[_k], $activeSlave) > 0>> - <<if $activeSlave.birthName == "Green Grape">> - <<set $activeSlave.actualAge = $slaves[_k].actualAge-5, $activeSlave.physicalAge = $activeSlave.actualAge, $activeSlave.visualAge = $activeSlave.actualAge, $activeSlave.ovaryAge = $activeSlave.actualAge>> - <<elseif $activeSlave.birthName == "Purple Grape">> - <<set $activeSlave.actualAge = $slaves[_k].actualAge+5, $activeSlave.physicalAge = $activeSlave.actualAge, $activeSlave.visualAge = $activeSlave.actualAge, $activeSlave.ovaryAge = $activeSlave.actualAge>> - <</if>> - <</if>> - <</for>> - <</if>> - <</if>> - <<run nationalityToAccent($activeSlave)>> + <<run slaveSortMinor(_heroSlaves)>> + <<set $activeSlave = App.Utils.getHeroSlave(_heroSlaves.random())>> <<set $specialSlavesPriceOverride = 1>> <<set _slaveCost = slaveCost($activeSlave)>> <<set _slaveCost = (10*Math.trunc((_slaveCost/10)*2))>>