diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Swarm.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Swarm.java index 4fa0a1611..98ce7bb76 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Swarm.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Swarm.java @@ -79,7 +79,7 @@ public class Swarm extends Mob { @Override public int damageRoll() { - return Random.NormalIntRange( 1, 4 ); + return Random.NormalIntRange( 1, 3 ); } @Override @@ -119,7 +119,7 @@ public class Swarm extends Mob { @Override public int attackSkill( Char target ) { - return 12; + return 10; } @Override