From 5dcc732e24f2c2b868fb2d7c403fe93e389972f0 Mon Sep 17 00:00:00 2001 From: brandonjreid Date: Sun, 2 Feb 2014 01:24:28 -0700 Subject: [PATCH] Lowered the effectiveness of Pickpocket. --- script/content.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/content.coffee b/script/content.coffee index 6e3fa4b69e..84c4ef1a9a 100644 --- a/script/content.coffee +++ b/script/content.coffee @@ -365,8 +365,8 @@ 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, higher yet the 'fatter' (bluer) your task." cast: (user, target) -> - bonus = (if target.value < 0 then 1 else target.value+2) * user._statsComputed.per - user.stats.gp += 75 * (bonus / (bonus + 800)) + bonus = (if target.value < 0 then 1 else target.value+2) + (user._statsComputed.per * 0.5) + user.stats.gp += 25 * (bonus / (bonus + 75)) backStab: text: 'Backstab' mana: 15