From 88db41b7d0c86ea3de05392a28c79d72c2a37996 Mon Sep 17 00:00:00 2001 From: jsb5468 Date: Mon, 18 Mar 2019 20:59:29 -0400 Subject: [PATCH] Small Text additioin 3 fixed duplicate a in chewing text, added some more precum text. --- recursive-desc.js | 52 +++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 50 insertions(+), 2 deletions(-) diff --git a/recursive-desc.js b/recursive-desc.js index bb77a39..92e2ef1 100644 --- a/recursive-desc.js +++ b/recursive-desc.js @@ -1996,7 +1996,7 @@ rules["chew"].push({ isGory(macro) && macro.height < 5; }, "desc": function(container, macro, verbose, flat) { - return "You tackle a " + container.describe(verbose) + " and dig into your meal, powerful " + macro.jawDesc(true) + " ripping them to shreds in seconds. You wolf down great mouthfuls \ + return "You tackle " + container.describe(verbose) + " and dig into your meal, powerful " + macro.jawDesc(true) + " ripping them to shreds in seconds. You wolf down great mouthfuls \ of meat, consuming them in a terrifying frenzy that ends with naught but bones lying on the ground."; } }); @@ -2008,7 +2008,7 @@ rules["chew"].push({ isGory(macro) && macro.height >= 5; }, "desc": function(container, macro, verbose, flat) { - return "You snatch up a " + container.describe(verbose) + ", then stuff their lower body into the guillotine that is your ravenous maw - slicing off their legs with \ + return "You snatch up " + container.describe(verbose) + ", then stuff their lower body into the guillotine that is your ravenous maw - slicing off their legs with \ a single disgusting crunch, then finishing them off with another ravenous bite that obliterates their torso. Their bleeding head falls from your lips, only to be \ caught between two fingers and popped back in to be crunched between molars and swallowed."; } @@ -3728,6 +3728,54 @@ rules["male-spurt"].push({ } }); +//more than 5 and less than 50 + +rules["male-spurt"].push({ + "test": function(container, macro, spurtVolume) { + return spurtVolume <= 50 && + spurtVolume > 5 && + isNonFatal(macro); + + }, "desc": function(container, macro, spurtVolume) { + return "Your " + macro.dickDiameter() + "wide cockhead throbs, releasing $VOLUMEs of pre. The pungent glob spashes over " + container.describe(verbose) + "."; + } +}); + +rules["male-spurt"].push({ + "test": function(container, macro, spurtVolume) { + return spurtVolume <= 50 && + spurtVolume > 5 && + isFatal(macro); + + }, "desc": function(container, macro, spurtVolume) { + return "Your " + macro.dickDiameter() + "wide cockhead throbs, releasing $VOLUMEs of pre. The pungent glob spashes onto the street; crushing " + container.describe(verbose) + "."; + } +}); + +rules["male-spurt"].push({ + "test": function(container, macro, spurtVolume) { + return spurtVolume <= 50 && + spurtVolume > 5 && + isGory(macro); + + }, "desc": function(container, macro, spurtVolume) { + return "Your " + macro.dickDiameter() + "wide cockhead throbs, releasing $VOLUMEs of pre. The pungent glob spashes onto the street; crushing " + container.describe(verbose) + ". The bloodstained pool of precum washes down the street and \ + pours into an nearby stromdrain."; + } +}); + +rules["male-spurt"].push({ + "test": function(container, macro, spurtVolume) { + return spurtVolume <= 50 && + spurtVolume > 5 && + isSadistic(macro); + + }, "desc": function(container, macro, spurtVolume) { + return "Your " + macro.dickDiameter() + "wide cockhead throbs, releasing $VOLUMEs of pre. The pungent glob spashes onto the street; crushing " + container.describe(verbose) + ". The bloodstained pool of precum washes broken glass and \ + " + pickSting("intestines","gore","organs") + " down the street and into an nearby stromdrain."; + } +}); + //--------TODO LIST-----