From b8fb3ce5b3531219a35a60506e089d1d96263fcf Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 3 Sep 2015 02:56:42 -0400 Subject: [PATCH] v0.3.1b: fixed a bunch of typos in trap descriptions --- .../shatteredpixeldungeon/levels/traps/BlazingTrap.java | 2 +- .../shatteredpixeldungeon/levels/traps/ChillingTrap.java | 2 +- .../shatteredpixeldungeon/levels/traps/CursingTrap.java | 2 +- .../shatteredpixeldungeon/levels/traps/DisintegrationTrap.java | 2 +- .../shatteredpixeldungeon/levels/traps/DistortionTrap.java | 2 +- .../shatteredpixeldungeon/levels/traps/FireTrap.java | 2 +- .../shatteredpixeldungeon/levels/traps/FlashingTrap.java | 2 +- .../shatteredpixeldungeon/levels/traps/FrostTrap.java | 2 +- .../shatteredpixeldungeon/levels/traps/GrippingTrap.java | 2 +- .../shatteredpixeldungeon/levels/traps/OozeTrap.java | 2 +- .../shatteredpixeldungeon/levels/traps/PitfallTrap.java | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/BlazingTrap.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/BlazingTrap.java index f81d4d50d..08c33f05e 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/BlazingTrap.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/BlazingTrap.java @@ -55,6 +55,6 @@ public class BlazingTrap extends Trap { @Override public String desc() { - return "stepping on this trap will ignite a powerful chemical mixture, setting a wide area ablaze."; + return "Stepping on this trap will ignite a powerful chemical mixture, setting a wide area ablaze."; } } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/ChillingTrap.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/ChillingTrap.java index c6673e4c7..f7a4130ab 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/ChillingTrap.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/ChillingTrap.java @@ -65,6 +65,6 @@ public class ChillingTrap extends Trap{ @Override public String desc() { - return "when activated, chemicals in this trap will trigger a snap-frost at its location."; + return "When activated, chemicals in this trap will trigger a snap-frost at its location."; } } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/CursingTrap.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/CursingTrap.java index 90f779dda..be348b193 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/CursingTrap.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/CursingTrap.java @@ -72,6 +72,6 @@ public class CursingTrap extends Trap { @Override public String desc() { return "This trap contains the same malevolent magic found in cursed equipment. " + - "Trigger it will curse all worn items, and all items in the immediate area."; + "Triggering it will curse all worn items, and all items in the immediate area."; } } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/DisintegrationTrap.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/DisintegrationTrap.java index 96161656d..cae18be53 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/DisintegrationTrap.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/DisintegrationTrap.java @@ -95,7 +95,7 @@ public class DisintegrationTrap extends Trap { @Override public String desc() { - return "Then triggered, this trap will lance the target with beams of disintegration, " + + return "When triggered, this trap will lance the target with beams of disintegration, " + "dealing significant damage and destroying items."; } } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/DistortionTrap.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/DistortionTrap.java index c2f8f6f24..c47d312d1 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/DistortionTrap.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/DistortionTrap.java @@ -50,6 +50,6 @@ public class DistortionTrap extends Trap{ @Override public String desc() { - return "Build from strange magic of unknown origin, this trap will shift and morph the world around you."; + return "Built from strange magic of unknown origin, this trap will shift and morph the world around you."; } } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/FireTrap.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/FireTrap.java index c0afe12da..ecc05cabc 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/FireTrap.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/FireTrap.java @@ -45,6 +45,6 @@ public class FireTrap extends Trap { @Override public String desc() { - return "stepping on this trap will ignite a chemical mixture, setting the immediate area aflame."; + return "Stepping on this trap will ignite a chemical mixture, setting the immediate area aflame."; } } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/FlashingTrap.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/FlashingTrap.java index 55b89ab63..81c9a09ad 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/FlashingTrap.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/FlashingTrap.java @@ -68,7 +68,7 @@ public class FlashingTrap extends Trap { @Override public String desc() { - return "On activation, this trap with ignite a potent flashing powder stored within, " + + return "On activation, this trap will ignite a potent flashing powder stored within, " + "temporarily blinding and crippling its victim."; } } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/FrostTrap.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/FrostTrap.java index 45aa20462..8be8a5c9b 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/FrostTrap.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/FrostTrap.java @@ -67,6 +67,6 @@ public class FrostTrap extends Trap { @Override public String desc() { - return "when activated, chemicals in this trap will trigger a powerful snap-frost at its location."; + return "When activated, chemicals in this trap will trigger a powerful snap-frost at its location."; } } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/GrippingTrap.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/GrippingTrap.java index e22411a96..b4a6e938c 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/GrippingTrap.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/GrippingTrap.java @@ -58,7 +58,7 @@ public class GrippingTrap extends Trap { @Override public String desc() { - return "triggering this trap will send barbed claws along the ground, " + + return "Triggering this trap will send barbed claws along the ground, " + "damaging the victims feet and rooting them in place."; } } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/OozeTrap.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/OozeTrap.java index d596af5b1..a24804bad 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/OozeTrap.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/OozeTrap.java @@ -47,6 +47,6 @@ public class OozeTrap extends Trap { @Override public String desc() { - return "This trap with splash out caustic ooze when activated, which will burn until it is washed away."; + return "This trap will splash out caustic ooze when activated, which will burn until it is washed away."; } } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/PitfallTrap.java b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/PitfallTrap.java index 6a13968df..eab3bfc74 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/PitfallTrap.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/levels/traps/PitfallTrap.java @@ -88,6 +88,6 @@ public class PitfallTrap extends Trap { @Override public String desc() { - return "This pressure plate rests ontop of a fairly weak floor, and will likely collapse into a pit if it is pressed."; + return "This pressure plate rests atop a fairly weak floor, and will likely collapse into a pit if it is pressed."; } }