summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-30 20:09:44 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-30 20:09:44 +0000
commita6a05c05705372842088bc9b56fcb7fe6cc41c58 (patch)
treeabe7ec348eac71af09d215d29fa753de64f5b43d /crawl-ref/source/item_use.cc
parent2776e606f9866b226a970f7aaad493cfa4a89498 (diff)
downloadcrawl-ref-a6a05c05705372842088bc9b56fcb7fe6cc41c58.tar.gz
crawl-ref-a6a05c05705372842088bc9b56fcb7fe6cc41c58.zip
Make shadow dragons' corpses mutagenic as discussed some time ago, and
mark skeletal dragons' genus as "dragon", so they are affected by dragon slaying. Add several more descriptions for various abilities. Please feel free to correct or add anything. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6261 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index c84b2542d9..30431843c3 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -3551,6 +3551,9 @@ void zap_wand( int slot )
if (!alreadyknown && (beam.obvious_effect || type_zapped == ZAP_FIREBALL))
{
set_ident_type( wand, ID_KNOWN_TYPE );
+ if (wand.sub_type == WAND_RANDOM_EFFECTS)
+ mpr("You feel that this wand is rather unreliable.");
+
mpr(wand.name(DESC_INVENTORY_EQUIP).c_str());
}
else