summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mutation-data.h
diff options
context:
space:
mode:
authorgammafunk <gammafunk@gmail.com>2014-05-28 03:45:14 -0500
committergammafunk <gammafunk@gmail.com>2014-05-28 12:50:50 -0500
commit474ca70ed42f27c2b1982d7c7637e5815c89be55 (patch)
tree066ee8d171d2026ac0396b1dabd6f5ded72f4a67 /crawl-ref/source/mutation-data.h
parentafd1d1232c60c598fa064e3417b928de33d77a49 (diff)
downloadcrawl-ref-474ca70ed42f27c2b1982d7c7637e5815c89be55.tar.gz
crawl-ref-474ca70ed42f27c2b1982d7c7637e5815c89be55.zip
Rework demonspawn mutation tiers involving conservation
Since scroll/potion conservation is no longer relevant, I've split the flame/freezing cloud immunities that were part of icemail/fire blood into their own mutations. We now give these as the second mutation in both the tier-2 and tier-3 fire/ice mutation sets.
Diffstat (limited to 'crawl-ref/source/mutation-data.h')
-rw-r--r--crawl-ref/source/mutation-data.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/crawl-ref/source/mutation-data.h b/crawl-ref/source/mutation-data.h
index 657dac1bb7..24e5c14860 100644
--- a/crawl-ref/source/mutation-data.h
+++ b/crawl-ref/source/mutation-data.h
@@ -1065,6 +1065,7 @@ static const mutation_def mut_data[] =
"icemail"
},
+#if TAG_MAJOR_VERSION == 34
{ MUT_CONSERVE_SCROLLS, 0, 1, false, false,
"conserve scrolls",
@@ -1083,6 +1084,7 @@ static const mutation_def mut_data[] =
{"", "", ""},
"conserve potions",
},
+#endif
{ MUT_PASSIVE_FREEZE, 0, 1, false, false,
"passive freeze",
@@ -1686,4 +1688,23 @@ static const mutation_def mut_data[] =
"cold-blooded"
},
+{ MUT_FLAME_CLOUD_IMMUNITY, 0, 1, false, false,
+ "flame cloud immunity",
+
+ {"You are immune to clouds of flame.", "", ""},
+ {"You feel less concerned about heat.", "", ""},
+ {"", "", ""},
+
+ "flame cloud immunity",
+},
+
+{ MUT_FREEZING_CLOUD_IMMUNITY, 0, 1, false, false,
+ "freezing cloud immunity",
+
+ {"You are immune to freezing clouds.", "", ""},
+ {"You feel less concerned about cold.", "", ""},
+ {"", "", ""},
+ "freezing cloud immunity",
+},
+
};