From 8d6207dec06a92b6aa0b76991667b59684b82c7d Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sat, 11 Oct 2014 16:59:16 -0400 Subject: [PATCH] V0.2.1 : actually reduced damage from Chalice of Blood (v0.2.0a fix only reduced calc for warning, D'OH!) --- .../shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java index d12e5ccc3..a8db5c1d8 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java @@ -74,9 +74,7 @@ public class ChaliceOfBlood extends Artifact { } private void prick(Hero hero){ - int damage = (level*2)*(level*2); - - + int damage = 3*(level*level); Earthroot.Armor armor = hero.buff(Earthroot.Armor.class); if (armor != null) {