v0.3.4: externalized bag strings

This commit is contained in:
Evan Debenham
2016-01-01 22:18:31 -05:00
committed by Evan Debenham
parent 861fa34420
commit f5254365a3
6 changed files with 16 additions and 26 deletions
@@ -42,10 +42,4 @@ public class PotionBandolier extends Bag {
return 50;
}
@Override
public String info() {
return
"This thick bandolier fits around your chest like a sash, it has many small vials to hold your potions.\n\n" +
"The vials are made of tempered glass, and should be quite resistant to the cold.";
}
}
@@ -41,11 +41,5 @@ public class ScrollHolder extends Bag {
public int price() {
return 50;
}
@Override
public String info() {
return
"This tubular container looks like it would hold an astronomer's charts, but your scrolls will fit just as well.\n\n" +
"The holder doesn't look very flammable, so your scrolls should be safe from fire inside it.";
}
}
@@ -41,10 +41,5 @@ public class SeedPouch extends Bag {
public int price() {
return 50;
}
@Override
public String info() {
return
"This small velvet pouch allows you to store any number of seeds in it. Very convenient.";
}
}
@@ -64,11 +64,5 @@ public class WandHolster extends Bag {
public int price() {
return 50;
}
@Override
public String info() {
return
"This slim holster is made from some exotic animal, and is designed to compactly carry up to " + size + " wands.\n\n" +
"The size seems a bit excessive, who would ever have that many wands?";
}
}