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; }