summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mutation.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-25 02:19:51 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-25 02:19:51 +0000
commitfe3c86f0cf7ab95c9b680f3aed732f7f1fb45892 (patch)
tree2d398cc6f76eecbc9596dfdefca360c5b2c6ab0b /crawl-ref/source/mutation.cc
parent47a26ffed473f286cd99832da1fa169fbf38153d (diff)
downloadcrawl-ref-fe3c86f0cf7ab95c9b680f3aed732f7f1fb45892.tar.gz
crawl-ref-fe3c86f0cf7ab95c9b680f3aed732f7f1fb45892.zip
Tweak Xom's amusement levels for several mutations.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4603 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/mutation.cc')
-rw-r--r--crawl-ref/source/mutation.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/crawl-ref/source/mutation.cc b/crawl-ref/source/mutation.cc
index c4c2b4e265..f3db92c128 100644
--- a/crawl-ref/source/mutation.cc
+++ b/crawl-ref/source/mutation.cc
@@ -1547,12 +1547,16 @@ static int calc_mutation_amusement_value(mutation_type which_mutation)
case MUT_CLEVER:
case MUT_AGILE:
case MUT_POISON_RESISTANCE:
+ case MUT_SHOCK_RESISTANCE:
+ case MUT_SLOW_METABOLISM:
case MUT_TELEPORT_CONTROL:
case MUT_MAGIC_RESISTANCE:
case MUT_TELEPORT_AT_WILL:
case MUT_MAPPING:
case MUT_CLARITY:
case MUT_MUTATION_RESISTANCE:
+ case MUT_ROBUST:
+ case MUT_HIGH_MAGIC:
amusement /= 2; // not funny
break;
@@ -1567,14 +1571,12 @@ static int calc_mutation_amusement_value(mutation_type which_mutation)
case MUT_DEFORMED:
case MUT_SPIT_POISON:
case MUT_BREATHE_FLAMES:
- case MUT_BLINK:
case MUT_HORNS:
case MUT_SCREAM:
case MUT_BERSERK:
case MUT_DETERIORATION:
case MUT_BLURRY_VISION:
case MUT_FRAIL:
- case MUT_LOW_MAGIC:
case MUT_CLAWS:
case MUT_FANGS:
case MUT_HOOVES:
@@ -1584,6 +1586,7 @@ static int calc_mutation_amusement_value(mutation_type which_mutation)
case MUT_BIG_WINGS:
case MUT_BLUE_MARKS:
case MUT_GREEN_MARKS:
+ case MUT_LOW_MAGIC:
amusement *= 2; // funny!
break;