Explorar el Código

Small Text additioin 3

fixed duplicate a in chewing text, added some more precum text.
tags/v1.0.1
jsb5468 hace 6 años
padre
commit
88db41b7d0
Se han modificado 1 ficheros con 50 adiciones y 2 borrados
  1. +50
    -2
      recursive-desc.js

+ 50
- 2
recursive-desc.js Ver fichero

@@ -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 <i>crunch</i>, 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-----



Cargando…
Cancelar
Guardar