diff --git a/src/events/RESS/mutinyAttempt.js b/src/events/RESS/mutinyAttempt.js index e509c846e3d3c7b34828e9d35b583acc8386397c..34e3e1a793eec9f68bafa4ee94c67983fb04744f 100644 --- a/src/events/RESS/mutinyAttempt.js +++ b/src/events/RESS/mutinyAttempt.js @@ -295,7 +295,7 @@ App.Events.RESSMutinyAttempt = class RESSMutinyAttempt extends App.Events.BaseEv function flog() { eventSlave.trust -= 15; healthDamage(eventSlave, 15); - V.slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } }); + V.slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } }); return `You bind ${his} naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike ${him}, showering extra attention to ${his} crotch, while making sure ${he} will be in pain for days to come. Such a beating leaves ${him} <span class="health dec">in agonizing pain</span> and makes a clear example to ${him} and all your other rebellious slaves that <span class="trust dec">you are not to be trifled with.</span>`; } @@ -311,7 +311,9 @@ App.Events.RESSMutinyAttempt = class RESSMutinyAttempt extends App.Events.BaseEv function castrate() { eventSlave.trust -= 20; eventSlave.devotion -= 10; - V.slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } }); + eventSlave.balls = 0; + eventSlave.scrotum = 0; + V.slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 10; } }); cashX(forceNeg(V.surgeryCost), "slaveSurgery", eventSlave); surgeryDamage(eventSlave, 10); return `As you pull ${his} limp body to the remote surgery, you notice ${he} understands what ${he} has done and begs you to reconsider your decision; but your mind is set. ${He} had the balls to try and rape you, and now ${he} won't. Restrained as ${he} is, the most ${he} can do is cry and beg. Once ${he} comes to after the surgery, ${he} faces ${his} new life; <span class="devotion dec">${he}'ll never get hard again</span> and ${he}'s <span class="trust dec">the only one to blame</span> for ${his} <span class="health dec">suffering.</span> Every other rebellious slave is <span class="trust dec">mortified by the example.</span>`;