From 12b8d160c634c2253af66de2233aab813cc15de3 Mon Sep 17 00:00:00 2001 From: dolorous Date: Fri, 4 Jul 2008 16:02:21 +0000 Subject: 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 --- crawl-ref/source/mutation.cc | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) (limited to 'crawl-ref') 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)) -- cgit v1.2.3-54-g00ecf