Stealth scales with # of dailies as well as per; currently avoids 100% of dailies at 100 total per.
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user