diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/CloakOfShadows.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/CloakOfShadows.java index 707455b07..3dde16d46 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/CloakOfShadows.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/CloakOfShadows.java @@ -223,7 +223,7 @@ public class CloakOfShadows extends Artifact { if (exp >= (level+1)*50 && level < levelCap) { upgrade(); exp -= level*50; - GLog.p("Your Cloak Grows Stronger!"); + GLog.p("Your cloak grows stronger!"); } updateQuickslot(); diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java index 8f316fd66..effbf35c0 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/DriedRose.java @@ -131,7 +131,7 @@ public class DriedRose extends Artifact { "could snap any moment."; else if (level < 10) desc+= "\n\nYou have reattached many petals and the rose has started to somehow come back to life."+ - " It almost looks like it's read to bloom."; + " It almost looks like it's ready to bloom."; else desc+= "\n\nThe rose has blossomed again through some kind of magic, its connection to your spirit"+ " friend is stronger than ever."; diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfEvasion.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfEvasion.java index 675f48a84..c1ddc2c12 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfEvasion.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfEvasion.java @@ -35,9 +35,9 @@ public class RingOfEvasion extends Ring { @Override public String desc() { return isKnown() ? - "This ring obfuscates the true position of the wearer, making them harder to detect and attack." + + "This ring obfuscates the true position of the wearer, making them harder to detect and attack. " + "This ring is much stronger while the user remains undetected, and if the user is targeted the power of " + - "evasion will slowly fade away, remaining undetected will restore the ring's effectiveness." + + "evasion will slowly fade away, remaining undetected will restore the ring's effectiveness. " + "A degraded ring will instead make the user easier to detect and strike.": super.desc(); }