@@ -136,9 +136,9 @@ function grappleAnalVore(attacker) {
attacker.butt.feed(defender);
defender.grappled = false;
changeMode("explore");
return "You shove the " + defender.description() + " between your cheeks. Their head slips into your ass with a wet <i>shlk</i>, and the rest of their body follows suit. You moan and gasp, working them deeper and deeper...";
return "You shove " + defender.description("the") + " between your cheeks. Their head slips into your ass with a wet <i>shlk</i>, and the rest of their body follows suit. You moan and gasp, working them deeper and deeper...";
} else {
return "Your grasp and shove the " + defender.description() + ", but they manage to avoid becoming " + attacker.species + " chow.";
return "Your grasp and shove " + defender.description("the") + ", but they manage to avoid becoming " + attacker.species + " chow.";
@@ -262,11 +273,11 @@ class Butt extends Container {
}
describeDamage(prey) {
return "Your bowels gurgle and squeeze, working to wear down the " + prey.description() + " trapped in those musky confines.";
return "Your bowels gurgle and squeeze, working to wear down " + prey.description("the") + " trapped in those musky confines.";
}
describeKill(prey) {
return "The " + prey.description() + " abruptly stops struggling, overpowered by your winding intestines.";
return prey.description("The") + " abruptly stops struggling, overpowered by your winding intestines.";
}
describeFinish(prey) {
@@ -319,12 +330,12 @@ function plead(predator) {
if (escape) {
return {
"escape": escape,
"lines": ["You plead for the " + predator.description() + " to let you free, and they begrudingly agree, horking you up and leaving you shivering on the ground"]
"lines": ["You plead for " + predator.description("the") + " to let you free, and they begrudingly agree, horking you up and leaving you shivering on the ground"]
};
} else {
return {
"escape": escape,
"lines": ["You plead with the " + predator.description() + " to let you go, but they refuse."]
"lines": ["You plead with " + predator.description("the") + " to let you go, but they refuse."]
};
}
}
@@ -341,12 +352,12 @@ function struggle(predator) {
if (escape) {
return {
"escape": escape,
"lines": ["You struggle and squirm, forcing the " + predator.description() + " to hork you up. They groan and stumble away, exhausted by your efforts."]
"lines": ["You struggle and squirm, forcing " + predator.description("the") + " to hork you up. They groan and stumble away, exhausted by your efforts."]
};
} else {
return {
"escape": escape,
"lines": ["You squirm and writhe within the " + predator.description() + " to no avail."]
"lines": ["You squirm and writhe within " + predator.description("the") + " to no avail."]
};
}
}
@@ -360,7 +371,7 @@ function rub(predator) {
struggle: function(player) {
return {
"escape": false,
"lines": ["You rub the walls of your predator's belly. At least the " + predator.description() + " is getting something out of this."]
"lines": ["You rub the walls of your predator's belly. At least " + predator.description("the") + " is getting something out of this."]