diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/keys/GoldenKey.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/keys/GoldenKey.java index 85e5809f0..fb4aa9cd7 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/keys/GoldenKey.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/keys/GoldenKey.java @@ -36,11 +36,5 @@ public class GoldenKey extends Key { super(); this.depth = depth; } - - @Override - public String info() { - return - "The notches on this golden key are tiny and intricate. " + - "Maybe it can open some chest lock?"; - } + } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/keys/IronKey.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/keys/IronKey.java index e56ad4de0..3aca9fc0b 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/keys/IronKey.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/keys/IronKey.java @@ -58,11 +58,5 @@ public class IronKey extends Key { Dungeon.hero.belongings.countIronKeys(); } } - - @Override - public String info() { - return - "The notches on this ancient iron key are well worn; its leather lanyard " + - "is battered by age. What door might it open?"; - } + } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/keys/SkeletonKey.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/keys/SkeletonKey.java index f0362db0d..ec8a8ccee 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/keys/SkeletonKey.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/keys/SkeletonKey.java @@ -43,10 +43,5 @@ public class SkeletonKey extends Key { public boolean isSimilar( Item item ) { return false; } - - @Override - public String info() { - return - "This key looks serious: its head is shaped like a skull. Probably it can open some serious door."; - } + } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/messages/messages.properties b/src/com/shatteredpixel/shatteredpixeldungeon/messages/messages.properties index 3aba9bb50..77e01e6e7 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/messages/messages.properties +++ b/src/com/shatteredpixel/shatteredpixeldungeon/messages/messages.properties @@ -496,9 +496,12 @@ items.food.pasty.cane=candy cane items.food.food.pasty_desc=This is authentic Cornish pasty with traditional filling of beef and potato. items.food.food.cane_desc=A huge sugary sweet candy cane! It's big enough to fill you up, and the sugar might give your wands a tiny bit of extra charge too.\n\nHappy Holidays! -items.keys.GoldenKey.name=golden key -items.keys.IronKey.name=iron key -items.keys.SkeletonKey.name=skeleton key +items.keys.goldenkey.name=golden key +items.keys.goldenkey.desc=The notches on this golden key are tiny and intricate. Maybe it can open some chest lock? +items.keys.ironkey.name=iron key +items.keys.ironkey.desc=The notches on this ancient iron key are well worn; its leather lanyard is battered by age. What door might it open? +items.keys.skeletonkey.name=skeleton key +items.keys.skeletonkey.desc=This key looks serious: its head is shaped like a skull. Probably it can open some serious door. items.potions.potionofexperience.name=potion of experience items.potions.potionoffrost.name=potion of frost