From 4415f36e7687b930b310a17821b6dc03cf6de47f Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 3 Nov 2014 13:45:12 -0500 Subject: [PATCH] v0.2.2: clarified ring descriptions, 'cursed' is now 'degraded' --- .../shatteredpixeldungeon/items/rings/RingOfAccuracy.java | 2 +- .../shatteredpixeldungeon/items/rings/RingOfEvasion.java | 6 +----- .../shatteredpixeldungeon/items/rings/RingOfForce.java | 2 +- .../shatteredpixeldungeon/items/rings/RingOfFuror.java | 2 +- .../shatteredpixeldungeon/items/rings/RingOfHaste.java | 2 +- .../shatteredpixeldungeon/items/rings/RingOfMight.java | 2 +- .../items/rings/RingOfSharpshooting.java | 2 +- .../shatteredpixeldungeon/items/rings/RingOfTenacity.java | 2 +- .../shatteredpixeldungeon/items/rings/RingOfWealth.java | 2 +- 9 files changed, 9 insertions(+), 13 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfAccuracy.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfAccuracy.java index a392fa1cd..eb10a6770 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfAccuracy.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfAccuracy.java @@ -32,7 +32,7 @@ public class RingOfAccuracy extends Ring { public String desc() { return isKnown() ? "This ring increases your focus, reducing your enemy's ability to dodge your attacks. "+ - "A cursed ring will instead make you easier to evade.": + "A degraded ring will instead make you easier to evade.": super.desc(); } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfEvasion.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfEvasion.java index 7791c742f..0752ca3c2 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfEvasion.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfEvasion.java @@ -17,11 +17,7 @@ */ package com.shatteredpixel.shatteredpixeldungeon.items.rings; -import com.shatteredpixel.shatteredpixeldungeon.Badges; import com.shatteredpixel.shatteredpixeldungeon.actors.Char; -import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero; -import com.shatteredpixel.shatteredpixeldungeon.actors.hero.HeroClass; -import com.shatteredpixel.shatteredpixeldungeon.utils.GLog; public class RingOfEvasion extends Ring { @@ -39,7 +35,7 @@ public class RingOfEvasion extends Ring { return isKnown() ? "This ring increases the wearer's ability to focus and anticipate the movements of an enemy. " + "The longer the wearer stands still, the more focused they will become. " + - "A cursed ring will instead make dodging harder." : + "A degraded ring will instead make dodging harder." : super.desc(); } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfForce.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfForce.java index f0f8d0c0d..cba2748b6 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfForce.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfForce.java @@ -20,7 +20,7 @@ public class RingOfForce extends Ring { "This ring enhances the force of the wearer's blows. " + "This extra power is largely wasted when wielding weapons, " + "but an unarmed attack will be made much stronger. " + - "A cursed ring will instead weaken the wearer's blows." : + "A degraded ring will instead weaken the wearer's blows." : super.desc(); } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfFuror.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfFuror.java index a6654ce6d..442d27003 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfFuror.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfFuror.java @@ -19,7 +19,7 @@ public class RingOfFuror extends Ring { return isKnown() ? "This ring grants the wearer an inner fury, allowing them to attack more rapidly. " + "This fury works best in large bursts, so slow weapons benefit far more than fast ones. " + - "A cursed ring will instead slow the wearer's speed of attack." : + "A degraded ring will instead slow the wearer's speed of attack." : super.desc(); } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfHaste.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfHaste.java index 18f29ffcc..b74855abc 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfHaste.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfHaste.java @@ -32,7 +32,7 @@ public class RingOfHaste extends Ring { public String desc() { return isKnown() ? "This ring reduces the stress of movement on the wearer, allowing them to run " + - "at superhuman speeds. A cursed ring will instead weigh the wearer down.": + "at superhuman speeds. A degraded ring will instead weigh the wearer down.": super.desc(); } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfMight.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfMight.java index 3f0a97188..cf02dfeda 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfMight.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfMight.java @@ -20,7 +20,7 @@ public class RingOfMight extends Ring { return isKnown() ? "This ring enhances the physical traits of the wearer, " + "granting them greater physical strength and constitution. " + - "A cursed ring will weaken the wearer." : + "A degraded ring will weaken the wearer." : super.desc(); } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfSharpshooting.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfSharpshooting.java index 4eeebe006..ad91dd4e9 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfSharpshooting.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfSharpshooting.java @@ -19,7 +19,7 @@ public class RingOfSharpshooting extends Ring { return isKnown() ? "This ring enhances the wearer's precision and aim, which will " + "make all projectile weapons more accurate and durable. " + - "A cursed ring will have the opposite effect.": + "A degraded ring will have the opposite effect.": super.desc(); } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfTenacity.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfTenacity.java index b4670d557..e2d727c06 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfTenacity.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfTenacity.java @@ -19,7 +19,7 @@ public class RingOfTenacity extends Ring { return isKnown() ? "When worn, this ring will allow the wearer to resist normally mortal strikes. " + "The more injured the user is, the more resistant they will be to damage. " + - "A cursed ring will instead make it easier for enemies to execute the wearer." : + "A degraded ring will instead make it easier for enemies to execute the wearer." : super.desc(); } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfWealth.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfWealth.java index 35acae328..6f5acdcfd 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfWealth.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/rings/RingOfWealth.java @@ -19,7 +19,7 @@ public class RingOfWealth extends Ring { return isKnown() ? "It's not clear what this ring does exactly, good luck may influence " + "the life an an adventurer in many subtle ways. " + - "Naturally a cursed ring would give bad luck." : + "Naturally a degraded ring would give bad luck." : super.desc(); }