From 98e7461762f6ba48816a5d048539eab847ecd771 Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Tue, 8 Jun 2021 21:52:11 -0400
Subject: [PATCH] clean up breedingBull.js

---
 src/events/RESS/breedingBull.js | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/events/RESS/breedingBull.js b/src/events/RESS/breedingBull.js
index 7657b9d6739..065b3c921c0 100644
--- a/src/events/RESS/breedingBull.js
+++ b/src/events/RESS/breedingBull.js
@@ -2,7 +2,8 @@ App.Events.RESSBreedingBull = class RESSBreedingBull extends App.Events.BaseEven
 	eventPrerequisites() {
 		return [
 			() => V.PC.vagina > -1,
-			() => V.PC.preg === 0
+			() => V.PC.preg === 0,
+			() => canGetPregnant(V.PC)
 		]; // always valid if sufficient actors can be cast successfully
 	}
 
@@ -156,7 +157,7 @@ App.Events.RESSBreedingBull = class RESSBreedingBull extends App.Events.BaseEven
 				r.push(`face to your violated pussy to feel the heat emanating from it`);
 			}
 			r.push(`unsatisfied, ${he} moves back into position to properly seed you this time. You black out as ${his} second load joins the first, only to awaken sometime later`);
-			if (S.Concubine) {
+			if (S.Concubine && S.Concubine.fetish !== "mindbroken") {
 				const {his2, He2, him2} = getPronouns(S.Concubine).appendSuffix("2");
 				r.push(`with ${S.Concubine.slaveName} trying ${his2} best to drain your swollen belly.`);
 				if (canTalk(S.Concubine)) {
@@ -166,7 +167,7 @@ App.Events.RESSBreedingBull = class RESSBreedingBull extends App.Events.BaseEven
 				} else {
 					r.push(`${He2} gestures ${his2} apologies and points to the bound and gagged ${eventSlave.slaveName}, before expressing ${his2} concerns about your visible state.`);
 				}
-				r.push(`You do your best to calm ${him2} down; this is your fault after all. ${eventSlave.slaveName}'s a breeding bull and you a fertile _womanP. ${He} only did what ${he} was conditioned for; the blame is on you for ignoring the warning signs and not taking the proper precautions. Still, there is no doubt in your mind that <span class="lime">you're pregnant</span> with ${his} child. As for the belly, it'll go down soon, you're sure.`);
+				r.push(`You do your best to calm ${him2} down; this is your fault after all. ${eventSlave.slaveName}'s a breeding bull and you a fertile ${womanP}. ${He} only did what ${he} was conditioned for; the blame is on you for ignoring the warning signs and not taking the proper precautions. Still, there is no doubt in your mind that <span class="lime">you're pregnant</span> with ${his} child. As for the belly, it'll go down soon, you're sure.`);
 			} else if (S.Bodyguard) {
 				const {his2, He2, him2} = getPronouns(S.Bodyguard).appendSuffix("2");
 				r.push(`with ${S.Bodyguard.slaveName} sobbing over your swollen belly.`);
@@ -179,7 +180,7 @@ App.Events.RESSBreedingBull = class RESSBreedingBull extends App.Events.BaseEven
 				} else {
 					r.push(`${He2} gestures ${his2} apologies and points to the bound and gagged ${eventSlave.slaveName}, before begging you to punish ${him2} too for ${his2} failures as your guardian.`);
 				}
-				r.push(`You do your best to calm ${him2} down; this is your fault after all. ${eventSlave.slaveName}'s a breeding bull and you, a fertile _womanP. ${He} only did what ${he} was conditioned for; the blame is on you for ignoring the warning signs and not taking the proper precautions. Still, there is no doubt in your mind that <span class="lime">you're pregnant</span> with ${his} child.`);
+				r.push(`You do your best to calm ${him2} down; this is your fault after all. ${eventSlave.slaveName}'s a breeding bull and you, a fertile ${womanP}. ${He} only did what ${he} was conditioned for; the blame is on you for ignoring the warning signs and not taking the proper precautions. Still, there is no doubt in your mind that <span class="lime">you're pregnant</span> with ${his} child.`);
 			} else {
 				r.push(`to ${eventSlave.slaveName} snoring beside you, ${his} massive cock soft and slightly drooling cum. Most of ${his} deposit has flowed back out of you, but you're still heavy with sperm. You sigh to yourself, knowing you have nobody to blame but yourself for this. ${He}'s a breeding bull and you a fertile ${womanP}. ${He} only did what ${he} was conditioned for; the fault is on you for ignoring the warning signs and not taking the proper precautions. Still, there is no doubt in your mind that <span class="lime">you're pregnant</span> with ${his} child.`);
 			}
-- 
GitLab