v0.3.4: externalized key strings

This commit is contained in:
Evan Debenham
2016-01-01 22:22:33 -05:00
committed by Evan Debenham
parent 11e0dd8965
commit a2ec0d5b1c
4 changed files with 9 additions and 23 deletions
@@ -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?";
}
}
@@ -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?";
}
}
@@ -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.";
}
}