From 0bb5d8202a4d1974ce377b9bc1b8503e44b8751f Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 11 Oct 2017 23:44:49 -0400 Subject: [PATCH] v0.6.2: slightly reduced wraith resistance to corruption. --- .../shatteredpixeldungeon/items/wands/WandOfCorruption.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfCorruption.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfCorruption.java index 21eb8bf06..9bae64ad0 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfCorruption.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/WandOfCorruption.java @@ -133,7 +133,8 @@ public class WandOfCorruption extends Wand { } else if (ch instanceof Piranha || ch instanceof Bee) { enemyResist = 1 + Dungeon.depth/2f; } else if (ch instanceof Wraith) { - enemyResist = 1 + Dungeon.depth/4f; + //this is so low because wraiths are always at max hp + enemyResist = 1 + Dungeon.depth/5f; } else if (ch instanceof Yog.BurningFist || ch instanceof Yog.RottingFist) { enemyResist = 1 + 30; } else if (ch instanceof Yog.Larva || ch instanceof King.Undead){