From ebfbb6fbb71da74b891711361ce8191a1f60a7b6 Mon Sep 17 00:00:00 2001 From: Stefan O'Rear Date: Wed, 28 Oct 2009 20:30:50 -0700 Subject: Give deep dwarves passive, not active mapping Signed-off-by: Robert Vollmert --- crawl-ref/source/newgame.cc | 4 ++-- crawl-ref/source/player.cc | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc index e36fa10a01..df214075d7 100644 --- a/crawl-ref/source/newgame.cc +++ b/crawl-ref/source/newgame.cc @@ -1541,8 +1541,8 @@ void give_basic_mutations(species_type speci) you.mutation[MUT_NEGATIVE_ENERGY_RESISTANCE] = 3; break; case SP_DEEP_DWARF: - you.mutation[MUT_SLOW_HEALING] = 3; - you.mutation[MUT_MAPPING] = 2; + you.mutation[MUT_SLOW_HEALING] = 3; + you.mutation[MUT_PASSIVE_MAPPING] = 1; break; case SP_GHOUL: you.mutation[MUT_TORMENT_RESISTANCE] = 1; diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc index a22fc84079..6c7d146ab5 100644 --- a/crawl-ref/source/player.cc +++ b/crawl-ref/source/player.cc @@ -3131,6 +3131,12 @@ void level_change(bool skip_attribute_increase) perma_mutate(MUT_NEGATIVE_ENERGY_RESISTANCE, 1); } + if ((you.experience_level == 9) + || (you.experience_level == 18)) + { + perma_mutate(MUT_PASSIVE_MAPPING, 1); + } + if (!(you.experience_level % 4)) { modify_stat(coinflip() ? STAT_STRENGTH -- cgit v1.2.3-54-g00ecf