summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-04 16:02:21 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-04 16:02:21 +0000
commit12b8d160c634c2253af66de2233aab813cc15de3 (patch)
tree003d91e2314e12767b8b89a5a550a8f74aa093c9 /crawl-ref
parentca98a8399e80e0fa440298a6ddf383d706343088 (diff)
downloadcrawl-ref-12b8d160c634c2253af66de2233aab813cc15de3.tar.gz
crawl-ref-12b8d160c634c2253af66de2233aab813cc15de3.zip
Remove redundant bits: The poison and electricity resistance mutations
have only one level, so don't bother trying to give or take more than one level of them. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6394 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/mutation.cc21
1 files changed, 9 insertions, 12 deletions
diff --git a/crawl-ref/source/mutation.cc b/crawl-ref/source/mutation.cc
index 573c924ba7..18a2c6d022 100644
--- a/crawl-ref/source/mutation.cc
+++ b/crawl-ref/source/mutation.cc
@@ -119,8 +119,7 @@ const char *mutation_descrip[][3] = {
"You are surrounded by a moderate repulsion field (ev + 3).",
"You are surrounded by a strong repulsion field (ev + 5; repel missiles)."},
- {"Your system is immune to poisons.", "Your system is immune to poisons.",
- "Your system is immune to poisons."},
+ {"Your system is immune to poisons.", "", ""},
// 10
{"Your digestive system is specialised to digest meat.",
@@ -136,8 +135,7 @@ const char *mutation_descrip[][3] = {
{"Your flesh is cold resistant.", "Your flesh is very cold resistant.",
"Your flesh is almost immune to the effects of cold."},
- {"You are immune to electric shocks.", "You are immune to electric shocks.",
- "You are immune to electric shocks."},
+ {"You are immune to electric shocks.", "", ""},
{"Your natural rate of healing is unusually fast.",
"You heal very quickly.",
@@ -416,7 +414,7 @@ const char *gain_mutation[][3] = {
"Your repulsive radiation grows stronger.",
"Your repulsive radiation grows stronger."},
- {"You feel healthy.", "You feel healthy.", "You feel healthy."},
+ {"You feel healthy.", "", ""},
// 10
{"You hunger for flesh.", "You hunger for flesh.",
@@ -431,7 +429,7 @@ const char *gain_mutation[][3] = {
{"You feel hot for a moment.", "You feel hot for a moment.",
"You feel hot for a moment."},
- {"You feel insulated.", "You feel insulated.", "You feel insulated."},
+ {"You feel insulated.", "", ""},
{"You begin to heal more quickly.",
"You begin to heal more quickly.",
@@ -662,8 +660,7 @@ const char *lose_mutation[][3] = {
{"You feel attractive.", "You feel attractive.", "You feel attractive."},
- {"You feel a little less healthy.", "You feel a little less healthy.",
- "You feel a little less healthy."},
+ {"You feel a little less healthy.", "", ""},
{"You feel able to eat a more balanced diet.",
"You feel able to eat a more balanced diet.",
@@ -679,7 +676,7 @@ const char *lose_mutation[][3] = {
{"You feel a sudden chill.", "You feel a sudden chill.",
"You feel a sudden chill."},
- {"You feel conductive.", "You feel conductive.", "You feel conductive."},
+ {"You feel conductive.", "", ""},
{"Your rate of healing slows.", "Your rate of healing slows.",
"Your rate of healing slows."},
@@ -785,7 +782,7 @@ const char *lose_mutation[][3] = {
// 60
{"Your hooves expand and flesh out into feet!", "", ""},
- {"Your talons dull and shrink into feet.", "", ""},
+ {"Your talons dull and shrink into feet!", "", ""},
{"", "", ""},
{"", "", ""},
@@ -2577,7 +2574,7 @@ void demonspawn()
if (one_chance_in(12))
{
whichm = MUT_SHOCK_RESISTANCE;
- howm = 3;
+ howm = 1;
}
if (!you.mutation[MUT_CALL_TORMENT] && one_chance_in(15))
@@ -2679,7 +2676,7 @@ void demonspawn()
if (one_chance_in(4))
{
whichm = MUT_POISON_RESISTANCE;
- howm = 3;
+ howm = 1;
}
if (one_chance_in(4))