summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authorJude Brown <bookofjude@users.sourceforge.net>2010-01-03 22:30:50 +1000
committerJude Brown <bookofjude@users.sourceforge.net>2010-01-03 23:54:24 +1000
commita0c81e59f0325e542ecf2feaa21b29cd3ffc0bc1 (patch)
tree9613b5b84911c4b1dfca266b91bb0ff0c760c057 /crawl-ref/source/describe.cc
parent865ad15a82f21145b5623417549107317cb44b5b (diff)
downloadcrawl-ref-a0c81e59f0325e542ecf2feaa21b29cd3ffc0bc1.tar.gz
crawl-ref-a0c81e59f0325e542ecf2feaa21b29cd3ffc0bc1.zip
New needle brands! Sleep, paralysis, rage, confusion, sickness, slowing.
The numbers and the names will likely need tweaking. Better throwing skill and blowgun enchantment will increase the duration of most of the effects, except for sleep and rage.
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc20
1 files changed, 19 insertions, 1 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 8f06b1f582..426f4527ef 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -1069,7 +1069,25 @@ static std::string _describe_ammo(const item_def &item)
case SPMSL_CURARE:
description += "It is tipped with asphyxiating poison.";
break;
- case SPMSL_RETURNING:
+ case SPMSL_PARALYSIS:
+ description += "It is tipped with a paralyzing poison.";
+ break;
+ case SPMSL_SLOW:
+ description += "It is coated with a poison that causes slowness of the body.";
+ break;
+ case SPMSL_SLEEP:
+ description += "It is coated with a fast-acting tranquilizer.";
+ break;
+ case SPMSL_CONFUSION:
+ description += "It is tipped with a substance that causes confusion.";
+ break;
+ case SPMSL_SICKNESS:
+ description += "It has been contaminated by something likely to cause disease.";
+ break;
+ case SPMSL_RAGE:
+ description += "It is tipped with a substance that causes a mindless, berserk rage.";
+ break;
+ case SPMSL_RETURNING:
description += "A skilled user can throw it in such a way "
"that it will return to its owner.";
break;