From 71ea80c8f18a1ca33f3bf1b87e057fd5910fd712 Mon Sep 17 00:00:00 2001
From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54>
Date: Sat, 10 Nov 2012 22:23:53 +0000
Subject: [PATCH] Psiblades APR can nto go down

git-svn-id: http://svn.net-core.org/repos/t-engine4@5783 51575b47-30f0-44d4-a5cc-537603b46e54
---
 game/modules/tome/class/Actor.lua           | 4 ++--
 game/modules/tome/data/talents/uber/str.lua | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/game/modules/tome/class/Actor.lua b/game/modules/tome/class/Actor.lua
index 715779f313..2506bebc79 100644
--- a/game/modules/tome/class/Actor.lua
+++ b/game/modules/tome/class/Actor.lua
@@ -2871,7 +2871,7 @@ function _M:checkMindstar(o)
 		local nm = {}
 		for s, v in pairs(o.combat.dammod) do nm[s] = v * (1.3 + pv / 10) end
 		o.combat.dammod = nm
-		o.combat.apr = math.floor(o.combat.apr * (1 + pv / 6.3))
+		o.combat.apr = o.combat.apr * (1 + pv / 6.3)
 
 		print("Activating psiblade", o.name)
 	elseif not new and old then
@@ -2880,7 +2880,7 @@ function _M:checkMindstar(o)
 		local nm = {}
 		for s, v in pairs(o.combat.dammod) do nm[s] = v / (1.3 + pv / 10) end
 		o.combat.dammod = nm
-		o.combat.apr = math.floor(o.combat.apr / (1 + pv / 6.3))
+		o.combat.apr = o.combat.apr / (1 + pv / 6.3)
 
 		o.moddable_tile_ornament = nil
 		o.psiblade_active = false
diff --git a/game/modules/tome/data/talents/uber/str.lua b/game/modules/tome/data/talents/uber/str.lua
index 39a50e4c8e..1bf6820f2b 100644
--- a/game/modules/tome/data/talents/uber/str.lua
+++ b/game/modules/tome/data/talents/uber/str.lua
@@ -65,7 +65,7 @@ uberTalent{
 		if target:canBe("stun") then target:setEffect(target.EFF_STUNNED, 3, {}) end
 	end,
 	info = function(self, t)
-		return ([[You deal a massive blow to your foe, smashing it for 250%% weapon damage and knocking it back 6 tiles away.
+		return ([[You deal a massive blow to your foe, smashing it for 230%% weapon damage and knocking it back 6 tiles away.
 		All foes in its path will be knocked on the sides and stunned for 3 turns.]])
 		:format()
 	end,
-- 
GitLab