From 9c225b25c1709c9d826c7243533af401e74d43bb Mon Sep 17 00:00:00 2001
From: DarkGod <darkgod@net-core.org>
Date: Sun, 30 Jun 2013 22:45:36 +0200
Subject: [PATCH] Superpower grants 50% of strength as mindpower

---
 game/modules/tome/class/interface/Combat.lua | 2 +-
 game/modules/tome/data/talents/uber/str.lua  | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/game/modules/tome/class/interface/Combat.lua b/game/modules/tome/class/interface/Combat.lua
index c78b76985f..bddeed9cde 100644
--- a/game/modules/tome/class/interface/Combat.lua
+++ b/game/modules/tome/class/interface/Combat.lua
@@ -1619,7 +1619,7 @@ function _M:combatMindpower(mod, add)
 	add = add or 0
 
 	if self:knowTalent(self.T_SUPERPOWER) then
-		add = add + 25 * self:getStr() / 100
+		add = add + 50 * self:getStr() / 100
 	end
 
 	if self:knowTalent(self.T_GESTURE_OF_POWER) then
diff --git a/game/modules/tome/data/talents/uber/str.lua b/game/modules/tome/data/talents/uber/str.lua
index cc0cfd0de1..4489eddf35 100644
--- a/game/modules/tome/data/talents/uber/str.lua
+++ b/game/modules/tome/data/talents/uber/str.lua
@@ -185,12 +185,13 @@ uberTalent{
 	end,
 }
 
+uberTalent{
 uberTalent{
 	name = "Superpower",
 	mode = "passive",
 	info = function(self, t)
 		return ([[A strong body is key to a strong mind. And a strong mind is powerful enough to make a strong body.
-		Grants a Mindpower bonus equal to 25%% of your Strength.
+		Grants a Mindpower bonus equal to 50%% of your Strength.
 		Additionally, you treat all weapons as having an additional 30%% Willpower modifier.]])
 		:format()
 	end,
-- 
GitLab