From ae254479fd765714598c9717c4b41ee49aea6455 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 16 Jan 2018 20:06:26 -0500 Subject: [PATCH] v0.6.3: buffed/adjusted warlock --- .../shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java index 80ac75f65..730a260dc 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java @@ -144,7 +144,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() < .15f + (level()*chargesUsed*0.03f)){ + Random.Float() < .09f + (level()*chargesUsed*0.06f)){ SoulMark.prolong(target, SoulMark.class, SoulMark.DURATION + level()); } }