From 1bc96bda432ace905271de73bc945b76c6f062d4 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 15 Oct 2015 05:35:47 -0400 Subject: [PATCH] v0.3.2: balance tweaks to new warlock effect --- .../shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java index 479a4cdfd..ea718a799 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java @@ -138,7 +138,7 @@ public abstract class Wand extends Item { protected void processSoulMark(Char target, int chargesUsed){ if (target != Dungeon.hero && Dungeon.hero.subClass == HeroSubClass.WARLOCK && - Random.Float() < .08f + (level*chargesUsed*0.04f)){ + Random.Float() < .15f + (level*chargesUsed*0.03f)){ SoulMark.prolong(target, SoulMark.class, SoulMark.DURATION); } }