From 3ec72460f3dd3ce5df5542c38e1222d7a9a5db50 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 23 Nov 2015 15:07:16 -0500 Subject: [PATCH] v0.3.2c: reduced gnoll shaman's magic damage (still stronger than pre-0.3.2) --- .../shatteredpixeldungeon/actors/mobs/Shaman.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Shaman.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Shaman.java index 8e0af3523..29d0b5662 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Shaman.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Shaman.java @@ -95,7 +95,7 @@ public class Shaman extends Mob implements Callback { spend( TIME_TO_ZAP ); if (hit( this, enemy, true )) { - int dmg = Random.Int( 2, 12 ); + int dmg = Random.Int( 3, 8 ); if (Level.water[enemy.pos] && !enemy.flying) { dmg *= 1.5f; }