diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Bandit.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Bandit.java index a3d2404e6..0101c47ec 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Bandit.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Bandit.java @@ -48,9 +48,9 @@ public class Bandit extends Thief { protected boolean steal( Hero hero ) { if (super.steal( hero )) { - Buff.prolong( hero, Blindness.class, Random.Int( 5, 12 ) ); + Buff.prolong( hero, Blindness.class, Random.Int( 2, 5 ) ); Buff.affect( hero, Poison.class ).set(Random.Int(5, 7) * Poison.durationFactor(enemy)); - Buff.prolong( hero, Cripple.class, Cripple.DURATION ); + Buff.prolong( hero, Cripple.class, Random.Int( 3, 8 ) ); Dungeon.observe(); return true;