summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/newgame.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-25 15:15:33 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-25 15:15:33 +0000
commit038933c5364d09f01b7a99026aea6bafcf4dcc71 (patch)
tree3df0a5bfc590e22debb5ca8c0166e30aedf99699 /crawl-ref/source/newgame.cc
parent7f087da1e69cd6d4fd9b646eb3d3d9de49effa22 (diff)
downloadcrawl-ref-038933c5364d09f01b7a99026aea6bafcf4dcc71.tar.gz
crawl-ref-038933c5364d09f01b7a99026aea6bafcf4dcc71.zip
Make the tough skin mutation no longer count as a body-covering
mutation, and replace the hardcoded constant AC bonuses for ogres, centaurs, and trolls with equivalent levels of it. Also, reduce trolls' AC back to 3, since they've been getting 4 ever since gaining the fur mutation. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9214 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/newgame.cc')
-rw-r--r--crawl-ref/source/newgame.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index b9c0e38228..4a37f2dd9e 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -2873,6 +2873,7 @@ void give_basic_mutations(species_type speci)
you.mutation[MUT_SAPROVOROUS] = 1;
break;
case SP_OGRE:
+ you.mutation[MUT_TOUGH_SKIN] = 1;
you.mutation[MUT_FAST_METABOLISM] = 1;
you.mutation[MUT_SAPROVOROUS] = 1;
break;
@@ -2889,6 +2890,7 @@ void give_basic_mutations(species_type speci)
you.mutation[MUT_SLOW_METABOLISM] = 3;
break;
case SP_CENTAUR:
+ you.mutation[MUT_TOUGH_SKIN] = 3;
you.mutation[MUT_FAST] = 2;
you.mutation[MUT_DEFORMED] = 1;
you.mutation[MUT_FAST_METABOLISM] = 2;
@@ -2926,6 +2928,7 @@ void give_basic_mutations(species_type speci)
you.mutation[MUT_TALONS] = 1;
break;
case SP_TROLL:
+ you.mutation[MUT_TOUGH_SKIN] = 2;
you.mutation[MUT_REGENERATION] = 2;
you.mutation[MUT_FAST_METABOLISM] = 3;
you.mutation[MUT_SAPROVOROUS] = 2;