summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mutation-data.h
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-05-18 19:50:01 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-05-18 19:50:01 -0400
commitddce04797bb75fef9909ccdea3b5818c9a4b6a44 (patch)
tree81281761570b55341df46881653dc170d109a68a /crawl-ref/source/mutation-data.h
parent19c7863afd63d42bffcfd14290269aa5312ea619 (diff)
downloadcrawl-ref-ddce04797bb75fef9909ccdea3b5818c9a4b6a44.tar.gz
crawl-ref-ddce04797bb75fef9909ccdea3b5818c9a4b6a44.zip
Make cold-bloodedness go away in transformations (#8496).
This was accomplished by using a new mutation, MUT_COLD_BLOODED, rather than a simple check for race. There's a bit of a hack to get it to still be greyed out with rC but that's probably better than the special case based on genus.
Diffstat (limited to 'crawl-ref/source/mutation-data.h')
-rw-r--r--crawl-ref/source/mutation-data.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/crawl-ref/source/mutation-data.h b/crawl-ref/source/mutation-data.h
index 5983b1e9ba..41fd9e4d6a 100644
--- a/crawl-ref/source/mutation-data.h
+++ b/crawl-ref/source/mutation-data.h
@@ -1665,6 +1665,16 @@ static const mutation_def mut_data[] =
{"", "", ""},
"black mark"
-}
+},
+
+{ MUT_COLD_BLOODED, 0, 1, true, false, true,
+ "cold-blooded",
+
+ {"Your cold-blooded metabolism reacts poorly to cold.", "", ""},
+ {"You feel cold-blooded.", "", ""},
+ {"You feel warm-blooded.", "", ""},
+
+ "cold-blooded"
+},
};