diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/HeroClass.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/HeroClass.java index a96be1eb8..460f5f0a8 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/HeroClass.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/HeroClass.java @@ -25,6 +25,10 @@ import com.shatteredpixel.shatteredpixeldungeon.Badges; import com.shatteredpixel.shatteredpixeldungeon.Challenges; import com.shatteredpixel.shatteredpixeldungeon.Dungeon; import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon; +import com.shatteredpixel.shatteredpixeldungeon.items.bags.PotionBandolier; +import com.shatteredpixel.shatteredpixeldungeon.items.bags.ScrollHolder; +import com.shatteredpixel.shatteredpixeldungeon.items.bags.SeedPouch; +import com.shatteredpixel.shatteredpixeldungeon.items.bags.WandHolster; import com.shatteredpixel.shatteredpixeldungeon.messages.Messages; import com.shatteredpixel.shatteredpixeldungeon.items.armor.ClothArmor; import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.CloakOfShadows; @@ -87,6 +91,11 @@ public enum HeroClass { if (!Dungeon.isChallenged(Challenges.NO_FOOD)) new Food().identify().collect(); + + new SeedPouch().collect(); + new WandHolster().collect(); + new PotionBandolier().collect(); + new ScrollHolder().collect(); } public Badges.Badge masteryBadge() { diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/bags/PotionBandolier.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/bags/PotionBandolier.java index df560c155..8f2adf3e3 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/bags/PotionBandolier.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/bags/PotionBandolier.java @@ -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."; - } } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/bags/ScrollHolder.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/bags/ScrollHolder.java index be438d3da..ed556fbd1 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/bags/ScrollHolder.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/bags/ScrollHolder.java @@ -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."; - } + } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/bags/SeedPouch.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/bags/SeedPouch.java index 5f8c61aa1..28844eb96 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/bags/SeedPouch.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/bags/SeedPouch.java @@ -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."; - } + } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/bags/WandHolster.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/bags/WandHolster.java index 87eed74f5..9091b224a 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/bags/WandHolster.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/bags/WandHolster.java @@ -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?"; - } + } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/messages/messages.properties b/src/com/shatteredpixel/shatteredpixeldungeon/messages/messages.properties index e15e85099..3aba9bb50 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/messages/messages.properties +++ b/src/com/shatteredpixel/shatteredpixeldungeon/messages/messages.properties @@ -443,9 +443,13 @@ items.artifacts.unstablespellbook.name=unstable spellbook items.bags.bag.name=backpack items.bags.potionbandolier.name=potion bandolier +items.bags.potionbandolier.desc=This thick bandolier fits around your chest like a sash, it has many small vials to hold your potions.\n\nThe vials are made of tempered glass, and should be quite resistant to the cold. items.bags.scrollholder.name=scroll holder +items.bags.scrollholder.desc=This tubular container looks like it would hold an astronomer's charts, but your scrolls will fit just as well.\n\nThe holder doesn't look very flammable, so your scrolls should be safe from fire inside it. items.bags.seedpouch.name=seed pouch +items.bags.seedpouch.desc=This small velvet pouch allows you to store any number of seeds in it. Very convenient. items.bags.wandholster.name=wand holster +items.bags.wandholster.desc=This slim holster is made from some exotic animal, and is designed to compactly hold many wands. items.food.blandfruit.name=blandfruit items.food.blandfruit.sunfruit=sunfruit