From 782cc50b73f486d0584cf5ac097d9e588d7b9466 Mon Sep 17 00:00:00 2001
From: Shibari <ShibariTOME@Gmail.com>
Date: Thu, 17 Oct 2019 15:11:35 -0400
Subject: [PATCH] Soothing Darkness also multiplies the stamina regen by 5x on
 exit

This should make leaving/reentering stealth in prolonged fights feel better, and give an active option to focus on stamina regen.
---
 game/modules/tome/data/talents/cunning/stealth.lua | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/game/modules/tome/data/talents/cunning/stealth.lua b/game/modules/tome/data/talents/cunning/stealth.lua
index a0219bb408..b1e103c1c5 100644
--- a/game/modules/tome/data/talents/cunning/stealth.lua
+++ b/game/modules/tome/data/talents/cunning/stealth.lua
@@ -116,7 +116,7 @@ newTalent{
 		if self:knowTalent(self.T_SOOTHING_DARKNESS) then
 			local shadowguard = self:knowTalent(self.T_SHADOWGUARD) and 25 or 0
 			local life = self:callTalent(self.T_SOOTHING_DARKNESS, "getLife") * 5
-			local sta = self:callTalent(self.T_SOOTHING_DARKNESS, "getStamina")
+			local sta = self:callTalent(self.T_SOOTHING_DARKNESS, "getStamina") * 5
 			local dur = self:callTalent(self.T_SOOTHING_DARKNESS, "getDuration")
 			self:setEffect(self.EFF_SOOTHING_DARKNESS, dur, {life=life, stamina=sta, shadowguard = shadowguard})
 		end
@@ -191,7 +191,7 @@ newTalent{
 	info = function(self, t)
 		return ([[You have a special affinity for darkness and shadows.
 		When standing in an unlit grid, the minimum range to your foes for activating stealth or for maintaining it after a Shadow Dance is reduced by %d.
-		While stealthed, your life regeneration is increased by %0.1f (based on your Cunning) and your stamina regeneration is increased by %0.1f.  The regeneration effects persist for %d turns after exiting stealth, with 5 times the normal life regeneration rate.]]):
+		While stealthed, your life regeneration is increased by %0.1f (based on your Cunning) and your stamina regeneration is increased by %0.1f.  The regeneration effects persist for %d turns after exiting stealth, with 5 times the normal rate.]]):
 		format(t.getRadius(self, t, true), t.getLife(self,t), t.getStamina(self,t), t.getDuration(self, t))
 	end,
 }
-- 
GitLab