v0.3.0: improved descriptions for wand of prismatic light and venom

This commit is contained in:
Evan Debenham 2015-04-13 01:32:04 -04:00
parent 4759cb8a55
commit ea35ab544b
2 changed files with 8 additions and 3 deletions

View File

@ -144,6 +144,11 @@ public class WandOfPrismaticLight extends Wand {
@Override
public String desc() {
return super.desc();
return
"This wand is made of a solid piece of translucent crystal, like a long chunk of smooth glass. " +
"It becomes clear towards the tip, where you can see colorful lights dancing around inside it.\n\n" +
"This wand shoots rays of light which damage and blind enemies and cut through the darkness of the dungeon, " +
"revealing hidden areas and traps. Evildoers, demons, and the undead will burn in the bright light " +
"of the wand, taking significant bonus damage.";
}
}

View File

@ -47,9 +47,9 @@ public class WandOfVenom extends Wand {
@Override
public String desc() {
return
"This wand has a purple body which opens to a shining green gem. " +
"This wand has a purple body which opens to a brilliant green gem. " +
"A small amount of foul smelling gas leaks from the gem.\n\n" +
"This wand shoots a bolt which explodes into a cloud of vile venomous gas at a targeted location. " +
"Anything caught inside this cloud will constantly take damage, increasing with time.";
"Anything caught inside this cloud will take continual damage, increasing with time.";
}
}