From d6b10f4c515a4e7e01ceff3d3447a997d78bea0d Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Sun, 27 Sep 2020 17:55:05 -0400 Subject: [PATCH] follow style --- src/endWeek/saLongTermPhysicalEffects.js | 44 ++++++++++++------------ src/gui/css/mainStyleSheet.css | 2 +- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/src/endWeek/saLongTermPhysicalEffects.js b/src/endWeek/saLongTermPhysicalEffects.js index f296e3a6e84..b184d296b77 100644 --- a/src/endWeek/saLongTermPhysicalEffects.js +++ b/src/endWeek/saLongTermPhysicalEffects.js @@ -703,7 +703,7 @@ App.SlaveAssignment.longTermPhysicalEffects = (function() { if (slave.visualAge > 8 && slave.NCSyouthening >= (11 - youtheningLevel)) { // NCS: youthening fires! if (V.seeAge === 1) { - r.push(`${He} has been living under the effects of ${his} <span class="NCS">NCS</span> for a while and the accumulated effects make <span class="change positive">${him} look younger again.</span>`); + r.push(`${He} has been living under the effects of ${his} <span class="ncs">NCS</span> for a while and the accumulated effects make <span class="change positive">${him} look younger again.</span>`); } slave.visualAge--; countNCS++; @@ -730,7 +730,7 @@ App.SlaveAssignment.longTermPhysicalEffects = (function() { } else { shrinkage = 1; } - r.push(`${His} <span class="NCS">NCS</span> is actively <span class="NCS">reducing ${his} stature, leaving ${him} shorter.</span>`); + r.push(`${His} <span class="ncs">NCS</span> is actively <span class="ncs">reducing ${his} stature, leaving ${him} shorter.</span>`); slave.height -= shrinkage; countNCS++; } @@ -745,7 +745,7 @@ App.SlaveAssignment.longTermPhysicalEffects = (function() { */ let nipplesString; if ((boobSize >= 5000) && (random(1, 100) < 90) && gigantomastiaMod !== 3) { - r.push(`${His} <span class="NCS">NCS</span> has <span class="change negative">reduced the size of ${his} bouncing breasts.</span>`); + r.push(`${His} <span class="ncs">NCS</span> has <span class="change negative">reduced the size of ${his} bouncing breasts.</span>`); slave.boobs -= Math.round(slave.boobs * .11); countNCS++; } else if ((boobSize <= 5000) && (!["cute", "fuckable", "tiny"].includes(slave.nipples)) && (random(1, 100) < 30)) { @@ -756,7 +756,7 @@ App.SlaveAssignment.longTermPhysicalEffects = (function() { } else { nipplesString = either("cute", "tiny"); } - r.push(`${His} <span class="NCS">NCS</span> has <span class="change positive">changed ${his} nipples to ${nipplesString}.</span>`); + r.push(`${His} <span class="ncs">NCS</span> has <span class="change positive">changed ${his} nipples to ${nipplesString}.</span>`); slave.nipples = nipplesString; if (slave.areolae > 1) { r.push(`${His} areolae also shrink down to a more normal`); @@ -779,7 +779,7 @@ App.SlaveAssignment.longTermPhysicalEffects = (function() { ** r.push(`level, though the chances get much more likely for the widest sizes.`); */ if (((slave.hips - Math.abs(slave.hipsImplant)) > -2) && (random(1, 100) < ((slave.hips + 3) * 18))) { - r.push(`${His} <span class="NCS">NCS</span> gets busy <span class="change negative"> reducing the size of ${his}`); + r.push(`${His} <span class="ncs">NCS</span> gets busy <span class="change negative"> reducing the size of ${his}`); if (slave.hips >= 2) { r.push(`freakish`); } else if (slave.hips >= 0) { @@ -791,7 +791,7 @@ App.SlaveAssignment.longTermPhysicalEffects = (function() { slave.hips -= 1; countNCS++; } else if (((slave.shoulders - Math.abs(slave.shouldersImplant)) > -2) && (random(1, 100) < ((slave.shoulders + 3) * 18))) { - r.push(`${His} <span class="NCS">NCS</span> applies and<span class="change negative"> reduces the size of ${his}`); + r.push(`${His} <span class="ncs">NCS</span> applies and<span class="change negative"> reduces the size of ${his}`); if (slave.shoulders >= 2) { r.push(`domineering`); } else if (slave.shoulders >= -2 && slave.shoulders < 0) { @@ -807,19 +807,19 @@ App.SlaveAssignment.longTermPhysicalEffects = (function() { ** r.push(`Below that by chance, (reducing chances by current size). In general clits shrink faster.`); */ if (slave.dick >= 10) { - r.push(`${His} <span class="NCS">NCS</span> is actively <span class="change negative">reducing the size of ${his} giant dick.</span>`); + r.push(`${His} <span class="ncs">NCS</span> is actively <span class="change negative">reducing the size of ${his} giant dick.</span>`); slave.dick -= 2; countNCS++; } else if (slave.clit >= 5) { - r.push(`${His} <span class="NCS">NCS</span> has <span class="change negative">reduced the size of ${his} enormous clit-dick.</span>`); + r.push(`${His} <span class="ncs">NCS</span> has <span class="change negative">reduced the size of ${his} enormous clit-dick.</span>`); slave.clit -= 2; countNCS++; } else if ((countNCS < 3) && (slave.dick > 2) && (random(1, 100) < ((slave.dick + 1) * 9))) { - r.push(`${His} <span class="NCS">NCS</span> is actively <span class="change negative">reducing the size of ${his} dick.</span>`); + r.push(`${His} <span class="ncs">NCS</span> is actively <span class="change negative">reducing the size of ${his} dick.</span>`); slave.dick -= 1; countNCS++; } else if ((countNCS < 3) && (slave.clit >= 1) && (random(1, 100) < ((slave.clit + 2) * 16))) { - r.push(`${His} <span class="NCS">NCS</span> has <span class="change negative">reduced the size of ${his} clit.</span>`); + r.push(`${His} <span class="ncs">NCS</span> has <span class="change negative">reduced the size of ${his} clit.</span>`); slave.clit -= 1; countNCS++; } @@ -829,11 +829,11 @@ App.SlaveAssignment.longTermPhysicalEffects = (function() { ** r.push(`Others decrease by chance based on current size.`); */ if (slave.balls >= 10) { - r.push(`${His} <span class="NCS">NCS</span> gets busy <span class="change negative">reducing the size of ${his} titanic balls.</span>`); + r.push(`${His} <span class="ncs">NCS</span> gets busy <span class="change negative">reducing the size of ${his} titanic balls.</span>`); slave.balls -= 2; countNCS++; } else if ((countNCS < 3) && (slave.balls > 2) && (random(1, 100) < ((slave.balls + 1) * 8))) { - r.push(`${His} <span class="NCS">NCS</span> gets busy <span class="change negative">reducing the size of ${his} balls.</span>`); + r.push(`${His} <span class="ncs">NCS</span> gets busy <span class="change negative">reducing the size of ${his} balls.</span>`); slave.balls -= 1; countNCS++; } @@ -843,11 +843,11 @@ App.SlaveAssignment.longTermPhysicalEffects = (function() { ** r.push(`Regular butts based on chances, decrease as the size does.`); */ if (buttSize >= 10) { - r.push(`${His} <span class="NCS">NCS</span> applies and <span class="change negative">reduces the size of ${his} bulbous butt.</span>`); + r.push(`${His} <span class="ncs">NCS</span> applies and <span class="change negative">reduces the size of ${his} bulbous butt.</span>`); slave.butt -= 2; countNCS++; } else if ((countNCS < 3) && (buttSize >= 1) && (random(1, 100) < (slave.butt * 9))) { - r.push(`${His} <span class="NCS">NCS</span> applies and <span class="change negative">reduces the size of ${his} butt.</span>`); + r.push(`${His} <span class="ncs">NCS</span> applies and <span class="change negative">reduces the size of ${his} butt.</span>`); slave.butt -= 1; countNCS++; } @@ -859,19 +859,19 @@ App.SlaveAssignment.longTermPhysicalEffects = (function() { */ if (slave.geneMods.rapidCellGrowth !== 1) { if (slave.scrotum >= 5) { - r.push(`${His} <span class="NCS">NCS</span> kicks in and <span class="change negative">reduces the size of ${his} pendulous scrotum.</span>`); + r.push(`${His} <span class="ncs">NCS</span> kicks in and <span class="change negative">reduces the size of ${his} pendulous scrotum.</span>`); slave.scrotum -= 2; countNCS++; } else if (slave.labia >= 5) { - r.push(`${His} <span class="NCS">NCS</span> kicks in and <span class="change negative">reduces the size of ${his} sagging labia.</span>`); + r.push(`${His} <span class="ncs">NCS</span> kicks in and <span class="change negative">reduces the size of ${his} sagging labia.</span>`); slave.labia -= 2; countNCS++; } else if ((countNCS < 3) && (slave.labia >= 1) && (random(1, 100) < (slave.labia * 11))) { - r.push(`${His} <span class="NCS">NCS</span> kicks in and <span class="change negative">reduces the size of ${his} labia.</span>`); + r.push(`${His} <span class="ncs">NCS</span> kicks in and <span class="change negative">reduces the size of ${his} labia.</span>`); slave.labia -= 1; countNCS++; } else if ((countNCS < 3) && (slave.scrotum > 1) && (random(1, 100) < (slave.scrotum * 8.5))) { - r.push(`${His} <span class="NCS">NCS</span> kicks in and <span class="change negative">reduces the size of ${his} scrotum.</span>`); + r.push(`${His} <span class="ncs">NCS</span> kicks in and <span class="change negative">reduces the size of ${his} scrotum.</span>`); slave.scrotum -= 1; countNCS++; } @@ -881,7 +881,7 @@ App.SlaveAssignment.longTermPhysicalEffects = (function() { ** r.push(`Small chance for any non-childlike voice.`); */ if ((countNCS < 3) && (slave.voice < 3) && slave.voice !== 0 && (random(1, 100) > (slave.voice * 15))) { - r.push(`${His} <span class="NCS">NCS</span> has <span class="change positive">raised the pitch of ${his} voice, ${he} now sounds more `); + r.push(`${His} <span class="ncs">NCS</span> has <span class="change positive">raised the pitch of ${his} voice, ${he} now sounds more `); if (slave.voice === 1) { r.push(`feminine.</span>`); } else { @@ -896,11 +896,11 @@ App.SlaveAssignment.longTermPhysicalEffects = (function() { */ if (slave.geneMods.rapidCellGrowth !== 1) { if ((countNCS < 2) && (slave.vagina > 1) && (random(1, 100) < (slave.vagina * 10))) { - r.push(`${His} <span class="NCS">NCS</span> manages to <span class="change positive">reverse the stretching in ${his} vagina, ${his} pussy now looks more childlike.</span>`); + r.push(`${His} <span class="ncs">NCS</span> manages to <span class="change positive">reverse the stretching in ${his} vagina, ${his} pussy now looks more childlike.</span>`); slave.vagina -= 1; countNCS++; } else if ((_countNCS < 2) && (slave.anus > 1) && (random(1, 100) < (slave.anus * 10))) { - r.push(`${His} <span class="NCS">NCS</span> effectively <span class="change positive">reverses the stretching in ${his} anus, ${his} ass-pussy now looks more childlike.</span>`); + r.push(`${His} <span class="ncs">NCS</span> effectively <span class="change positive">reverses the stretching in ${his} anus, ${his} ass-pussy now looks more childlike.</span>`); slave.anus -= 1; countNCS++; } @@ -1089,7 +1089,7 @@ App.SlaveAssignment.longTermPhysicalEffects = (function() { slave.boobs -= 50 / gigantomastiaMod; } if (slave.geneMods.NCS === 1 && random(1, 100) > 50 * gigantomastiaMod) { - r.push(`This effect is massively compounded by ${his} <span class="NCS">NCS.</span>`); + r.push(`This effect is massively compounded by ${his} <span class="ncs">NCS.</span>`); slave.boobs -= Math.round(boobSize * .1); } } diff --git a/src/gui/css/mainStyleSheet.css b/src/gui/css/mainStyleSheet.css index 30e7728077a..5fea276496b 100644 --- a/src/gui/css/mainStyleSheet.css +++ b/src/gui/css/mainStyleSheet.css @@ -167,7 +167,7 @@ img.paperdoll { .mediumaquamarine, .mediumaquamarine a, .trust.inc, .trust.inc a, .trust.careful, .trust.careful a { color: mediumaquamarine } .mediumorchid, .mediumorchid a, .devotion.dec, .devotion.dec a, .devotion.resistant, .devotion.resistant a { color: mediumorchid } .mediumseagreen, .mediumseagreen a, .trust.trusting, .trust.trusting a { color: mediumseagreen } -.orange, .orange a, .stupid, .stupid a, .change.negative, .change.negative a, .defiant.careful, .defiant.careful a, .NCS, .NCS a, .intro.question { color: orange } /* generally between red and green, and a lot of other places */ +.orange, .orange a, .stupid, .stupid a, .change.negative, .change.negative a, .defiant.careful, .defiant.careful a, .ncs, .ncs a, .intro.question { color: orange } /* generally between red and green, and a lot of other places */ .orangered, .orangered a, .defiant.inc, .defiant.inc a, .defiant.bold, .defiant.bold, .education.neg a { color: orangered } .orchid, .orchid a { color: orchid } /* used once (wrong? */ .pink, .pink a, .slave.name.simple { color: pink } /* also fetish start ??? , and a lot of other stuff */ -- GitLab