diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Bestiary.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Bestiary.java index a88924fb8..373297712 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Bestiary.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Bestiary.java @@ -90,7 +90,7 @@ public class Bestiary { break; case 6: - chances = new float[]{ 4, 2, 1, 0.2f }; + chances = new float[]{ 4, 1, 1, 0.2f }; classes = new Class[]{ Skeleton.class, Thief.class, Swarm.class, Shaman.class }; break; case 7: diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Tengu.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Tengu.java index 9ed6ba34a..a9b6c8423 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Tengu.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Tengu.java @@ -215,7 +215,7 @@ public class Tengu extends Mob { @Override public String description() { return - "A famous assassin, named for the mask grafted to his face.\n\n" + + "A famous and enigmatic assassin, named for the mask grafted to his face.\n\n" + "Tengu is held down with large clasps on his wrists and knees, though he seems to have gotten rid of his chains long ago.\n\n" + "He will try to use traps, deceptive magic, and precise attacks to eliminate the only thing stopping his escape: you."; }