diff --git a/src/events/reRelativeRecruiter.js b/src/events/reRelativeRecruiter.js index 2bf1c798bfe1b82d12543c885b7c73c5241215ae..10959e1a7244da4816efa512c327a55310c98813 100644 --- a/src/events/reRelativeRecruiter.js +++ b/src/events/reRelativeRecruiter.js @@ -392,7 +392,7 @@ App.Events.RERelativeRecruiter = class RERelativeRecruiter extends App.Events.Ba slave.boobsImplant = 600; slave.boobsImplantType = "normal"; slave.boobs += slave.boobsImplant; - slave.boobsShape = "normal"; + slave.boobShape = "normal"; slave.skill.oral += random(30, 50); slave.skill.vaginal += random(30, 50); slave.skill.anal += random(30, 50); @@ -414,7 +414,7 @@ App.Events.RERelativeRecruiter = class RERelativeRecruiter extends App.Events.Ba slave.boobsImplant = 600; slave.boobsImplantType = "normal"; slave.boobs += slave.boobsImplant; - slave.boobsShape = "normal"; + slave.boobShape = "normal"; slave.skill.oral += random(30, 50); slave.skill.vaginal += random(30, 50); slave.skill.anal += random(30, 50); diff --git a/src/npc/descriptions/belly/belly.js b/src/npc/descriptions/belly/belly.js index fa8652efb6a1ff9333b5ac04130f08be7994178d..5d41ef94edd15756d6cf8206737ec765272c22a8 100644 --- a/src/npc/descriptions/belly/belly.js +++ b/src/npc/descriptions/belly/belly.js @@ -12344,7 +12344,7 @@ App.Desc.belly = function(slave, {market, eventDescription} = {}) { } else if (slave.weight > 160) { r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} hugely fat belly. Every crease, fold, roll and motion is clearly visible within it.`); } else if (slave.weight > 130) { - r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} big fat belly. Every crease, fold and roll is clearly visible within it.`); + r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} big fat belly. Every crease, fold and roll is clearly visible within it.`); } else if (slave.belly >= 5000 || slave.bellyAccessory === "a medium empathy belly") { if (slave.bellyAccessory === "a medium empathy belly") { r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} pregnant belly. ${His} popped navel prominently pokes through the front of ${his} dress.`); diff --git a/src/npc/descriptions/boobs/boobs.js b/src/npc/descriptions/boobs/boobs.js index e91faec3e419a4d722924907ea9b766d8b706985..e96939e42c706b567f8142dc558bb431849e164c 100644 --- a/src/npc/descriptions/boobs/boobs.js +++ b/src/npc/descriptions/boobs/boobs.js @@ -949,7 +949,7 @@ App.Desc.boobs = function() { } else if (slave.boobs > 4000) { r += `${slave.slaveName} has swapped up to the largest crop-top available. Even so, it barely covers them and creates plenty of cleavage.`; } else if (slave.boobs > 2000) { - r += `${slave.slaveName}'s crop-top struggles to contain ${his}${adjNoun} leaving plenty of underboob visible alongside with ${his} cleavage.`; + r += `${slave.slaveName}'s crop-top struggles to contain ${his} ${adjNoun} leaving plenty of underboob visible alongside with ${his} cleavage.`; } else if (slave.boobs > 800) { r += `${slave.slaveName}'s crop-top tightly hugs ${his} ${adjNoun} creating plenty of cleavage.`; } else if (slave.boobs < 300) { diff --git a/src/npc/interaction/fDick.tw b/src/npc/interaction/fDick.tw index 3912760324bde92d2b6c8247190fb96ff3e157b1..41bb8c7b12fb539a37476a2b03f6d7d80f7ed1de 100644 --- a/src/npc/interaction/fDick.tw +++ b/src/npc/interaction/fDick.tw @@ -6,22 +6,22 @@ <<set _belly = bellyAdjective(getSlave($AS))>> - -<<if cumAmount(getSlave($AS)) <= 30>> +<<set _amount = cumAmount(getSlave($AS))>> +<<if _amount <= 30>> <<set _load = "a few timid spurts">> -<<elseif cumAmount(getSlave($AS)) <= 60>> +<<elseif _amount <= 60>> <<set _load = "an average load">> -<<elseif cumAmount(getSlave($AS)) <= 80>> +<<elseif _amount <= 80>> <<set _load = "a large load">> -<<elseif cumAmount(getSlave($AS)) <= 100>> +<<elseif _amount <= 100>> <<set _load = "a massive spurt of seed">> -<<elseif cumAmount(getSlave($AS)) <= 140>> +<<elseif _amount <= 140>> <<set _load = "a huge spurt of seed">> -<<elseif cumAmount(getSlave($AS)) <= 160>> +<<elseif _amount <= 160>> <<set _load = "a giant and drawn out gush">> -<<elseif cumAmount(getSlave($AS)) <= 180>> +<<elseif _amount <= 180>> <<set _load = "an enormous and belly swelling load">> -<<elseif cumAmount(getSlave($AS)) <= 200>> +<<elseif _amount <= 200>> <<set _load = "a monstrous, drawn out and belly swelling load">> <<else>> <<set _load = "an overly massive and unending gush of seed">>