summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2009-11-03 13:50:03 +0100
committerAdam Borowski <kilobyte@angband.pl>2009-11-03 14:02:48 +0100
commitf42c33718495449a5b1bce42d05b76d3975cc76e (patch)
tree2dbe9c59bedc50d50c24e89fbebdd43179fdb245 /crawl-ref/source/describe.cc
parent7f8b6d85697774a182b3f40aca21e2286d5c32a3 (diff)
downloadcrawl-ref-f42c33718495449a5b1bce42d05b76d3975cc76e.tar.gz
crawl-ref-f42c33718495449a5b1bce42d05b76d3975cc76e.zip
Bracers of archery: 5,3 slaying for ranged combat, -1,-1 for melee.
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index f723c1adfc..01daa4237a 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -1262,6 +1262,12 @@ static std::string _describe_armour( const item_def &item, bool verbose )
description += "It shields its wearer from harm at the cost "
"of magical power.";
break;
+
+ // This is only for bracers (gloves).
+ case SPARM_ARCHERY:
+ description += "These improve your skills with ranged weaponry "
+ "but interfere slightly with melee combat.";
+ break;
}
}