Change valorousPresence to utilize diminishing returns. Keep results at 200 str the same

This commit is contained in:
Verabird
2014-12-29 13:10:39 -05:00
parent 058e506d13
commit 195f7832d0
+2 -1
View File
@@ -551,8 +551,9 @@ api.spells =
notes: t('spellWarriorValorousPresenceNotes')
cast: (user, target) ->
_.each target, (member) ->
bonus = user._statsComputed.str
member.stats.buffs.str ?= 0
member.stats.buffs.str += Math.ceil(user._statsComputed.str * .05)
member.stats.buffs.str += diminishingReturns(bonus, 20, 200)
intimidate:
text: t('spellWarriorIntimidateText')