From 220c92597ec2cd14d5ebabd77c39753c02feb854 Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Wed, 1 Mar 2023 16:19:05 -0500 Subject: [PATCH] add missing `milk aficionado` case to `RE Boomerang` --- src/events/RE/reBoomerang.js | 7 ++++++- src/interaction/sellSlave.js | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/events/RE/reBoomerang.js b/src/events/RE/reBoomerang.js index 146144bfc63..6737a418f06 100644 --- a/src/events/RE/reBoomerang.js +++ b/src/events/RE/reBoomerang.js @@ -109,6 +109,7 @@ App.Events.REBoomerang = class REBoomerang extends App.Events.BaseEvent { case "factory farm": case "free range": case "pastoralist arcology": + case "milk aficionado": switch (buyer) { case "free range": r.push(Spoken(slave, `"The nice free range dairy you sold me to failed, and a horrible factory farm bought everyone. It's horrible."`)); @@ -130,6 +131,10 @@ App.Events.REBoomerang = class REBoomerang extends App.Events.BaseEvent { r.push(Spoken(slave, `"I got resold to a dairy. A horrible dairy. They said I'm valuable because I give two kinds of milk."`)); r.push(`The`); break; + case "milk aficionado": + r.push(Spoken(slave, `"When my new owner got bored of my flavored milk, he just left me hooked up to the milking machine and forgot about me."`)); + r.push(`The`); + break; default: r.push(`You sold ${him} to a factory farm, and the`); } @@ -144,7 +149,7 @@ App.Events.REBoomerang = class REBoomerang extends App.Events.BaseEvent { } else { r.push(`feet.`); } - r.push(`The soles of the feet are a convenient place to beat a whore, since it's agonizingly painful, doesn't bruise badly, and won't inconvenience a slave that spends all ${his} time kneeling or lying down.`); + r.push(`The soles of the feet are a convenient place to beat a cow, since it's agonizingly painful, doesn't bruise badly, and won't inconvenience a slave that spends all ${his} time kneeling or lying down.`); } slave.anus = 4; slave.lactation = 2; diff --git a/src/interaction/sellSlave.js b/src/interaction/sellSlave.js index 403c909c33f..f2d2bc7833a 100644 --- a/src/interaction/sellSlave.js +++ b/src/interaction/sellSlave.js @@ -2587,7 +2587,7 @@ App.Interact.sellSlave = function(slave) { return r; } }], - ["Milk aficionado", { + ["milk aficionado", { cost: 1.4, offerDesc: `from a wealthy milk aficionado that would like to add ${him} to his dairy.`, get requirements() { return (slave.milkFlavor !== "none" && slave.boobsImplant === 0 && slave.health.condition > 40); }, -- GitLab