Skip to content
Snippets Groups Projects
Commit 9c225b25 authored by DarkGod's avatar DarkGod
Browse files

Superpower grants 50% of strength as mindpower

parent 1fee8969
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment