v0.6.2: slightly reduced wraith resistance to corruption.

This commit is contained in:
Evan Debenham 2017-10-11 23:44:49 -04:00
parent 90b7d801bb
commit 0bb5d8202a

View File

@ -133,7 +133,8 @@ public class WandOfCorruption extends Wand {
} else if (ch instanceof Piranha || ch instanceof Bee) { } else if (ch instanceof Piranha || ch instanceof Bee) {
enemyResist = 1 + Dungeon.depth/2f; enemyResist = 1 + Dungeon.depth/2f;
} else if (ch instanceof Wraith) { } 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) { } else if (ch instanceof Yog.BurningFist || ch instanceof Yog.RottingFist) {
enemyResist = 1 + 30; enemyResist = 1 + 30;
} else if (ch instanceof Yog.Larva || ch instanceof King.Undead){ } else if (ch instanceof Yog.Larva || ch instanceof King.Undead){