summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abyss.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-08-18 19:27:07 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-08-18 19:27:07 +0000
commite00fd0d4e369ae44a7a2fb7af3cf801674aa43af (patch)
tree67cbac8f41e6e257ed8bb6505a05a55d171136f6 /crawl-ref/source/abyss.cc
parent2380cbb78d346fa9413c739eeaf20e3171b04221 (diff)
downloadcrawl-ref-e00fd0d4e369ae44a7a2fb7af3cf801674aa43af.tar.gz
crawl-ref-e00fd0d4e369ae44a7a2fb7af3cf801674aa43af.zip
Increase initial flood of neutral monsters when invoking Corruption.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2017 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/abyss.cc')
-rw-r--r--crawl-ref/source/abyss.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/abyss.cc b/crawl-ref/source/abyss.cc
index 6530860575..5efd92fa94 100644
--- a/crawl-ref/source/abyss.cc
+++ b/crawl-ref/source/abyss.cc
@@ -390,7 +390,7 @@ static void initialise_level_corrupt_seeds(int power)
#endif
// The corruption centered on the player is free.
- place_corruption_seed(you.pos(), high + 100);
+ place_corruption_seed(you.pos(), high + 300);
for (int i = 0; i < nseeds; ++i)
{
@@ -400,7 +400,7 @@ static void initialise_level_corrupt_seeds(int power)
while (!in_bounds(where) || grd(where) != DNGN_FLOOR
|| env.markers.find(where, MAT_ANY));
- place_corruption_seed(where, random_range(low, high, 2));
+ place_corruption_seed(where, random_range(low, high, 2) + 300);
}
}
@@ -655,7 +655,7 @@ bool lugonu_corrupt_level(int power)
env.markers.activate_all(false);
corrupt_level_features(*abyssal);
- run_corruption_effects(100);
+ run_corruption_effects(300);
you.flash_colour = EC_MUTAGENIC;
viewwindow(true, false);