From e07c9abf798b129013b1aea9e9bbbb23325ab246 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Sat, 26 Jun 2021 00:21:49 -0400 Subject: [PATCH] polish --- src/events/nonRandom/daughters/pUndergroundRailroad.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/events/nonRandom/daughters/pUndergroundRailroad.js b/src/events/nonRandom/daughters/pUndergroundRailroad.js index b8db6c36444..3021840d736 100644 --- a/src/events/nonRandom/daughters/pUndergroundRailroad.js +++ b/src/events/nonRandom/daughters/pUndergroundRailroad.js @@ -381,7 +381,7 @@ App.Events.PUndergroundRailroad = class PUndergroundRailroad extends App.Events. const frag = new DocumentFragment(); let r = []; unlock(); - r.push(`You announce that a treasonous slave will be publicly flogged. Treason is understood in the Free Cities to be activity that tends to undermine slavery, and public interest is considerable when ${traitor.slaveName} is dragged out into a public atrium and secured to a post. You do your duty; the one that passes the sentence should swing the lash. The ordeal is long and bloody. The populace understand the necessity of the punishment, though they are <span class="red">disturbed</span> that such a thing could happen in your penthouse of all places. The effect on ${traitor.slaveName}'s health <span class="health.dec">is serious,</span> and ${he} is <span class="trust dec">terrified of failing you again.</span>`); + r.push(`You announce that a treasonous slave will be publicly flogged. Treason is understood in the Free Cities to be activity that tends to undermine slavery, and public interest is considerable when ${traitor.slaveName} is dragged out into a public atrium and secured to a post. You do your duty; the one that passes the sentence should swing the lash. The ordeal is long and bloody. The populace understand the necessity of the punishment, though they are <span class="reputation dec">disturbed</span> that such a thing could happen in your penthouse of all places. The effect on ${traitor.slaveName}'s health <span class="health dec">is serious,</span> and ${he} is <span class="trust dec">terrified of failing you again.</span>`); traitor.trust -= 15; repX(-500, "event", traitor); healthDamage(traitor, 30); @@ -419,7 +419,7 @@ App.Events.PUndergroundRailroad = class PUndergroundRailroad extends App.Events. } else { r.push(`is summarily hanged.`); } - r.push(`The populace understands the necessity of the punishment, though they are <span class="red">disturbed</span> that such a thing could happen in your penthouse of all places. The surviving slaves are <span class="trust dec">terrified</span> at the display, but at least you can be sure they will remember the price of failing you.`); + r.push(`The populace understands the necessity of the punishment, though they are <span class="reputation dec">disturbed</span> that such a thing could happen in your penthouse of all places. The surviving slaves are <span class="trust dec">terrified</span> at the display, but at least you can be sure they will remember the price of failing you.`); repX(-500, "event", traitor); V.slaves.forEach(function(s) { s.trust -= 10 + random(10); -- GitLab