From fbeb83e8360aeea47b0ab9b45ba683ab878c2e54 Mon Sep 17 00:00:00 2001 From: Verabird Date: Fri, 13 Mar 2015 11:38:34 -0400 Subject: [PATCH] Rescale stealth to strengthen --- common/script/content.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/script/content.coffee b/common/script/content.coffee index 658f85f3b4..339062f042 100644 --- a/common/script/content.coffee +++ b/common/script/content.coffee @@ -611,8 +611,8 @@ api.spells = notes: t('spellRogueStealthNotes') cast: (user, target) -> user.stats.buffs.stealth ?= 0 - ## scales to user's # of dailies; Diminishing Returns, maxes out at 25%, halfway point at 100 PER## - user.stats.buffs.stealth += Math.ceil( diminishingReturns(user._statsComputed.per, user.dailys.length*0.25,100)) + ## scales to user's # of dailies; Diminishing Returns, maxes out at 65%, halfway point at 90 PER## + user.stats.buffs.stealth += Math.ceil( diminishingReturns(user._statsComputed.per, user.dailys.length*0.65,90)) healer: heal: