summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-12 07:58:43 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-12 07:58:43 +0000
commitca585d704a0951fb5eaded723b7f5551cf0e7e2b (patch)
treeba82bc544545b6a4a3edd0197f976b51be29f000 /crawl-ref
parent47147a830bcbf4f695995b5f4510926006a525b7 (diff)
downloadcrawl-ref-ca585d704a0951fb5eaded723b7f5551cf0e7e2b.tar.gz
crawl-ref-ca585d704a0951fb5eaded723b7f5551cf0e7e2b.zip
Display deep dwarves' recharging ability on the "A" screen, as we do
with mummies' stat restoration ability, and change its name to "Device Recharging" instead of "Wand Recharging", as it can also work on items like rods. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9423 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/abl-show.cc2
-rw-r--r--crawl-ref/source/mutation.cc1
2 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc
index 6e2a43bf1b..bbc6f7c5aa 100644
--- a/crawl-ref/source/abl-show.cc
+++ b/crawl-ref/source/abl-show.cc
@@ -202,7 +202,7 @@ static const ability_def Ability_List[] =
{ ABIL_EVOKE_MAPPING, "Evoke Sense Surroundings", 0, 0, 30, 0, ABFLAG_NONE },
{ ABIL_EVOKE_TELEPORTATION, "Evoke Teleportation", 3, 0, 200, 0, ABFLAG_NONE },
{ ABIL_EVOKE_BLINK, "Evoke Blink", 1, 0, 50, 0, ABFLAG_NONE },
- { ABIL_RECHARGING, "Wand Recharging", 1, 0, 0, 0, ABFLAG_PERMANENT_MP },
+ { ABIL_RECHARGING, "Device Recharging", 1, 0, 0, 0, ABFLAG_PERMANENT_MP },
{ ABIL_EVOKE_BERSERK, "Evoke Berserk Rage", 0, 0, 0, 0, ABFLAG_NONE },
diff --git a/crawl-ref/source/mutation.cc b/crawl-ref/source/mutation.cc
index e6f4e70f19..9753669196 100644
--- a/crawl-ref/source/mutation.cc
+++ b/crawl-ref/source/mutation.cc
@@ -1460,6 +1460,7 @@ formatted_string describe_mutations()
case SP_DEEP_DWARF:
result += "You are resistant to damage." EOL;
+ result += "You can recharge devices by infusing magical energy." EOL;
have_any = true;
break;