[#2001] some hack-job balancing of pickpocket. I'm gonna need someone

with math skills to do some real balancing. Also, this commit makes
greens/blues better to pick-pocket than reds! I think that's important
for motiviation (@sabrecat @danielthebard)
This commit is contained in:
Tyler Renelle
2013-12-17 00:15:39 -07:00
parent c2ace688b9
commit 2ecbb3b3ce
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -298,7 +298,7 @@ api.spells =
target: 'task'
notes: "Your nimble fingers run through the task's pockets and 'find' some treasures for yourself. You gain an increased gold bonus on the task and a higher chance of an item drop."
cast: (user, target) ->
user.stats.gp += (user._statsComputed.per/2) * Math.abs(target.value)
user.stats.gp += ((if target.value < 0 then 0 else target.value) + 2) * user._statsComputed.per*.03
backStab:
text: 'Backstab'
mana: 15