summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-06-14 11:48:30 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-06-14 11:48:30 +0000
commit54705c0c81e24cfd76ba4fe654c37de217c5beae (patch)
treeea3625f8dfd68d7ae17501e771d610eee8834479 /crawl-ref/source/tutorial.cc
parentbf43967bc6de08383813ea532bf75c2d441d0e89 (diff)
downloadcrawl-ref-54705c0c81e24cfd76ba4fe654c37de217c5beae.tar.gz
crawl-ref-54705c0c81e24cfd76ba4fe654c37de217c5beae.zip
Apply my recent commits to trunk.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9978 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/tutorial.cc')
-rw-r--r--crawl-ref/source/tutorial.cc31
1 files changed, 22 insertions, 9 deletions
diff --git a/crawl-ref/source/tutorial.cc b/crawl-ref/source/tutorial.cc
index 52c1d427b6..e85ce7355d 100644
--- a/crawl-ref/source/tutorial.cc
+++ b/crawl-ref/source/tutorial.cc
@@ -3252,15 +3252,28 @@ void learned_something_new(tutorial_event_type seen_what, coord_def gc)
case TUT_GLOWING:
viewwindow(true, false);
- text << "Uh-oh, you've accumulated so much magical contamination that "
- "you're glowing! You usually acquire magical contamination "
- "from using some powerful magics, like invisibility, haste "
- "or potions of resistance. This normally isn't a problem as "
- "contamination slowly bleeds off on its own, but it seems that "
- "you've accumulated so much contamination over a short amount "
- "of time that it can have nasty effects, such as mutate you "
- "or deal direct damage. In addition, glowing is going to make "
- "you much more noticeable.";
+ text << "You've accumulated so much magical contamination that you're "
+ "glowing! You usually acquire magical contamination from using "
+ "some powerful magics, like invisibility, haste or potions of "
+ "resistance. ";
+
+ if (you.magic_contamination < 5)
+ {
+ text << "As long as the status only shows in grey nothing will "
+ "actually happen as a result of it, but as you continue "
+ "suffusing yourself with magical contamination you'll "
+ "eventually start glowing for real, which ";
+ }
+ else
+ {
+ text << "This normally isn't a problem as contamination slowly "
+ "bleeds off on its own, but it seems that you've "
+ "accumulated so much contamination over a short amount of "
+ "time that it ";
+ }
+ text << "can have nasty effects, such as mutate you or deal direct "
+ "damage. In addition, glowing is going to make you much more "
+ "noticeable.";
break;
case TUT_YOU_RESIST: