summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index 36a15df6ec..6d7c38d2be 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -650,6 +650,16 @@ void wield_effects(int item_wield_2, bool showMsgs)
"of random colours.");
break;
+ case SPWPN_PENETRATION:
+ mprf("Your %s briefly pass through it before you manage "
+ "to get a firm grip on it.",
+ you.hand_name(true).c_str());
+ break;
+
+ case SPWPN_SHADOW:
+ mpr("It is briefly surrounded by shifting shadows.");
+ break;
+
case SPWPN_SINGING_SWORD:
if (!was_known)
{
@@ -2109,6 +2119,7 @@ void setup_missile_beam(const actor *agent, bolt &beam, item_def &item,
expl->name = replace_all(expl->name, ammo.name(DESC_PLAIN),
short_name);
}
+ expl->name = "explosion of " + expl->name;
beam.special_explosion = expl;
}