summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.cc
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-02-26 01:26:48 +0100
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-02-26 01:26:48 +0100
commit78dc6631b38ce64f2863f52e75b5323d6147c117 (patch)
tree735e463f7f37604748c9ceda3109a3371ba6097e /crawl-ref/source/tutorial.cc
parent7833db6708c3754d1024d02803bcc8b07d965a87 (diff)
downloadcrawl-ref-78dc6631b38ce64f2863f52e75b5323d6147c117.tar.gz
crawl-ref-78dc6631b38ce64f2863f52e75b5323d6147c117.zip
Update the tutorial information on chunks making you sick.
The comments pertaining to "spoiled and inedible" meat probably stem from times when rotten meat could still be eaten. Instead we now mention that contaminated chunks only have a chance of making you sick and that you'll sometimes just have to risk it if you need to eat.
Diffstat (limited to 'crawl-ref/source/tutorial.cc')
-rw-r--r--crawl-ref/source/tutorial.cc12
1 files changed, 9 insertions, 3 deletions
diff --git a/crawl-ref/source/tutorial.cc b/crawl-ref/source/tutorial.cc
index e5fecdda77..fed2bb6490 100644
--- a/crawl-ref/source/tutorial.cc
+++ b/crawl-ref/source/tutorial.cc
@@ -2514,8 +2514,11 @@ void learned_something_new(tutorial_event_type seen_what, coord_def gc)
Tutorial.tut_just_triggered = false;
learned_something_new(TUT_YOU_ENCHANTED);
Tutorial.tut_just_triggered = true;
- text << "Corpses can be spoiled or inedible, making you sick. "
- "Also, some monsters' flesh is less palatable than others'. "
+ text << "Chunks and corpses that are described as "
+ "<brown>contaminated</brown> can make you sick when eating "
+ "them. However, there's only a chance of this happening and "
+ "food is sufficiently rare in the dungeon that you'll "
+ "sometimes have to dine on them anyway and hope for the best.\n"
"While sick, your hitpoints won't regenerate and sometimes "
"an attribute may decrease. It wears off with time (";
@@ -2526,7 +2529,10 @@ void learned_something_new(tutorial_event_type seen_what, coord_def gc)
#ifdef USE_TILE
" or by clicking into the stats area"
#endif
- "), or you could <w>%</w>uaff a potion of healing.";
+ "), or you could <w>%</w>uaff a potion of healing.\n"
+ "Note that if a chunk makes you sick, you won't get any "
+ "nutrition out of it.";
+
cmd.push_back(CMD_REST);
cmd.push_back(CMD_QUAFF);
break;