Stealth scales with # of dailies as well as per; currently avoids 100% of dailies at 100 total per.

This commit is contained in:
Lorian
2014-02-05 16:28:30 -08:00
parent 0ea6563c50
commit ef4303c1f8
+2 -1
View File
@@ -399,7 +399,8 @@ api.spells =
notes: "You duck into the shadows, pulling up your hood. Many dailies won't find you this night; fewer yet the higher your Perception."
cast: (user, target) ->
user.stats.buffs.stealth ?= 0
user.stats.buffs.stealth += Math.ceil(user._statsComputed.per * .03)
## scales to user's # of dailies; maxes out at 100% at 100 per ##
user.stats.buffs.stealth += Math.ceil(user.dailys.length * user._statsComputed.per / 100)
healer:
heal: