diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt index c6a09e93e24f8f1d3435c9e4d346f88ffdddef13..3774e5c5b9c0878f68f27f5ca4e5bc4a52931b92 100644 --- a/devNotes/VersionChangeLog-Premod+LoliMod.txt +++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt @@ -2,8 +2,18 @@ 0.10.7.1-1.3.x +12/15/2018 + + 7 + -added dairy setting to induce lactation in non-cum slaves + -fixes + -code cleaning + 12/13/2018 + 6 + -added salvage code for saves affected by the bug fixed in v4 + 5 -fixes diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index 122b1f1083b51a261b1a746db959357206d18dda..848821e584a5e3a0d6393b87f4baabf948135954 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -320,8 +320,6 @@ window.isFertile = function(slave) { return null; } - WombInit(slave); - if (slave.womb.length > 0 && slave.geneticQuirks.superfetation < 2 && slave.ovaImplant < 1) { /* currently pregnant without superfetation */ return false; } else if (slave.womb.length > 0) { /* temp failure condition to prevent current double preg bug */ @@ -587,34 +585,6 @@ window.relationTargetWord = function(slave) { return slave.relation; }; -window.expandFacilityAssignments = function(facilityAssignments) { - var assignmentPairs = { - "serve in the club": "be the DJ", - "rest in the spa": "be the Attendant", - "be a nanny": "be the Matron", - "work as a nanny": "be the Matron", - "work in the brothel": "be the Madam", - "work in the dairy": "be the Milkmaid", - "work as a farmhand": "be the Farmer", - "work as a servant": "be the Stewardess", - "get treatment in the clinic": "be the Nurse", - "live with your Head Girl": "be your Head Girl", - "serve in the master suite": "be your Concubine", - "learn in the schoolroom": "be the Schoolteacher", - "be confined in the cellblock": "be the Wardeness", - "be a nanny": "be the Matron", - }; - - if (!facilityAssignments || !facilityAssignments.length) - return []; - var fullList = facilityAssignments.map(function(a) { - if (a in assignmentPairs) - return [a, assignmentPairs[a]]; - return a; - }); - return fullList.flatten(); -}; - window.milkAmount = function(slave) { var milk; var calcs; diff --git a/src/art/artJS.tw b/src/art/artJS.tw index 477bc075c646c69992238c4f61883b7b9a05ad9c..d29029f5363709a2823d37c23b9ff3ce3bc81e66 100644 --- a/src/art/artJS.tw +++ b/src/art/artJS.tw @@ -187,11 +187,11 @@ window.clothing2artSuffix = function (v) { }; window.skinColorCatcher = function (artSlave) { - var colorSlave = { - skinColor: "#e8b693;", - areolaColor: "#d76b93;", - labiaColor: "#d76b93;", - lipsColor: "#ff69b4;" + let colorSlave = { + skinColor: "#e8b693", + areolaColor: "#d76b93", + labiaColor: "#d76b93", + lipsColor: "#ff69b4" }; if (artSlave.skin == "camouflage patterned") { colorSlave.skinColor = "#78875a"; @@ -228,1420 +228,1504 @@ window.skinColorCatcher = function (artSlave) { colorSlave.areolaColor = "#E7DF7D"; colorSlave.labiaColor = "#F977A3"; colorSlave.lipsColor = "#e0d050"; - } else if (artSlave.race == "white") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#F4EAF0"; - colorSlave.areolaColor = "#FCCCDC"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#F4EAF0"; - colorSlave.areolaColor = "#FCCCDC"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#F5E1DF"; - colorSlave.areolaColor = "#EFBFCA"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#F5E1DF"; - colorSlave.areolaColor = "#EFBFCA"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#F5D5C9"; - colorSlave.areolaColor = "#E2B4B9"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#F5D5C9"; - colorSlave.areolaColor = "#E2B4B9"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#F4C9AA"; - colorSlave.areolaColor = "#F19795"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#F4C9AA"; - colorSlave.areolaColor = "#F19795"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#F4C9AA"; - colorSlave.areolaColor = "#F19795"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#E1B585"; - colorSlave.areolaColor = "#C39696"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#E1B585"; - colorSlave.areolaColor = "#C39696"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#D58E5F"; - colorSlave.areolaColor = "#B17777"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#D58E5F"; - colorSlave.areolaColor = "#B17777"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#D58E5F"; - colorSlave.areolaColor = "#B17777"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#A2805C"; - colorSlave.areolaColor = "#8E6454"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#825633"; - colorSlave.areolaColor = "#734B2F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#784F2F"; - colorSlave.areolaColor = "#583E2F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#784F2F"; - colorSlave.areolaColor = "#583E2F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#65422C"; - colorSlave.areolaColor = "#4A3A33"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#65422C"; - colorSlave.areolaColor = "#4A3A33"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#D58E5F"; - colorSlave.areolaColor = "#B17777"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } + } else { /* natural colors */ + switch (artSlave.race) { + case "white": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#F4EAF0"; + colorSlave.areolaColor = "#FCCCDC"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#F4EAF0"; + colorSlave.areolaColor = "#FCCCDC"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#F5E1DF"; + colorSlave.areolaColor = "#EFBFCA"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#F5E1DF"; + colorSlave.areolaColor = "#EFBFCA"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#F5D5C9"; + colorSlave.areolaColor = "#E2B4B9"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#F5D5C9"; + colorSlave.areolaColor = "#E2B4B9"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#F4C9AA"; + colorSlave.areolaColor = "#F19795"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#E1B585"; + colorSlave.areolaColor = "#C39696"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#E1B585"; + colorSlave.areolaColor = "#C39696"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#D58E5F"; + colorSlave.areolaColor = "#B17777"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#D58E5F"; + colorSlave.areolaColor = "#B17777"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#A2805C"; + colorSlave.areolaColor = "#8E6454"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#825633"; + colorSlave.areolaColor = "#734B2F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#784F2F"; + colorSlave.areolaColor = "#583E2F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#784F2F"; + colorSlave.areolaColor = "#583E2F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + colorSlave.skinColor = "#65422C"; + colorSlave.areolaColor = "#4A3A33"; + colorSlave.labiaColor = "#F977A3"; + break; + case "black": + case "ebony": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#D58E5F"; + colorSlave.areolaColor = "#B17777"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; - } else if (artSlave.race == "black") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#FEE4CA"; - colorSlave.areolaColor = "#E0B3A2"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#FEE4CA"; - colorSlave.areolaColor = "#E0B3A2"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#E3C5A7"; - colorSlave.areolaColor = "#EFBDC9"; - colorSlave.labiaColor = "#CC9B88"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#E3C5A7"; - colorSlave.areolaColor = "#CC9B88"; - colorSlave.labiaColor = "#CC9B88"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#DEB892"; - colorSlave.areolaColor = "#AB806F"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#DEB892"; - colorSlave.areolaColor = "#AB806F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#D59D73"; - colorSlave.areolaColor = "#8D6859"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#D59D73"; - colorSlave.areolaColor = "#8D6859"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#D59D73"; - colorSlave.areolaColor = "#8D6859"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#AC7C4A"; - colorSlave.areolaColor = "#7C594B"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#AC7C4A"; - colorSlave.areolaColor = "#7C594B"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#985C34"; - colorSlave.areolaColor = "#764B3A"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#985C34"; - colorSlave.areolaColor = "#764B3A"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#985C34"; - colorSlave.areolaColor = "#764B3A"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#745C42"; - colorSlave.areolaColor = "#63463B"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#65422C"; - colorSlave.areolaColor = "#4B3121"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#5A3C24"; - colorSlave.areolaColor = "#493326"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#5A3C24"; - colorSlave.areolaColor = "#493326"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#46362C"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#583D3D"; - colorSlave.areolaColor = "#3B3028"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#4A3A33"; - colorSlave.areolaColor = "#332B27"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#312926"; - colorSlave.areolaColor = "#181616"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#985C34"; - colorSlave.areolaColor = "#764B3A"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } + case "black": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#FEE4CA"; + colorSlave.areolaColor = "#E0B3A2"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#FEE4CA"; + colorSlave.areolaColor = "#E0B3A2"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#E3C5A7"; + colorSlave.areolaColor = "#EFBDC9"; + colorSlave.labiaColor = "#CC9B88"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#E3C5A7"; + colorSlave.areolaColor = "#CC9B88"; + colorSlave.labiaColor = "#CC9B88"; + break; + case "very fair": + colorSlave.skinColor = "#DEB892"; + colorSlave.areolaColor = "#AB806F"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#DEB892"; + colorSlave.areolaColor = "#AB806F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#D59D73"; + colorSlave.areolaColor = "#8D6859"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#AC7C4A"; + colorSlave.areolaColor = "#7C594B"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#AC7C4A"; + colorSlave.areolaColor = "#7C594B"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#985C34"; + colorSlave.areolaColor = "#764B3A"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#985C34"; + colorSlave.areolaColor = "#764B3A"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#745C42"; + colorSlave.areolaColor = "#63463B"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#65422C"; + colorSlave.areolaColor = "#4B3121"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#5A3C24"; + colorSlave.areolaColor = "#493326"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#5A3C24"; + colorSlave.areolaColor = "#493326"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#46362C"; + colorSlave.labiaColor = "#F977A3"; + break; + case "black": + colorSlave.skinColor = "#583D3D"; + colorSlave.areolaColor = "#3B3028"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#4A3A33"; + colorSlave.areolaColor = "#332B27"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#312926"; + colorSlave.areolaColor = "#181616"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#985C34"; + colorSlave.areolaColor = "#764B3A"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; - } else if (artSlave.race == "latina") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#FEDECE"; - colorSlave.areolaColor = "#E3BBAB"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#FEDECE"; - colorSlave.areolaColor = "#E3BBAB"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#E6C2B0"; - colorSlave.areolaColor = "#D1A695"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#E6C2B0"; - colorSlave.areolaColor = "#D1A695"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#E1B59F"; - colorSlave.areolaColor = "#B48D7E"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#E1B59F"; - colorSlave.areolaColor = "#B48D7E"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#DAA782"; - colorSlave.areolaColor = "#9E7666"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#DAA782"; - colorSlave.areolaColor = "#9E7666"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#DAA782"; - colorSlave.areolaColor = "#9E7666"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#B27554"; - colorSlave.areolaColor = "#92684C"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#B27554"; - colorSlave.areolaColor = "#92684C"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#8B644F"; - colorSlave.areolaColor = "#7B5749"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#775031"; - colorSlave.areolaColor = "#69452F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#774A31"; - colorSlave.areolaColor = "#614330"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#774A31"; - colorSlave.areolaColor = "#614330"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#74523E"; - colorSlave.areolaColor = "#573F30"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#6B4B4B"; - colorSlave.areolaColor = "#473426"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#634F45"; - colorSlave.areolaColor = "#4D3A2E"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#634F45"; - colorSlave.areolaColor = "#4D3A2E"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } + case "latina": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#FEDECE"; + colorSlave.areolaColor = "#E3BBAB"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#FEDECE"; + colorSlave.areolaColor = "#E3BBAB"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#E6C2B0"; + colorSlave.areolaColor = "#D1A695"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#E6C2B0"; + colorSlave.areolaColor = "#D1A695"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#E1B59F"; + colorSlave.areolaColor = "#B48D7E"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#E1B59F"; + colorSlave.areolaColor = "#B48D7E"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#DAA782"; + colorSlave.areolaColor = "#9E7666"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#B27554"; + colorSlave.areolaColor = "#92684C"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#B27554"; + colorSlave.areolaColor = "#92684C"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#B6784E"; + colorSlave.areolaColor = "#8F5A45"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#B6784E"; + colorSlave.areolaColor = "#8F5A45"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#8B644F"; + colorSlave.areolaColor = "#7B5749"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#775031"; + colorSlave.areolaColor = "#69452F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#774A31"; + colorSlave.areolaColor = "#614330"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#774A31"; + colorSlave.areolaColor = "#614330"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + colorSlave.skinColor = "#74523E"; + colorSlave.areolaColor = "#573F30"; + colorSlave.labiaColor = "#F977A3"; + break; + case "black": + colorSlave.skinColor = "#6B4B4B"; + colorSlave.areolaColor = "#473426"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#634F45"; + colorSlave.areolaColor = "#4D3A2E"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#634F45"; + colorSlave.areolaColor = "#4D3A2E"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#B6784E"; + colorSlave.areolaColor = "#8F5A45"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; - } else if (artSlave.race == "asian") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#FFF8EE"; - colorSlave.areolaColor = "#F7DBD0"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#FFF8EE"; - colorSlave.areolaColor = "#F7DBD0"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#F5E7DC"; - colorSlave.areolaColor = "#EABFB3"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#F5E7DC"; - colorSlave.areolaColor = "#EABFB3"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#F5D4B5"; - colorSlave.areolaColor = "#CB988B"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#F5D4B5"; - colorSlave.areolaColor = "#CB988B"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#F4D1A3"; - colorSlave.areolaColor = "#BA8E83"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#F4D1A3"; - colorSlave.areolaColor = "#BA8E83"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#F4D1A3"; - colorSlave.areolaColor = "#BA8E83"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#CFB48D"; - colorSlave.areolaColor = "#AC8074"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#CFB48D"; - colorSlave.areolaColor = "#AC8074"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#C38C4D"; - colorSlave.areolaColor = "#A67A6F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#C38C4D"; - colorSlave.areolaColor = "#A67A6F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#C38C4D"; - colorSlave.areolaColor = "#A67A6F"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#9A774A"; - colorSlave.areolaColor = "#855E4E"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#855834"; - colorSlave.areolaColor = "#734B2F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#83522B"; - colorSlave.areolaColor = "#68442A"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#83522B"; - colorSlave.areolaColor = "#68442A"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#724826"; - colorSlave.areolaColor = "#5C3D26"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#724826"; - colorSlave.areolaColor = "#5C3D26"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#C38C4D"; - colorSlave.areolaColor = "#A67A6F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } + case "asian": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#FFF8EE"; + colorSlave.areolaColor = "#F7DBD0"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#FFF8EE"; + colorSlave.areolaColor = "#F7DBD0"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#F5E7DC"; + colorSlave.areolaColor = "#EABFB3"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#F5E7DC"; + colorSlave.areolaColor = "#EABFB3"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#F5D4B5"; + colorSlave.areolaColor = "#CB988B"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#F5D4B5"; + colorSlave.areolaColor = "#CB988B"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#F4D1A3"; + colorSlave.areolaColor = "#BA8E83"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#CFB48D"; + colorSlave.areolaColor = "#AC8074"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#CFB48D"; + colorSlave.areolaColor = "#AC8074"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#C38C4D"; + colorSlave.areolaColor = "#A67A6F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#C38C4D"; + colorSlave.areolaColor = "#A67A6F"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#9A774A"; + colorSlave.areolaColor = "#855E4E"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#855834"; + colorSlave.areolaColor = "#734B2F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#83522B"; + colorSlave.areolaColor = "#68442A"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#83522B"; + colorSlave.areolaColor = "#68442A"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + case "black": + colorSlave.skinColor = "#724826"; + colorSlave.areolaColor = "#5C3D26"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#C38C4D"; + colorSlave.areolaColor = "#A67A6F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; - } else if (artSlave.race == "middle eastern") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#E8CFCF"; - colorSlave.areolaColor = "#DCADBC"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#E8CFCF"; - colorSlave.areolaColor = "#DCADBC"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#FBCCC6"; - colorSlave.areolaColor = "#E79E8B"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#FBCCC6"; - colorSlave.areolaColor = "#E79E8B"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#EAAB92"; - colorSlave.areolaColor = "#D27B64"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#EAAB92"; - colorSlave.areolaColor = "#D27B64"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#EDA571"; - colorSlave.areolaColor = "#B16854"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#EDA571"; - colorSlave.areolaColor = "#B16854"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#EDA571"; - colorSlave.areolaColor = "#B16854"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#CC8D53"; - colorSlave.areolaColor = "#A7624F"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#CC8D53"; - colorSlave.areolaColor = "#A7624F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#CA7136"; - colorSlave.areolaColor = "#9B5959"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#CA7136"; - colorSlave.areolaColor = "#9B5959"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#CA7136"; - colorSlave.areolaColor = "#9B5959"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#84684A"; - colorSlave.areolaColor = "#735143"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#684528"; - colorSlave.areolaColor = "#563826"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#6E4730"; - colorSlave.areolaColor = "#604534"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#6E4730"; - colorSlave.areolaColor = "#604534"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#604534"; - colorSlave.areolaColor = "#514039"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#604534 "; - colorSlave.areolaColor = "#514039"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#CA7136"; - colorSlave.areolaColor = "#9B5959"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } + case "middle eastern": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#E8CFCF"; + colorSlave.areolaColor = "#DCADBC"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#E8CFCF"; + colorSlave.areolaColor = "#DCADBC"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#FBCCC6"; + colorSlave.areolaColor = "#E79E8B"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#FBCCC6"; + colorSlave.areolaColor = "#E79E8B"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#EAAB92"; + colorSlave.areolaColor = "#D27B64"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#EAAB92"; + colorSlave.areolaColor = "#D27B64"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#EDA571"; + colorSlave.areolaColor = "#B16854"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#CC8D53"; + colorSlave.areolaColor = "#A7624F"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#CC8D53"; + colorSlave.areolaColor = "#A7624F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#CA7136"; + colorSlave.areolaColor = "#9B5959"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#CA7136"; + colorSlave.areolaColor = "#9B5959"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#84684A"; + colorSlave.areolaColor = "#735143"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#684528"; + colorSlave.areolaColor = "#563826"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#6E4730"; + colorSlave.areolaColor = "#604534"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#6E4730"; + colorSlave.areolaColor = "#604534"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + case "black": + colorSlave.skinColor = "#604534 "; + colorSlave.areolaColor = "#514039"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#CA7136"; + colorSlave.areolaColor = "#9B5959"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; - } else if (artSlave.race == "amerindian") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#FDE4BF"; - colorSlave.areolaColor = "#F0BEAA"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#FDE4BF"; - colorSlave.areolaColor = "#F0BEAA"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#F5E7DC"; - colorSlave.areolaColor = "#CDA499"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#F5E7DC"; - colorSlave.areolaColor = "#CDA499"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#F5D4B5"; - colorSlave.areolaColor = "#CB988B"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#F5D4B5"; - colorSlave.areolaColor = "#CB988B"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#F4D1A3"; - colorSlave.areolaColor = "#BA8E83"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#F4D1A3"; - colorSlave.areolaColor = "#BA8E83"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#F4D1A3"; - colorSlave.areolaColor = "#BA8E83"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#CFB48D"; - colorSlave.areolaColor = "#AC8074"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#CFB48D"; - colorSlave.areolaColor = "#AC8074"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#C38C4D"; - colorSlave.areolaColor = "#A67A6F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#C38C4D"; - colorSlave.areolaColor = "#A67A6F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#C38C4D"; - colorSlave.areolaColor = "#A67A6F"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#9A774A"; - colorSlave.areolaColor = "#855E4E"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#855834"; - colorSlave.areolaColor = "#734B2F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#83522B"; - colorSlave.areolaColor = "#68442A"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#83522B"; - colorSlave.areolaColor = "#68442A"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#724826"; - colorSlave.areolaColor = "#5C3D26"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#724826"; - colorSlave.areolaColor = "#5C3D26"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#C38C4D"; - colorSlave.areolaColor = "#A67A6F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } + case "amerindian": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#FDE4BF"; + colorSlave.areolaColor = "#F0BEAA"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#FDE4BF"; + colorSlave.areolaColor = "#F0BEAA"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#F5E7DC"; + colorSlave.areolaColor = "#CDA499"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#F5E7DC"; + colorSlave.areolaColor = "#CDA499"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#F5D4B5"; + colorSlave.areolaColor = "#CB988B"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#F5D4B5"; + colorSlave.areolaColor = "#CB988B"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#F4D1A3"; + colorSlave.areolaColor = "#BA8E83"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#CFB48D"; + colorSlave.areolaColor = "#AC8074"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#CFB48D"; + colorSlave.areolaColor = "#AC8074"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#C38C4D"; + colorSlave.areolaColor = "#A67A6F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#C38C4D"; + colorSlave.areolaColor = "#A67A6F"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#9A774A"; + colorSlave.areolaColor = "#855E4E"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#855834"; + colorSlave.areolaColor = "#734B2F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#83522B"; + colorSlave.areolaColor = "#68442A"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#83522B"; + colorSlave.areolaColor = "#68442A"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + case "black": + colorSlave.skinColor = "#724826"; + colorSlave.areolaColor = "#5C3D26"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#C38C4D"; + colorSlave.areolaColor = "#A67A6F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; - } else if (artSlave.race == "southern european") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#EBDBE4"; - colorSlave.areolaColor = "#FFE4E0"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#EBDBE4"; - colorSlave.areolaColor = "#FFE4E0"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#F0D0CC"; - colorSlave.areolaColor = "#EAACBA"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#F0D0CC"; - colorSlave.areolaColor = "#EAACBA"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#F1C6B5"; - colorSlave.areolaColor = "#DCA2A9"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#F1C6B5"; - colorSlave.areolaColor = "#DCA2A9"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#F2BC94"; - colorSlave.areolaColor = "#EE8280"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#F2BC94"; - colorSlave.areolaColor = "#EE8280"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#F2BC94"; - colorSlave.areolaColor = "#EE8280"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#DCA972"; - colorSlave.areolaColor = "#BF7577"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#DCA972"; - colorSlave.areolaColor = "#BF7577"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#D0814C"; - colorSlave.areolaColor = "#A96767"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#D0814C"; - colorSlave.areolaColor = "#A96767"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#D0814C"; - colorSlave.areolaColor = "#A96767"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#937453"; - colorSlave.areolaColor = "#7F5A4B"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#7F5431"; - colorSlave.areolaColor = "#734B2F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#784F2F"; - colorSlave.areolaColor = "#583E2F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#784F2F"; - colorSlave.areolaColor = "#583E2F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#65422C"; - colorSlave.areolaColor = "#4A3A33"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#65422C"; - colorSlave.areolaColor = "#4A3A33"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#D0814C"; - colorSlave.areolaColor = "#A96767"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } + case "southern european": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#EBDBE4"; + colorSlave.areolaColor = "#FFE4E0"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#EBDBE4"; + colorSlave.areolaColor = "#FFE4E0"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#F0D0CC"; + colorSlave.areolaColor = "#EAACBA"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#F0D0CC"; + colorSlave.areolaColor = "#EAACBA"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#F1C6B5"; + colorSlave.areolaColor = "#DCA2A9"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#F1C6B5"; + colorSlave.areolaColor = "#DCA2A9"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#F2BC94"; + colorSlave.areolaColor = "#EE8280"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#DCA972"; + colorSlave.areolaColor = "#BF7577"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#DCA972"; + colorSlave.areolaColor = "#BF7577"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#D0814C"; + colorSlave.areolaColor = "#A96767"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#D0814C"; + colorSlave.areolaColor = "#A96767"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#937453"; + colorSlave.areolaColor = "#7F5A4B"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#7F5431"; + colorSlave.areolaColor = "#734B2F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#784F2F"; + colorSlave.areolaColor = "#583E2F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#784F2F"; + colorSlave.areolaColor = "#583E2F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + case "black": + colorSlave.skinColor = "#65422C"; + colorSlave.areolaColor = "#4A3A33"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#D0814C"; + colorSlave.areolaColor = "#A96767"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; - } else if (artSlave.race == "semitic") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#E8CFCF"; - colorSlave.areolaColor = "#DCADBC"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#E8CFCF"; - colorSlave.areolaColor = "#DCADBC"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#FBCCC6"; - colorSlave.areolaColor = "#E79E8B"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#FBCCC6"; - colorSlave.areolaColor = "#E79E8B"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#EAAB92"; - colorSlave.areolaColor = "#D27B64"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#EAAB92"; - colorSlave.areolaColor = "#D27B64"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#EDA571"; - colorSlave.areolaColor = "#B16854"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#EDA571"; - colorSlave.areolaColor = "#B16854"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#EDA571"; - colorSlave.areolaColor = "#B16854"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#CC8D53"; - colorSlave.areolaColor = "#A7624F"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#CC8D53"; - colorSlave.areolaColor = "#A7624F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#CA7136"; - colorSlave.areolaColor = "#9B5959"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#CA7136"; - colorSlave.areolaColor = "#9B5959"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#CA7136"; - colorSlave.areolaColor = "#9B5959"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#84684A"; - colorSlave.areolaColor = "#735143"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#684528"; - colorSlave.areolaColor = "#563826"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#6E4730"; - colorSlave.areolaColor = "#604534"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#6E4730"; - colorSlave.areolaColor = "#604534"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#604534"; - colorSlave.areolaColor = "#514039"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#604534 "; - colorSlave.areolaColor = "#514039"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#CA7136"; - colorSlave.areolaColor = "#9B5959"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } + case "semitic": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#E8CFCF"; + colorSlave.areolaColor = "#DCADBC"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#E8CFCF"; + colorSlave.areolaColor = "#DCADBC"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#FBCCC6"; + colorSlave.areolaColor = "#E79E8B"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#FBCCC6"; + colorSlave.areolaColor = "#E79E8B"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#EAAB92"; + colorSlave.areolaColor = "#D27B64"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#EAAB92"; + colorSlave.areolaColor = "#D27B64"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#EDA571"; + colorSlave.areolaColor = "#B16854"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#CC8D53"; + colorSlave.areolaColor = "#A7624F"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#CC8D53"; + colorSlave.areolaColor = "#A7624F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#CA7136"; + colorSlave.areolaColor = "#9B5959"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#CA7136"; + colorSlave.areolaColor = "#9B5959"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#84684A"; + colorSlave.areolaColor = "#735143"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#684528"; + colorSlave.areolaColor = "#563826"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#6E4730"; + colorSlave.areolaColor = "#604534"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#6E4730"; + colorSlave.areolaColor = "#604534"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + case "black": + colorSlave.skinColor = "#604534 "; + colorSlave.areolaColor = "#514039"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#CA7136"; + colorSlave.areolaColor = "#9B5959"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; - } else if (artSlave.race == "malay") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#FBD1B2"; - colorSlave.areolaColor = "#F39E7D"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#FBD1B2"; - colorSlave.areolaColor = "#F39E7D"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#E8B892"; - colorSlave.areolaColor = "#E2856C"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#E8B892"; - colorSlave.areolaColor = "#E2856C"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#EA9870"; - colorSlave.areolaColor = "#BE6C56"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#EA9870"; - colorSlave.areolaColor = "#BE6C56"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#EA9760"; - colorSlave.areolaColor = "#AB6755"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#EA9760"; - colorSlave.areolaColor = "#AB6755"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#EA9760"; - colorSlave.areolaColor = "#AB6755"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#BA855E"; - colorSlave.areolaColor = "#976051"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#BA855E"; - colorSlave.areolaColor = "#976051"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#A46138"; - colorSlave.areolaColor = "#8F5E51"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#A46138"; - colorSlave.areolaColor = "#8F5E51"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#A46138"; - colorSlave.areolaColor = "#8F5E51"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#7C563C"; - colorSlave.areolaColor = "#70493A"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#804A28"; - colorSlave.areolaColor = "#5F3F27"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#6F4523"; - colorSlave.areolaColor = "#623C20"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#6F4523"; - colorSlave.areolaColor = "#623C20"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#6F3E27"; - colorSlave.areolaColor = "#553823"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#6F3E27"; - colorSlave.areolaColor = "#553823"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#A46138"; - colorSlave.areolaColor = "#8F5E51"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } + case "malay": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#FBD1B2"; + colorSlave.areolaColor = "#F39E7D"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#FBD1B2"; + colorSlave.areolaColor = "#F39E7D"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#E8B892"; + colorSlave.areolaColor = "#E2856C"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#E8B892"; + colorSlave.areolaColor = "#E2856C"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#EA9870"; + colorSlave.areolaColor = "#BE6C56"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#EA9870"; + colorSlave.areolaColor = "#BE6C56"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#EA9760"; + colorSlave.areolaColor = "#AB6755"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#BA855E"; + colorSlave.areolaColor = "#976051"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#BA855E"; + colorSlave.areolaColor = "#976051"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#A46138"; + colorSlave.areolaColor = "#8F5E51"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#A46138"; + colorSlave.areolaColor = "#8F5E51"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#7C563C"; + colorSlave.areolaColor = "#70493A"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#804A28"; + colorSlave.areolaColor = "#5F3F27"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#6F4523"; + colorSlave.areolaColor = "#623C20"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#6F4523"; + colorSlave.areolaColor = "#623C20"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + case "black": + colorSlave.skinColor = "#6F3E27"; + colorSlave.areolaColor = "#553823"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#A46138"; + colorSlave.areolaColor = "#8F5E51"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; - } else if (artSlave.race == "indo-aryan") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#F8D4BE"; - colorSlave.areolaColor = "#F8B6A4"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#F8D4BE"; - colorSlave.areolaColor = "#F8B6A4"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#EFCCAF"; - colorSlave.areolaColor = "#EA9B86"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#EFCCAF"; - colorSlave.areolaColor = "#EA9B86"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#FCC49A"; - colorSlave.areolaColor = "#D29577"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#FCC49A"; - colorSlave.areolaColor = "#D29577"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#E8B68E"; - colorSlave.areolaColor = "#D08661"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#E8B68E"; - colorSlave.areolaColor = "#D08661"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#E8B68E"; - colorSlave.areolaColor = "#D08661"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#C17848"; - colorSlave.areolaColor = "#C36E45"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#C17848"; - colorSlave.areolaColor = "#C36E45"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#C17848"; - colorSlave.areolaColor = "#A75A34"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#C17848"; - colorSlave.areolaColor = "#A75A34"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#C17848"; - colorSlave.areolaColor = "#A75A34"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#83684B"; - colorSlave.areolaColor = "#715043"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#8A593C"; - colorSlave.areolaColor = "#714931"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#845834"; - colorSlave.areolaColor = "#614635"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#845834"; - colorSlave.areolaColor = "#614635"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#7C5842"; - colorSlave.areolaColor = "#5F4538"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#7C5842"; - colorSlave.areolaColor = "#5F4538"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#6B5449"; - colorSlave.areolaColor = "#473C37"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#6B5449"; - colorSlave.areolaColor = "#473C37"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#C17848"; - colorSlave.areolaColor = "#A75A34"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } + case "indo-aryan": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#F8D4BE"; + colorSlave.areolaColor = "#F8B6A4"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#F8D4BE"; + colorSlave.areolaColor = "#F8B6A4"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#EFCCAF"; + colorSlave.areolaColor = "#EA9B86"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#EFCCAF"; + colorSlave.areolaColor = "#EA9B86"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#FCC49A"; + colorSlave.areolaColor = "#D29577"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#FCC49A"; + colorSlave.areolaColor = "#D29577"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#E8B68E"; + colorSlave.areolaColor = "#D08661"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#C17848"; + colorSlave.areolaColor = "#C36E45"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#C17848"; + colorSlave.areolaColor = "#C36E45"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#C17848"; + colorSlave.areolaColor = "#A75A34"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#C17848"; + colorSlave.areolaColor = "#A75A34"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#83684B"; + colorSlave.areolaColor = "#715043"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#8A593C"; + colorSlave.areolaColor = "#714931"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#845834"; + colorSlave.areolaColor = "#614635"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#845834"; + colorSlave.areolaColor = "#614635"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + case "black": + colorSlave.skinColor = "#7C5842"; + colorSlave.areolaColor = "#5F4538"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#6B5449"; + colorSlave.areolaColor = "#473C37"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#6B5449"; + colorSlave.areolaColor = "#473C37"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#C17848"; + colorSlave.areolaColor = "#A75A34"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; - } else if (artSlave.race == "pacific islander") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#FBD1B2"; - colorSlave.areolaColor = "#F39E7D"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#FBD1B2"; - colorSlave.areolaColor = "#F39E7D"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#E8B892"; - colorSlave.areolaColor = "#E2856C"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#E8B892"; - colorSlave.areolaColor = "#E2856C"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#EA9870"; - colorSlave.areolaColor = "#BE6C56"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#EA9870"; - colorSlave.areolaColor = "#BE6C56"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#EA9760"; - colorSlave.areolaColor = "#AB6755"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#EA9760"; - colorSlave.areolaColor = "#AB6755"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#EA9760"; - colorSlave.areolaColor = "#AB6755"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#BA855E"; - colorSlave.areolaColor = "#976051"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#BA855E"; - colorSlave.areolaColor = "#976051"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#A46138"; - colorSlave.areolaColor = "#8F5E51"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#A46138"; - colorSlave.areolaColor = "#8F5E51"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#A46138"; - colorSlave.areolaColor = "#8F5E51"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#7C563C"; - colorSlave.areolaColor = "#70493A"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#804A28"; - colorSlave.areolaColor = "#5F3F27"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#6F4523"; - colorSlave.areolaColor = "#623C20"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#6F4523"; - colorSlave.areolaColor = "#623C20"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#6F3E27"; - colorSlave.areolaColor = "#553823"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#6F3E27"; - colorSlave.areolaColor = "#553823"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#583E2F"; - colorSlave.areolaColor = "#3F3A38"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#A46138"; - colorSlave.areolaColor = "#8F5E51"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } + case "pacific islander": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#FBD1B2"; + colorSlave.areolaColor = "#F39E7D"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#FBD1B2"; + colorSlave.areolaColor = "#F39E7D"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#E8B892"; + colorSlave.areolaColor = "#E2856C"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#E8B892"; + colorSlave.areolaColor = "#E2856C"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#EA9870"; + colorSlave.areolaColor = "#BE6C56"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#EA9870"; + colorSlave.areolaColor = "#BE6C56"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#EA9760"; + colorSlave.areolaColor = "#AB6755"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#BA855E"; + colorSlave.areolaColor = "#976051"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#BA855E"; + colorSlave.areolaColor = "#976051"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#A46138"; + colorSlave.areolaColor = "#8F5E51"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#A46138"; + colorSlave.areolaColor = "#8F5E51"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#7C563C"; + colorSlave.areolaColor = "#70493A"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#804A28"; + colorSlave.areolaColor = "#5F3F27"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#6F4523"; + colorSlave.areolaColor = "#623C20"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#6F4523"; + colorSlave.areolaColor = "#623C20"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + case "black": + colorSlave.skinColor = "#6F3E27"; + colorSlave.areolaColor = "#553823"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#583E2F"; + colorSlave.areolaColor = "#3F3A38"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#A46138"; + colorSlave.areolaColor = "#8F5E51"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; - } else if (artSlave.race == "mixed race") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#FEE5CC"; - colorSlave.areolaColor = "#E3BBAB"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#FEE5CC"; - colorSlave.areolaColor = "#E3BBAB"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#E6C2B0"; - colorSlave.areolaColor = "#D1A695"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#E6C2B0"; - colorSlave.areolaColor = "#D1A695"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#E1B59F"; - colorSlave.areolaColor = "#B48D7E"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#E1B59F"; - colorSlave.areolaColor = "#B48D7E"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#DAA782"; - colorSlave.areolaColor = "#9E7666"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#DAA782"; - colorSlave.areolaColor = "#9E7666"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#DAA782"; - colorSlave.areolaColor = "#9E7666"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#B27554"; - colorSlave.areolaColor = "#92684C"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#B27554"; - colorSlave.areolaColor = "#92684C"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#8B644F"; - colorSlave.areolaColor = "#7B5749"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#775031"; - colorSlave.areolaColor = "#69452F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#774A31"; - colorSlave.areolaColor = "#5E4434"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#774A31"; - colorSlave.areolaColor = "#5E4434"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#74523E"; - colorSlave.areolaColor = "#574135"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#6B4B4B"; - colorSlave.areolaColor = "#413228"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#634F45"; - colorSlave.areolaColor = "#4E3C32"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#634F45"; - colorSlave.areolaColor = "#4E3C32"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } - } else if (artSlave.race != "white", "southern european", "black", "mixed race", "latina", "semitic", "middle eastern", "amerindian", "asian", "pacific islander", "malay", "indo-aryan") { - if (artSlave.skin == "pure white") { - colorSlave.skinColor = "#FEE5CC"; - colorSlave.areolaColor = "#E3BBAB"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "extremely pale") { - colorSlave.skinColor = "#FEE5CC"; - colorSlave.areolaColor = "#E3BBAB"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "pale") { - colorSlave.skinColor = "#E6C2B0"; - colorSlave.areolaColor = "#D1A695"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ffb9ca"; - } else if (artSlave.skin == "extremely fair") { - colorSlave.skinColor = "#E6C2B0"; - colorSlave.areolaColor = "#D1A695"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "very fair") { - colorSlave.skinColor = "#E1B59F"; - colorSlave.areolaColor = "#B48D7E"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "fair") { - colorSlave.skinColor = "#E1B59F"; - colorSlave.areolaColor = "#B48D7E"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "white") { - colorSlave.skinColor = "#DAA782"; - colorSlave.areolaColor = "#9E7666"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light") { - colorSlave.skinColor = "#DAA782"; - colorSlave.areolaColor = "#9E7666"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "lightened") { - colorSlave.skinColor = "#DAA782"; - colorSlave.areolaColor = "#9E7666"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#ce6876"; - } else if (artSlave.skin == "light olive") { - colorSlave.skinColor = "#B27554"; - colorSlave.areolaColor = "#92684C"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "olive") { - colorSlave.skinColor = "#B27554"; - colorSlave.areolaColor = "#92684C"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#c1a785"; - } else if (artSlave.skin == "natural") { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "tanned") { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; - } else if (artSlave.skin == "bronzed") { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark olive") { - colorSlave.skinColor = "#8B644F"; - colorSlave.areolaColor = "#7B5749"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "dark") { - colorSlave.skinColor = "#775031"; - colorSlave.areolaColor = "#69452F"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "light brown") { - colorSlave.skinColor = "#774A31"; - colorSlave.areolaColor = "#5E4434"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#5d2f1b"; - } else if (artSlave.skin == "brown") { - colorSlave.skinColor = "#774A31"; - colorSlave.areolaColor = "#5E4434"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#714536"; - } else if (artSlave.skin == "dark brown") { - colorSlave.skinColor = "#74523E"; - colorSlave.areolaColor = "#574135"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "black") { - colorSlave.skinColor = "#6B4B4B"; - colorSlave.areolaColor = "#413228"; - colorSlave.labiaColor = "#F977A3"; - } else if (artSlave.skin == "ebony") { - colorSlave.skinColor = "#634F45"; - colorSlave.areolaColor = "#4E3C32"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#403030"; - } else if (artSlave.skin == "pure black") { - colorSlave.skinColor = "#634F45"; - colorSlave.areolaColor = "#4E3C32"; - colorSlave.labiaColor = "#F977A3"; - } else { - colorSlave.skinColor = "#B6784E"; - colorSlave.areolaColor = "#8F5A45"; - colorSlave.labiaColor = "#F977A3"; - colorSlave.lipsColor = "#9e4c44"; + case "mixed race": + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#FEE5CC"; + colorSlave.areolaColor = "#E3BBAB"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#FEE5CC"; + colorSlave.areolaColor = "#E3BBAB"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#E6C2B0"; + colorSlave.areolaColor = "#D1A695"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#E6C2B0"; + colorSlave.areolaColor = "#D1A695"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#E1B59F"; + colorSlave.areolaColor = "#B48D7E"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#E1B59F"; + colorSlave.areolaColor = "#B48D7E"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#DAA782"; + colorSlave.areolaColor = "#9E7666"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#B27554"; + colorSlave.areolaColor = "#92684C"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#B27554"; + colorSlave.areolaColor = "#92684C"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#B6784E"; + colorSlave.areolaColor = "#8F5A45"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#B6784E"; + colorSlave.areolaColor = "#8F5A45"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#8B644F"; + colorSlave.areolaColor = "#7B5749"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#775031"; + colorSlave.areolaColor = "#69452F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#774A31"; + colorSlave.areolaColor = "#5E4434"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#774A31"; + colorSlave.areolaColor = "#5E4434"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + colorSlave.skinColor = "#74523E"; + colorSlave.areolaColor = "#574135"; + colorSlave.labiaColor = "#F977A3"; + break; + case "black": + colorSlave.skinColor = "#6B4B4B"; + colorSlave.areolaColor = "#413228"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#634F45"; + colorSlave.areolaColor = "#4E3C32"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#634F45"; + colorSlave.areolaColor = "#4E3C32"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#B6784E"; + colorSlave.areolaColor = "#8F5A45"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } + break; + + default: + switch (artSlave.skin) { + case "pure white": + colorSlave.skinColor = "#FEE5CC"; + colorSlave.areolaColor = "#E3BBAB"; + colorSlave.labiaColor = "#F977A3"; + break; + case "extremely pale": + colorSlave.skinColor = "#FEE5CC"; + colorSlave.areolaColor = "#E3BBAB"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "pale": + colorSlave.skinColor = "#E6C2B0"; + colorSlave.areolaColor = "#D1A695"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ffb9ca"; + break; + case "extremely fair": + colorSlave.skinColor = "#E6C2B0"; + colorSlave.areolaColor = "#D1A695"; + colorSlave.labiaColor = "#F977A3"; + break; + case "very fair": + colorSlave.skinColor = "#E1B59F"; + colorSlave.areolaColor = "#B48D7E"; + colorSlave.labiaColor = "#F977A3"; + break; + case "fair": + colorSlave.skinColor = "#E1B59F"; + colorSlave.areolaColor = "#B48D7E"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "white": + case "light": + case "lightened": + colorSlave.skinColor = "#DAA782"; + colorSlave.areolaColor = "#9E7666"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#ce6876"; + break; + case "light olive": + colorSlave.skinColor = "#B27554"; + colorSlave.areolaColor = "#92684C"; + colorSlave.labiaColor = "#F977A3"; + break; + case "olive": + colorSlave.skinColor = "#B27554"; + colorSlave.areolaColor = "#92684C"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#c1a785"; + break; + case "natural": + case "tanned": + colorSlave.skinColor = "#B6784E"; + colorSlave.areolaColor = "#8F5A45"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + break; + case "bronzed": + colorSlave.skinColor = "#B6784E"; + colorSlave.areolaColor = "#8F5A45"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark olive": + colorSlave.skinColor = "#8B644F"; + colorSlave.areolaColor = "#7B5749"; + colorSlave.labiaColor = "#F977A3"; + break; + case "dark": + colorSlave.skinColor = "#775031"; + colorSlave.areolaColor = "#69452F"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "light brown": + colorSlave.skinColor = "#774A31"; + colorSlave.areolaColor = "#5E4434"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#5d2f1b"; + break; + case "brown": + colorSlave.skinColor = "#774A31"; + colorSlave.areolaColor = "#5E4434"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#714536"; + break; + case "dark brown": + colorSlave.skinColor = "#74523E"; + colorSlave.areolaColor = "#574135"; + colorSlave.labiaColor = "#F977A3"; + break; + case "black": + colorSlave.skinColor = "#6B4B4B"; + colorSlave.areolaColor = "#413228"; + colorSlave.labiaColor = "#F977A3"; + break; + case "ebony": + colorSlave.skinColor = "#634F45"; + colorSlave.areolaColor = "#4E3C32"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#403030"; + break; + case "pure black": + colorSlave.skinColor = "#634F45"; + colorSlave.areolaColor = "#4E3C32"; + colorSlave.labiaColor = "#F977A3"; + break; + default: + colorSlave.skinColor = "#B6784E"; + colorSlave.areolaColor = "#8F5A45"; + colorSlave.labiaColor = "#F977A3"; + colorSlave.lipsColor = "#9e4c44"; + } } } return colorSlave; diff --git a/src/art/vector/Head.tw b/src/art/vector/Head.tw index 179f539cffdba4d499032eb369df587f60c03ce7..8590c0faa6ba0242f490d03cffaee949a8a00899 100644 --- a/src/art/vector/Head.tw +++ b/src/art/vector/Head.tw @@ -31,1421 +31,1052 @@ <<if _artSlave.fuckdoll == 0>> <<if $seeFaces > 0>> <<if _artSlave.clothes != "restrictive latex">> - <<if _artSlave.race == "white" || _artSlave.race == "southern european">> + <<switch _artSlave.race>> + <<case "white" "southern european">> <<if _artSlave.faceShape == "normal">> <<include Art_Vector_Eyes_TypeB>> <<include Art_Vector_Mouth_TypeA>> <<include Art_Vector_Nose_TypeA>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeA_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeA_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeA_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeA_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeA_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeA_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeA_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "masculine">> + <<elseif _artSlave.faceShape == "masculine">> <<include Art_Vector_Eyes_TypeD>> <<include Art_Vector_Mouth_TypeF>> <<include Art_Vector_Nose_TypeF>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeE_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeE_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeE_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeE_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeE_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeE_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeE_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "androgynous">> + <<elseif _artSlave.faceShape == "androgynous">> <<include Art_Vector_Eyes_TypeE>> <<include Art_Vector_Mouth_TypeE>> <<include Art_Vector_Nose_TypeE>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeF_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeF_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeF_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeF_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeF_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeF_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeF_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "cute">> + <<elseif _artSlave.faceShape == "cute">> <<include Art_Vector_Eyes_TypeB>> <<include Art_Vector_Mouth_TypeB>> <<include Art_Vector_Nose_TypeD>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeA_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeA_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeA_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeA_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeA_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeA_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeA_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "sensual">> + <<elseif _artSlave.faceShape == "sensual">> <<include Art_Vector_Eyes_TypeC>> <<include Art_Vector_Mouth_TypeC>> <<include Art_Vector_Nose_TypeC>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeC_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeC_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeC_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeC_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeC_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeC_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeC_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "exotic">> + <<elseif _artSlave.faceShape == "exotic">> <<include Art_Vector_Eyes_TypeA>> <<include Art_Vector_Mouth_TypeC>> <<include Art_Vector_Nose_TypeC>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeC_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeC_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeC_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeC_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeC_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeC_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeC_Bushy>> <</if>> <</if>> - <<elseif _artSlave.race == "asian" || _artSlave.race == "pacific islander" || _artSlave.race == "malay">> + <<case "asian" "pacific islander" "malay">> <<if _artSlave.faceShape == "normal">> <<include Art_Vector_Eyes_TypeA>> <<include Art_Vector_Mouth_TypeC>> <<include Art_Vector_Nose_TypeC>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeD_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeD_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeD_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeD_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeD_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeD_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeD_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "masculine">> + <<elseif _artSlave.faceShape == "masculine">> <<include Art_Vector_Eyes_TypeD>> <<include Art_Vector_Mouth_TypeD>> <<include Art_Vector_Nose_TypeB>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeC_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeC_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeC_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeC_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeC_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeC_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeC_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "androgynous">> + <<elseif _artSlave.faceShape == "androgynous">> <<include Art_Vector_Eyes_TypeE>> <<include Art_Vector_Mouth_TypeE>> <<include Art_Vector_Nose_TypeA>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeC_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeC_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeC_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeC_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeC_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeC_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeC_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "cute">> + <<elseif _artSlave.faceShape == "cute">> <<include Art_Vector_Eyes_TypeC>> <<include Art_Vector_Mouth_TypeC>> <<include Art_Vector_Nose_TypeC>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeF_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeF_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeF_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeF_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeF_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeF_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeF_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "sensual">> + <<elseif _artSlave.faceShape == "sensual">> <<include Art_Vector_Eyes_TypeA>> <<include Art_Vector_Mouth_TypeA>> <<include Art_Vector_Nose_TypeE>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeC_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeF_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeF_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeF_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeF_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeF_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeF_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "exotic">> + <<elseif _artSlave.faceShape == "exotic">> <<include Art_Vector_Eyes_TypeB>> <<include Art_Vector_Mouth_TypeC>> <<include Art_Vector_Nose_TypeF>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeA_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeA_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeA_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeA_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeA_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeA_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeA_Bushy>> <</if>> <</if>> - <<elseif _artSlave.race == "latina" || _artSlave.race == "amerindian">> + <<case "latina" "amerindian">> <<if _artSlave.faceShape == "normal">> <<include Art_Vector_Eyes_TypeB>> <<include Art_Vector_Mouth_TypeE>> <<include Art_Vector_Nose_TypeD>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeB_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeB_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeB_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeB_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeB_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeB_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeB_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "masculine">> + <<elseif _artSlave.faceShape == "masculine">> <<include Art_Vector_Eyes_TypeE>> <<include Art_Vector_Mouth_TypeD>> <<include Art_Vector_Nose_TypeF>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeC_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeC_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeC_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeC_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeC_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeC_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeC_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "androgynous">> + <<elseif _artSlave.faceShape == "androgynous">> <<include Art_Vector_Eyes_TypeA>> <<include Art_Vector_Mouth_TypeD>> <<include Art_Vector_Nose_TypeB>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeD_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeD_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeD_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeD_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeD_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeD_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeD_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "cute">> + <<elseif _artSlave.faceShape == "cute">> <<include Art_Vector_Eyes_TypeF>> <<include Art_Vector_Mouth_TypeB>> <<include Art_Vector_Nose_TypeB>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeF_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeF_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeF_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeF_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeF_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeF_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeF_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "sensual">> + <<elseif _artSlave.faceShape == "sensual">> <<include Art_Vector_Eyes_TypeB>> <<include Art_Vector_Mouth_TypeE>> <<include Art_Vector_Nose_TypeC>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeF_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeF_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeF_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeF_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeF_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeF_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeF_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "exotic">> + <<elseif _artSlave.faceShape == "exotic">> <<include Art_Vector_Eyes_TypeC>> <<include Art_Vector_Mouth_TypeA>> <<include Art_Vector_Nose_TypeC>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeE_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeE_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeE_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeE_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeE_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeE_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeE_Bushy>> <</if>> <</if>> - <<elseif _artSlave.race == "black">> + <<case "black">> <<if _artSlave.faceShape == "normal">> <<include Art_Vector_Eyes_TypeD>> <<include Art_Vector_Mouth_TypeB>> <<include Art_Vector_Nose_TypeF>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeF_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeF_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeF_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeF_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeF_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeF_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeF_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "masculine">> + <<elseif _artSlave.faceShape == "masculine">> <<include Art_Vector_Eyes_TypeA>> <<include Art_Vector_Mouth_TypeD>> <<include Art_Vector_Nose_TypeF>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeE_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeE_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeE_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeE_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeE_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeE_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeE_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "androgynous">> + <<elseif _artSlave.faceShape == "androgynous">> <<include Art_Vector_Eyes_TypeF>> <<include Art_Vector_Mouth_TypeE>> <<include Art_Vector_Nose_TypeB>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeE_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeE_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeE_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeE_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeE_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeE_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeE_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "cute">> + <<elseif _artSlave.faceShape == "cute">> <<include Art_Vector_Eyes_TypeC>> <<include Art_Vector_Mouth_TypeE>> <<include Art_Vector_Nose_TypeD>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeD_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeD_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeD_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeB_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeD_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeD_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeD_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "sensual">> + <<elseif _artSlave.faceShape == "sensual">> <<include Art_Vector_Eyes_TypeC>> <<include Art_Vector_Mouth_TypeF>> <<include Art_Vector_Nose_TypeA>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeC_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeC_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeC_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeC_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeC_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeC_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeC_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "exotic">> + <<elseif _artSlave.faceShape == "exotic">> <<include Art_Vector_Eyes_TypeE>> <<include Art_Vector_Mouth_TypeE>> <<include Art_Vector_Nose_TypeC>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeA_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeA_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeA_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeA_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeA_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeA_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeA_Bushy>> <</if>> <</if>> - <<elseif _artSlave.race == "middle eastern">> + <<case "middle eastern">> <<if _artSlave.faceShape == "normal">> <<include Art_Vector_Eyes_TypeB>> <<include Art_Vector_Mouth_TypeA>> <<include Art_Vector_Nose_TypeA>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeA_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeA_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeA_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeA_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeA_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeA_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeA_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "masculine">> + <<elseif _artSlave.faceShape == "masculine">> <<include Art_Vector_Eyes_TypeD>> <<include Art_Vector_Mouth_TypeF>> <<include Art_Vector_Nose_TypeA>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeB_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeB_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeB_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeB_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeB_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeB_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeB_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "androgynous">> + <<elseif _artSlave.faceShape == "androgynous">> <<include Art_Vector_Eyes_TypeF>> <<include Art_Vector_Mouth_TypeB>> <<include Art_Vector_Nose_TypeF>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeF_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeF_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeF_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeF_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeF_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeF_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeF_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "cute">> + <<elseif _artSlave.faceShape == "cute">> <<include Art_Vector_Eyes_TypeB>> <<include Art_Vector_Mouth_TypeB>> <<include Art_Vector_Nose_TypeC>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeA_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeA_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeA_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeA_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeA_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeA_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeA_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "sensual">> + <<elseif _artSlave.faceShape == "sensual">> <<include Art_Vector_Eyes_TypeA>> <<include Art_Vector_Mouth_TypeD>> <<include Art_Vector_Nose_TypeA>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeC_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeC_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeC_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeC_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeC_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeC_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeC_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "exotic">> + <<elseif _artSlave.faceShape == "exotic">> <<include Art_Vector_Eyes_TypeE>> <<include Art_Vector_Mouth_TypeE>> <<include Art_Vector_Nose_TypeE>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeE_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeE_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeE_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeE_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeE_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeE_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeE_Bushy>> <</if>> <</if>> - <</if>> - <<if _artSlave.race == "semitic">> + <<case "semitic">> <<if _artSlave.faceShape == "normal">> <<include Art_Vector_Eyes_TypeB>> <<include Art_Vector_Mouth_TypeA>> <<include Art_Vector_Nose_TypeA>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeA_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeA_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeA_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeA_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeA_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeA_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeA_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "masculine">> + <<elseif _artSlave.faceShape == "masculine">> <<include Art_Vector_Eyes_TypeD>> <<include Art_Vector_Mouth_TypeF>> <<include Art_Vector_Nose_TypeA>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeB_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeB_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeB_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeB_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeB_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeB_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeB_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "androgynous">> + <<elseif _artSlave.faceShape == "androgynous">> <<include Art_Vector_Eyes_TypeF>> <<include Art_Vector_Mouth_TypeB>> <<include Art_Vector_Nose_TypeF>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeF_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeF_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeF_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeF_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeF_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeF_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeF_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "cute">> + <<elseif _artSlave.faceShape == "cute">> <<include Art_Vector_Eyes_TypeB>> <<include Art_Vector_Mouth_TypeB>> <<include Art_Vector_Nose_TypeC>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeA_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeA_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeA_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeA_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeA_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeA_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeA_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "sensual">> + <<elseif _artSlave.faceShape == "sensual">> <<include Art_Vector_Eyes_TypeA>> <<include Art_Vector_Mouth_TypeD>> <<include Art_Vector_Nose_TypeA>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeC_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeC_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeC_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeC_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeC_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeC_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeC_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "exotic">> + <<elseif _artSlave.faceShape == "exotic">> <<include Art_Vector_Eyes_TypeE>> <<include Art_Vector_Mouth_TypeE>> <<include Art_Vector_Nose_TypeE>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeE_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeE_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeE_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeE_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeE_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeE_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeE_Bushy>> <</if>> <</if>> - <<elseif _artSlave.race == "indo-aryan">> + <<case "indo-aryan">> <<if _artSlave.faceShape == "normal">> <<include Art_Vector_Eyes_TypeE>> <<include Art_Vector_Mouth_TypeA>> <<include Art_Vector_Nose_TypeD>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeA_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeA_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeA_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeA_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeA_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeA_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeA_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "masculine">> + <<elseif _artSlave.faceShape == "masculine">> <<include Art_Vector_Eyes_TypeF>> <<include Art_Vector_Mouth_TypeD>> <<include Art_Vector_Nose_TypeE>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeC_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeC_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeC_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeC_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeC_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeC_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeC_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "androgynous">> + <<elseif _artSlave.faceShape == "androgynous">> <<include Art_Vector_Eyes_TypeC>> <<include Art_Vector_Mouth_TypeB>> <<include Art_Vector_Nose_TypeD>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeF_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeF_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeF_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeF_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeF_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeF_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeF_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "cute">> + <<elseif _artSlave.faceShape == "cute">> <<include Art_Vector_Eyes_TypeC>> <<include Art_Vector_Mouth_TypeD>> <<include Art_Vector_Nose_TypeA>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeD_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeD_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeD_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeD_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeD_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeD_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeD_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "sensual">> + <<elseif _artSlave.faceShape == "sensual">> <<include Art_Vector_Eyes_TypeA>> <<include Art_Vector_Mouth_TypeE>> <<include Art_Vector_Nose_TypeC>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeD_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeD_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeD_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeD_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeD_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeD_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeD_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "exotic">> + <<elseif _artSlave.faceShape == "exotic">> <<include Art_Vector_Eyes_TypeA>> <<include Art_Vector_Mouth_TypeC>> <<include Art_Vector_Nose_TypeC>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeC_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeC_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeC_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeC_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeC_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeC_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeC_Bushy>> <</if>> <</if>> - <<elseif _artSlave.race == "mixed race">> + <<case "mixed race">> <<if _artSlave.faceShape == "normal">> <<include Art_Vector_Eyes_TypeE>> <<include Art_Vector_Mouth_TypeA>> <<include Art_Vector_Nose_TypeD>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeA_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeA_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeA_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeA_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeA_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeA_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeA_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "masculine">> + <<elseif _artSlave.faceShape == "masculine">> <<include Art_Vector_Eyes_TypeF>> <<include Art_Vector_Mouth_TypeD>> <<include Art_Vector_Nose_TypeE>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeC_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeC_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeC_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeC_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeC_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeC_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeC_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "androgynous">> + <<elseif _artSlave.faceShape == "androgynous">> <<include Art_Vector_Eyes_TypeC>> <<include Art_Vector_Mouth_TypeB>> <<include Art_Vector_Nose_TypeD>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeF_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeF_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeF_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeF_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeF_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeF_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeF_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "cute">> + <<elseif _artSlave.faceShape == "cute">> <<include Art_Vector_Eyes_TypeC>> <<include Art_Vector_Mouth_TypeD>> <<include Art_Vector_Nose_TypeA>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeD_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeD_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeD_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeD_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeD_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeD_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeD_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "sensual">> + <<elseif _artSlave.faceShape == "sensual">> <<include Art_Vector_Eyes_TypeA>> <<include Art_Vector_Mouth_TypeE>> <<include Art_Vector_Nose_TypeC>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeD_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeD_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeD_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeD_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeD_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeD_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeD_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "exotic">> + <<elseif _artSlave.faceShape == "exotic">> <<include Art_Vector_Eyes_TypeA>> <<include Art_Vector_Mouth_TypeC>> <<include Art_Vector_Nose_TypeC>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeC_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeC_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeC_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeC_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeC_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeC_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeC_Bushy>> <</if>> <</if>> - <<elseif _artSlave.race != "white" && _artSlave.race != "southern european" && _artSlave.race != "black" && _artSlave.race != "mixed race" && _artSlave.race != "semitic" && _artSlave.race != "indo-aryan" && _artSlave.race != "latina" && _artSlave.race != "amerindian" && _artSlave.race != "middle eastern" && _artSlave.race != "asian" && _artSlave.race != "pacific islander" && _artSlave.race != "malay">> + <<default>> <<if _artSlave.faceShape == "normal">> <<include Art_Vector_Eyes_TypeB>> <<include Art_Vector_Mouth_TypeA>> <<include Art_Vector_Nose_TypeA>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeA_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeA_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeA_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeA_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeA_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeA_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeA_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "masculine">> + <<elseif _artSlave.faceShape == "masculine">> <<include Art_Vector_Eyes_TypeD>> <<include Art_Vector_Mouth_TypeF>> <<include Art_Vector_Nose_TypeF>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeE_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeE_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeE_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeE_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeE_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeE_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeE_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "androgynous">> + <<elseif _artSlave.faceShape == "androgynous">> <<include Art_Vector_Eyes_TypeE>> <<include Art_Vector_Mouth_TypeE>> <<include Art_Vector_Nose_TypeE>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeF_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeF_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeF_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeF_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeF_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeF_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeF_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "cute">> + <<elseif _artSlave.faceShape == "cute">> <<include Art_Vector_Eyes_TypeB>> <<include Art_Vector_Mouth_TypeB>> <<include Art_Vector_Nose_TypeD>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeA_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeA_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeA_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeA_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeA_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeA_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeA_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "sensual">> + <<elseif _artSlave.faceShape == "sensual">> <<include Art_Vector_Eyes_TypeC>> <<include Art_Vector_Mouth_TypeC>> <<include Art_Vector_Nose_TypeC>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeC_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeC_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeC_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeC_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeC_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeC_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeC_Bushy>> <</if>> - <</if>> - <<if _artSlave.faceShape == "exotic">> + <<elseif _artSlave.faceShape == "exotic">> <<include Art_Vector_Eyes_TypeA>> <<include Art_Vector_Mouth_TypeC>> <<include Art_Vector_Nose_TypeC>> <<if _artSlave.eyebrowFullness == "pencil-thin">> <<include Art_Vector_Eyebrow_TypeC_Pencilthin>> - <</if>> - <<if _artSlave.eyebrowFullness == "thin">> + <<elseif _artSlave.eyebrowFullness == "thin">> <<include Art_Vector_Eyebrow_TypeC_Thin>> - <</if>> - <<if _artSlave.eyebrowFullness == "threaded">> + <<elseif _artSlave.eyebrowFullness == "threaded">> <<include Art_Vector_Eyebrow_TypeC_Threaded>> - <</if>> - <<if _artSlave.eyebrowFullness == "natural">> + <<elseif _artSlave.eyebrowFullness == "natural">> <<include Art_Vector_Eyebrow_TypeC_Natural>> - <</if>> - <<if _artSlave.eyebrowFullness == "tapered">> + <<elseif _artSlave.eyebrowFullness == "tapered">> <<include Art_Vector_Eyebrow_TypeC_Tapered>> - <</if>> - <<if _artSlave.eyebrowFullness == "thick">> + <<elseif _artSlave.eyebrowFullness == "thick">> <<include Art_Vector_Eyebrow_TypeC_Thick>> - <</if>> - <<if _artSlave.eyebrowFullness == "bushy">> + <<elseif _artSlave.eyebrowFullness == "bushy">> <<include Art_Vector_Eyebrow_TypeC_Bushy>> <</if>> <</if>> - <</if>> + <</switch>> <</if>> <</if>> <</if>> diff --git a/src/art/vector/Set_Colour_Skin_JS.tw b/src/art/vector/Set_Colour_Skin_JS.tw index 72573c4b6bcfb809713f3df196ed6aac05e932c7..21caf1875f74ae3f1c3f5b3cf46620f8c78d592e 100644 --- a/src/art/vector/Set_Colour_Skin_JS.tw +++ b/src/art/vector/Set_Colour_Skin_JS.tw @@ -4,9 +4,9 @@ window.Art_Vector_Set_Colour_Skin = function(artSlave, outfitBaseColour) { /* create an aggregator object yielding all computed styles */ var s = { - areolaStyle: "#d76b93;", /* this is the default and can be customized later */ - labiaStyle: "#d76b93;", /* this is the default and can be customized later */ - bellybuttonStyle: "#d76b93;", + areolaStyle: "#d76b93", /* this is the default and can be customized later */ + labiaStyle: "#d76b93", /* this is the default and can be customized later */ + bellybuttonStyle: "#d76b93", /* todo: introduce fleshStyle */ /* these need to be declared so they can be set conditionally */ headSkinStyle: undefined, diff --git a/src/cheats/mod_EditNeighborArcologyCheatDatatypeCleanup.tw b/src/cheats/mod_EditNeighborArcologyCheatDatatypeCleanup.tw index a8ee82383dc604b4350942ecebf3113733712865..2b15dff2498a7ff7abf70ca16577a9b68c2cb238 100644 --- a/src/cheats/mod_EditNeighborArcologyCheatDatatypeCleanup.tw +++ b/src/cheats/mod_EditNeighborArcologyCheatDatatypeCleanup.tw @@ -114,7 +114,7 @@ <<set $arcologies[_i].CyberReputationTarget = Number($arcologies[_i].CyberReputationTarget) || 0>> <<set $arcologies[_i].influenceTarget = Number($arcologies[_i].influenceTarget) || 0>> <<set $arcologies[_i].influenceBonus = Number($arcologies[_i].influenceBonus) || 0>> - <<set $arcologies[_i].rival = Number($arcologies[_i].rival) | 0>> + <<set $arcologies[_i].rival = Number($arcologies[_i].rival) || 0>> <</for>> You have CHEATED your way to influencing the neighboring arcologies. They have been unscrupulously directed according to your CHEAT whims. diff --git a/src/js/storyJS.tw b/src/js/storyJS.tw index 6874497b3e2444f28a410fe3a1bfff24e774d162..8705bc8e03016d8379bbe1c029c7063504902e7c 100644 --- a/src/js/storyJS.tw +++ b/src/js/storyJS.tw @@ -318,8 +318,6 @@ window.isFertile = function(slave) { return null; } - WombInit(slave); - if (slave.womb.length > 0 && slave.geneticQuirks.superfetation < 2 && slave.ovaImplant < 1) { /* currently pregnant without superfetation */ return false; } else if (slave.womb.length > 0) { /* temp failure condition to prevent current double preg bug */ @@ -585,34 +583,6 @@ window.relationTargetWord = function(slave) { return slave.relation; }; -window.expandFacilityAssignments = function(facilityAssignments) { - var assignmentPairs = { - "serve in the club": "be the DJ", - "rest in the spa": "be the Attendant", - "be a nanny": "be the Matron", - "work as a nanny": "be the Matron", - "work in the brothel": "be the Madam", - "work in the dairy": "be the Milkmaid", - "work as a farmhand": "be the Farmer", - "work as a servant": "be the Stewardess", - "get treatment in the clinic": "be the Nurse", - "live with your Head Girl": "be your Head Girl", - "serve in the master suite": "be your Concubine", - "learn in the schoolroom": "be the Schoolteacher", - "be confined in the cellblock": "be the Wardeness", - "be a nanny": "be the Matron", - }; - - if (!facilityAssignments || !facilityAssignments.length) - return []; - var fullList = facilityAssignments.map(function(a) { - if (a in assignmentPairs) - return [a, assignmentPairs[a]]; - return a; - }); - return fullList.flatten(); -}; - window.milkAmount = function(slave) { var milk; var calcs; diff --git a/src/pregmod/pcSurgeryDegredation.tw b/src/pregmod/pcSurgeryDegredation.tw index 3d422531efff6a1374982d79c8e1442e7de3b2ba..2782e386996a27c5b790e6459e2b48da8c2f6350 100644 --- a/src/pregmod/pcSurgeryDegredation.tw +++ b/src/pregmod/pcSurgeryDegredation.tw @@ -19,22 +19,22 @@ <<PCAgeImplantAdjustmentUp>> <<case "breastReductionImplant">> - After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much lighter your breasts are. Pulling the covers off yourself, you observe your implant free boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your natural breasts. "We made sure to tighten them up a bit, get rid of that sag from not having the silicone pouch in them anymore." She begins groping your breasts, feeling for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.preg > 30 || $PC.births > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your breasts. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. + After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much lighter your breasts are. Pulling the covers off yourself, you observe your implant free boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your natural breasts. "We made sure to tighten them up a bit, get rid of that sag from not having the silicone pouch in them anymore." She begins groping your breasts, feeling for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your breasts. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. <<case "breastShrinkage">> - After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much lighter your breasts are. Pulling the covers off yourself, you observe your smaller <<if $PC.boobsBonus == 2>>G-cup<<elseif $PC.boobsBonus == 1>>F-cup<<elseif $PC.boobsBonus == -1>>D-cup<<elseif $PC.boobsBonus == -2>>C-cup<<elseif $PC.boobsBonus == -3>>B-cup<<else>>DD<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your shrunken breasts. "We made sure to tighten them up a bit, get rid of that sagginess from weight and the mass removed." She begins groping your breasts, feeling for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.preg > 30 || $PC.births > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your breasts. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. + After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much lighter your breasts are. Pulling the covers off yourself, you observe your smaller <<if $PC.boobsBonus == 2>>G-cup<<elseif $PC.boobsBonus == 1>>F-cup<<elseif $PC.boobsBonus == -1>>D-cup<<elseif $PC.boobsBonus == -2>>C-cup<<elseif $PC.boobsBonus == -3>>B-cup<<else>>DD<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your shrunken breasts. "We made sure to tighten them up a bit, get rid of that sagginess from weight and the mass removed." She begins groping your breasts, feeling for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your breasts. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. <<case "breastEnlargementImplant">> - After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000 || $PC.boobsBonus == 3>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much heavier your breasts are. Pulling the covers off yourself, you observe your new, round <<if $PC.boobsBonus == 2>>G-cup<<elseif $PC.boobsBonus == 1>>F-cup<<else>>H-cup<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your heaving breasts. "We did everything we could to keep them looking natural, <<if $PC.boobsBonus == 2>>but you can definitely tell<<elseif $PC.boobsBonus == 1>>and I say we did a pretty good job<<else>>but the implants were way too big for that<</if>>." She begins groping your breasts, feeling the implant within for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.preg > 30 || $PC.births > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your implant laden breasts. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. + After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000 || $PC.boobsBonus == 3>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much heavier your breasts are. Pulling the covers off yourself, you observe your new, round <<if $PC.boobsBonus == 2>>G-cup<<elseif $PC.boobsBonus == 1>>F-cup<<else>>H-cup<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your heaving breasts. "We did everything we could to keep them looking natural, <<if $PC.boobsBonus == 2>>but you can definitely tell<<elseif $PC.boobsBonus == 1>>and I say we did a pretty good job<<else>>but the implants were way too big for that<</if>>." She begins groping your breasts, feeling the implant within for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your implant laden breasts. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. <<case "breastEnlargement">> - After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000 || $PC.boobsBonus == 3>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much heavier your breasts are. Pulling the covers off yourself, you observe your new, soft <<if $PC.boobsBonus == 3>>H-cup<<elseif $PC.boobsBonus == 2>>G-cup<<elseif $PC.boobsBonus == 1>>F-cup<<elseif $PC.boobsBonus == -1>>D-cup<<elseif $PC.boobsBonus == -2>>C-cup<<elseif $PC.boobsBonus == -3>>B-cup<<else>>DD<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your heaving breasts. "We did everything we could to keep them perky, <<if $PC.boobsBonus == 3>>quite a feat given their size<<else>>not that hard given your natural perk<</if>>." She begins groping your breasts, feeling the added mass for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.preg > 30 || $PC.births > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your fat tits. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. + After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000 || $PC.boobsBonus == 3>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much heavier your breasts are. Pulling the covers off yourself, you observe your new, soft <<if $PC.boobsBonus == 3>>H-cup<<elseif $PC.boobsBonus == 2>>G-cup<<elseif $PC.boobsBonus == 1>>F-cup<<elseif $PC.boobsBonus == -1>>D-cup<<elseif $PC.boobsBonus == -2>>C-cup<<elseif $PC.boobsBonus == -3>>B-cup<<else>>DD<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your heaving breasts. "We did everything we could to keep them perky, <<if $PC.boobsBonus == 3>>quite a feat given their size<<else>>not that hard given your natural perk<</if>>." She begins groping your breasts, feeling the added mass for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your fat tits. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. <<case "flatChest">> - After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice the absence of the usual weight on your chest. Pulling the covers off yourself, you observe your flat chest in the mirror-covered wall across from your bed. "So do you like it?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your chest. "I honestly couldn't live without my pair." She begins groping your chest, feeling for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.preg > 30 || $PC.births > 0>>She lets out a surprised squeak when a gush of milk escapes your tits and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts still work, but it's still strange coming from such a flat chest."<</if>> You can't help but moan under your building arousal as she massages and teases your nipples. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. + After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice the absence of the usual weight on your chest. Pulling the covers off yourself, you observe your flat chest in the mirror-covered wall across from your bed. "So do you like it?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your chest. "I honestly couldn't live without my pair." She begins groping your chest, feeling for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your tits and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts still work, but it's still strange coming from such a flat chest."<</if>> You can't help but moan under your building arousal as she massages and teases your nipples. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. <<case "breasts">> - After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000 || $PC.boobsBonus == 3>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice a new weight on your chest. Pulling the covers off yourself, you observe your new, soft C-cup boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your heaving breasts. "With these, you should be able to compete with any girls around you." She begins groping your breasts, feeling the added mass for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.preg > 30 || $PC.births > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your new tits. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. + After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000 || $PC.boobsBonus == 3>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice a new weight on your chest. Pulling the covers off yourself, you observe your new, soft C-cup boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your heaving breasts. "With these, you should be able to compete with any girls around you." She begins groping your breasts, feeling the added mass for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your new tits. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. <<case "buttReductionImplant">> After a few hours, you awaken in the recovery wing, face down in a bed made to accommodate as person with your body type, with a sore ass. You push yourself up and look at the mass under the cover behind you that is your rear, taking note of how much smaller it is now than when you arrived. "So do you like it?", asks the surgeon's assistant, seating herself beside you and bringing her hands to your butt. "Size isn't everything in an ass, shape is important too." She begins groping your bottom, feeling around for any oddities. "I know you're still a little sore, but bear with it. There, everything feels good, now rest up and you'll be set! Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Groggy, you lie back down to sleep off the rest of the anesthesia before returning to your arcology. diff --git a/src/pregmod/widgets/deathWidgets.tw b/src/pregmod/widgets/deathWidgets.tw index 2e3bd92687a8ac02ed2ce5234888f11bd1850b3d..2a647cab77ae7b27e53513f6d35db85629d369d0 100644 --- a/src/pregmod/widgets/deathWidgets.tw +++ b/src/pregmod/widgets/deathWidgets.tw @@ -8,7 +8,7 @@ As $args[0].slaveName is going about $his business with $his overfilled $args[0] <<for _dw = 0; _dw < $slaves.length; _dw++>> <<if ($slaves[_dw].trust <= 50)>> <<if ($slaves[_dw].inflation >= 0)>> - <<set $slaves[_dw].trust -= ((($slaves[_dw].inflation)^3)*5)>> + <<set $slaves[_dw].trust -= (Math.pow($slaves[_dw].inflation,3)*5)>> <<else>> <<set $slaves[_dw].trust -= 10>> <</if>> diff --git a/src/uncategorized/dairy.tw b/src/uncategorized/dairy.tw index 87b95f8fe45ae369c4df428e195d8ac40074647d..1ca97e42ca96b1005dbc82e82318c60a91c5e359 100644 --- a/src/uncategorized/dairy.tw +++ b/src/uncategorized/dairy.tw @@ -453,13 +453,16 @@ $dairyNameCaps <<if $dairySlimMaintain == 0>> <<if $dairyImplantsSetting == 1>> All cows will undergo lactation implant surgery to increase their milk output. - [[Restrict lactation surgery in cum-cows|Dairy][$dairyImplantsSetting = 0]] | [[Restrict maximization surgery on cattle|Dairy][$dairyImplantsSetting = 2]] + [[Restrict lactation surgery on cum-cows|Dairy][$dairyImplantsSetting = 0]] | [[Restrict maximization surgery on cattle|Dairy][$dairyImplantsSetting = 2]] | [[Encourage natural lacation in cattle|Dairy][$dairyImplantsSetting = 3]] <<elseif $dairyImplantsSetting == 2>> Cows will not undergo surgical procedures to maximize production. - [[Maximize production in all cattle|Dairy][$dairyImplantsSetting = 1]] | [[Maximize production in only milkable cows|Dairy][$dairyImplantsSetting = 0]] + [[Maximize production in all cattle|Dairy][$dairyImplantsSetting = 1]] | [[Maximize production in only milkable cows|Dairy][$dairyImplantsSetting = 0]] | [[Encourage natural lacation in cattle|Dairy][$dairyImplantsSetting = 3]] + <<elseif $dairyImplantsSetting == 3>> + Non-lactating cows incapable of producing cum will undergo manual stimulation to promote natural production. + [[Maximize production in all cattle|Dairy][$dairyImplantsSetting = 1]] | [[Maximize production in only milkable cows|Dairy][$dairyImplantsSetting = 0]] | [[Restrict maximization surgery on cattle|Dairy][$dairyImplantsSetting = 2]] <<else>> Naturally lactating cows, cows with non-lactating breasts, and cows incapable of producing cum will undergo lactation implant surgery to increase their milk output. - [[Maximize lactation in all cattle|Dairy][$dairyImplantsSetting = 1]] | [[Restrict maximization surgery on cattle|Dairy][$dairyImplantsSetting = 2]] + [[Maximize lactation in all cattle|Dairy][$dairyImplantsSetting = 1]] | [[Restrict maximization surgery on cattle|Dairy][$dairyImplantsSetting = 2]] | [[Encourage natural lacation in cattle|Dairy][$dairyImplantsSetting = 3]] <</if>> <<else>> Current settings do not implant lactation implants into cows. diff --git a/src/uncategorized/dairyReport.tw b/src/uncategorized/dairyReport.tw index 57fbdf67953116536afa32dca9df22657b50e597..706c14cef6d17023f3de8c3ac251318eba317f7a 100644 --- a/src/uncategorized/dairyReport.tw +++ b/src/uncategorized/dairyReport.tw @@ -459,8 +459,15 @@ <<set $slaves[$i].vasectomy = 0, $slaves[$i].health -= 10, $cash -= $surgeryCost>> <</if>> <<if ($dairySlimMaintain == 0)>> - <<if ($slaves[$i].lactation < 2) && ($slaves[$i].boobs > 300 || $slaves[$i].dick == 0 || $slaves[$i].lactation == 1 || $dairyImplantsSetting == 1) && $dairyImplantsSetting != 2>> - <<set $slaves[$i].lactation = 2, $slaves[$i].health -= 10, $cash -= $surgeryCost>> + <<if $dairyImplantsSetting <= 1>> + <<if ($slaves[$i].lactation < 2) && ($slaves[$i].boobs > 300 || $slaves[$i].balls == 0 || $slaves[$i].lactation == 1 || $dairyImplantsSetting == 1)>> + <<set $slaves[$i].lactation = 2, $slaves[$i].lactationDuration = 2, $slaves[$i].health -= 10, $cash -= $surgeryCost>> + <</if>> + <<elseif $dairyImplantsSetting == 3>> + <<if ($slaves[$i].lactation < 1) && ($slaves[$i].boobs > 300 || $slaves[$i].balls == 0)>> + <<set $slaves[$i].induceLactation += 9>> + <<run induceLactation($slaves[$i])>> + <</if>> <</if>> <</if>> <<if ($dairyFeedersUpgrade == 1) && ($dairyFeedersSetting > 0)>> @@ -1048,9 +1055,9 @@ $dairyNameCaps produced <<print _milkWeek+_outputMilk>> liters of milk<<if _cumW <<if (_profits > 0)>> The sale of these products makes a profit of @@.yellowgreen;<<print cashFormat(_profits)>>@@. <<elseif (_profits < 0)>> - Due to one-off costs of hormonal implants to encourage fluid production, your dairy made a loss of @@.red;<<print cashFormat(_profits)>>@@. + Due to <<if $dairyImplantsSetting != 3>>one-off costs of hormonal implants to encourage fluid production<<else>>the need to induce lactation in some cows<</if>>, your dairy made a loss of @@.red;<<print cashFormat(_profits)>>@@. <<else>> - Due to one-off costs of hormonal implants to encourage fluid production paired with existing output, your dairy broke even this week. + Due to <<if $dairyImplantsSetting != 3>>one-off costs of hormonal implants to encourage fluid production<<else>>the need to induce lactation in some cows<</if>> paired with existing output, your dairy broke even this week. <</if>> <<if ($arcologies[0].FSPastoralistLaw == 1)>> diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw index 2261eb02aba0da468dea263f7f727d7a75dbfae4..cd8fbc42cc421b42e0af561ad85d87a550237347 100644 --- a/src/uncategorized/saLongTermEffects.tw +++ b/src/uncategorized/saLongTermEffects.tw @@ -1198,6 +1198,12 @@ <<elseif ($slaves[$i].assignment == "be the Stewardess")>> $His paraphilia is satisfied by $his work as the Stewardess. <<set _para = 1>> + <<elseif ($slaves[$i].assignment == "be the Schoolteacher")>> + $His paraphilia is satisfied by $his work as the Schoolteacher. + <<set _para = 1>> + <<elseif canWalk($slaves[$i]) && $slaves[$i].releaseRules == "permissive" && $universalRulesConsent == 0>> + $His paraphilia makes pinning down and raping other slaves very satisfying. + <<set _para = 1>> <<else>> $He gets few chances to indulge $his need to hold others down as $he fucks them, leaving $him @@.mediumorchid;depressed and anxious.@@ <<set _para = -1>> @@ -1226,6 +1232,9 @@ <<elseif ($slaves[$i].assignment == "be the Wardeness")>> $His paraphilia is satisfied by $his work as your Wardeness. <<set _para = 1>> + <<elseif canWalk($slaves[$i]) && $slaves[$i].releaseRules == "permissive" && $universalRulesConsent == 0>> + $His paraphilia makes pinning down and brutally raping other slaves very satisfying. + <<set _para = 1>> <<else>> $He gets few chances to indulge $his need to subject others to sexual anguish, leaving $him @@.mediumorchid;depressed and anxious.@@ <<set _para = -1>> diff --git a/src/uncategorized/slaveSummary.tw b/src/uncategorized/slaveSummary.tw index 78e8a486f761bc7b66089f07ab8cfb21da2ddc57..bd5cb8e9642d8f20ba125caa10a3e3cde006b3b1 100644 --- a/src/uncategorized/slaveSummary.tw +++ b/src/uncategorized/slaveSummary.tw @@ -65,7 +65,7 @@ ($Flag == 0 && s.assignment != "be confined in the cellblock") || ($Flag == 1 && s.assignment == "be confined in the cellblock") || ($Flag != 0 && $Flag != 1 && s.ID == $Wardeness.ID))), - "Wardeness Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && canWalk(s) & canSee(s)), + "Wardeness Select": s => (s.assignmentVisible == 1 && s.fuckdoll == 0 && s.devotion > 50 && canWalk(s) && canSee(s)), "Arcade": s => (s.assignmentVisible == 1 && ($arcade >= $arcadeSlaves || $arcadeUpgradeFuckdolls == 1) && ( ($Flag == 0 && s.assignment != "be confined in the arcade") || ($Flag != 0 && s.assignment == "be confined in the arcade"))), @@ -412,7 +412,7 @@ <br>//_Slave.slaveName's womb cannot accommodate current machine settings// <<continue>> <<else>> - <<if (_Slave.lactation > 0 || (($dairySlimMaintainUpgrade == 0 || $dairySlimMaintain == 0) && (_Slave.boobs > 300 || _Slave.dick == 0 || $dairyImplantsSetting == 1) && $dairyImplantsSetting != 2)) || (_Slave.balls > 0)>> + <<if (_Slave.lactation > 0) || (_Slave.balls > 0) || (($dairySlimMaintainUpgrade == 0 || $dairySlimMaintain == 0) && (_Slave.boobs > 300 || _Slave.balls == 0 || $dairyImplantsSetting == 1) && $dairyImplantsSetting != 2)>> <<if (_Slave.devotion > 20) || ((_Slave.devotion >= -50) && (_Slave.trust < -20)) || (_Slave.trust < -50) || (_Slave.amp == 1) || ($dairyRestraintsUpgrade == 1)>> <<if ($dairyStimulatorsSetting < 2) || (_Slave.anus > 2) || ($dairyPrepUpgrade == 1)>> <<if ($dairyPregSetting < 2) || (_Slave.vagina > 2) || (_Slave.ovaries == 0) || ($dairyPrepUpgrade == 1)>> @@ -430,8 +430,8 @@ <br>//_Slave.slaveName must be obedient in order to be milked here// <<continue>> <</if>> - <<elseif (($dairySlimMaintainUpgrade == 1 && $dairySlimMaintain == 1) || ($dairyImplantsSetting == 2) || (_Slave.boobs <= 300 && _Slave.dick > 0 && $dairyImplantsSetting == 0))>> - <br>//_Slave.slaveName is not lactating<<if $seeDicks > 0>> or producing semen<</if>>, and <<print $dairyName>>'s current settings forbid the automatic implantation of lactation inducing drugs, so she cannot be a cow// + <<elseif (($dairySlimMaintainUpgrade == 1 && $dairySlimMaintain == 1) || ($dairyImplantsSetting == 2) || (_Slave.boobs <= 300 && _Slave.balls > 0 && ($dairyImplantsSetting == 0 || $dairyImplantsSetting == 3)))>> + <br>//_Slave.slaveName is not lactating<<if $seeDicks > 0>> or producing semen<</if>>, and <<print $dairyName>>'s current settings forbid the automatic implantation of lactation inducing drugs or manual stimulation to induce it, so she cannot be a cow// <<continue>> <<else>> <br>//_Slave.slaveName is not lactating<<if $seeDicks > 0>> or producing semen<</if>> and cannot be a cow// diff --git a/src/uncategorized/tfsFarmUpgrade.tw b/src/uncategorized/tfsFarmUpgrade.tw index cecce182da66c6b2f642262c87da085cc2b5d87a..55090c0f7ba7304ab34c03230aa5995be03b1f96 100644 --- a/src/uncategorized/tfsFarmUpgrade.tw +++ b/src/uncategorized/tfsFarmUpgrade.tw @@ -58,7 +58,7 @@ whether we will use contraception after we are transformed." She shudders sudden /* <br><<link "Decline, but grant them something more fitting">> <<replace "#result">> - You signify your assent, telling the Sister that the organ farm will accept seed tissue from any of them for the purpose of fabricating testicular ovaries, which shou. To your mild surprise, she responds with cutely inelegant crying. You add that you think the world needs more Futanari Sisters, especially ones as cute and sexy as you're confident her many daughters will be. At that, she breaks down completely, one of her hands going to rub her balls gently. It takes her a long time to manage to thank to properly, and she hurries to end the call before she can embarrass herself further.<<if $arcologies[0].FSRestartDecoration == 100 && $eugenicsFullControl != 1>> The Societal Elite are @@.red;outraged@@ that you would not only allow such a breach of eugenics to occur, but encourage it.<</if>> + You decline her offer and propose a new one, letting the Sister know that the organ farm will accept seed tissue from any of them for the purpose of fabricating testicular ovaries, which should satisfy their desires, if in an unorthodox way. To your mild surprise, she responds with cutely inelegant crying. You add that you think the world needs more Futanari Sisters, especially ones as cute and sexy as you're confident her many daughters will be. At that, she breaks down completely, one of her hands going to rub her balls gently. It takes her a long time to manage to thank to properly, and she hurries to end the call before she can embarrass herself further.<<if $arcologies[0].FSRestartDecoration == 100 && $eugenicsFullControl != 1>> The Societal Elite are @@.red;outraged@@ that you would not only allow such a breach of eugenics to occur, but encourage it.<</if>> <<set $TFS.farmUpgrade = 4>> <<if $arcologies[0].FSRestart != "unset" && $eugenicsFullControl != 1>> <<set $failedElite += 100>> diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw index a5adfbdec69c09ea428a1ec2a0d9c5ac772182f7..b132ad24b429789cd9dbadfe8fe7d3cda41794a6 100644 --- a/src/utility/slaveCreationWidgets.tw +++ b/src/utility/slaveCreationWidgets.tw @@ -3418,6 +3418,7 @@ <<set $activeSlave.health = random(20,30)>> <<set $activeSlave.preg = random(10,40)>> <<set $activeSlave.pregType = random(1,5)>> + <<set $activeSlave.pregKnown = 1>> <<run SetBellySize($activeSlave)>> <<set $activeSlave.bellySag = 2>> <<set $activeSlave.bellySagPreg = 2>>