From b09b24aeb5da281d04975f7f19a78f405d3c4c5f Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Tue, 3 Nov 2015 13:47:16 -0500 Subject: [PATCH] v0.3.2: twaeked tengu's description, adjusted thief spawn rate on floor 6 --- .../shatteredpixeldungeon/actors/mobs/Bestiary.java | 2 +- .../shatteredpixel/shatteredpixeldungeon/actors/mobs/Tengu.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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."; }