summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mutation.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-29 13:20:43 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-29 13:20:43 +0000
commitf65b0e512e9ebabc93aa35224228a39e1c3d5a88 (patch)
tree98338df21fb6cf3789ff6810c04716cb2154b619 /crawl-ref/source/mutation.cc
parent25c2c3a8d8a270e3d0f06791942d62ef9aeaf5b3 (diff)
downloadcrawl-ref-f65b0e512e9ebabc93aa35224228a39e1c3d5a88.tar.gz
crawl-ref-f65b0e512e9ebabc93aa35224228a39e1c3d5a88.zip
Vampires may no longer draw blood from summoned monsters.
Remove Vampires being "in touch with the powers of death". Only print Mummies death boost message from xp >= 13 where it actually appears. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8015 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/mutation.cc')
-rw-r--r--crawl-ref/source/mutation.cc26
1 files changed, 7 insertions, 19 deletions
diff --git a/crawl-ref/source/mutation.cc b/crawl-ref/source/mutation.cc
index b5244c75df..8f2f1985bf 100644
--- a/crawl-ref/source/mutation.cc
+++ b/crawl-ref/source/mutation.cc
@@ -1125,17 +1125,16 @@ formatted_string describe_mutations()
break;
case SP_MUMMY:
- result += "You are";
- if (you.experience_level > 25)
- result += " very strongly";
- else if (you.experience_level > 12)
- result += " strongly";
-
- result += " in touch with the powers of death." EOL;
result += "Your flesh is vulnerable to fire." EOL;
-
if (you.experience_level > 12)
+ {
+ result += "You are";
+ if (you.experience_level > 25)
+ result += " strongly";
+
+ result += " in touch with the powers of death." EOL;
result += "You can restore your body by infusing magical energy." EOL;
+ }
have_any = true;
break;
@@ -1218,17 +1217,6 @@ formatted_string describe_mutations()
break;
case SP_VAMPIRE:
- if (you.hunger_state < HS_SATIATED)
- {
- if (you.experience_level >= 13)
- {
- result += "<green>";
- result += "You are";
- result += " in touch with the powers of death." EOL;
- result += "</green>";
- }
- }
-
if (you.hunger_state == HS_STARVING)
result += "<green>You do not heal.</green>" EOL;
else if (you.hunger_state <= HS_HUNGRY)