summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godwrath.cc
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2014-02-28 21:12:13 -0700
committerSteve Melenchuk <smelenchuk@gmail.com>2014-02-28 21:12:13 -0700
commit175aae5ce83897128d9269ff0f4a69c9be28be7b (patch)
treebf906729e4def8c7fb6a69f9ffa2e6cace283aba /crawl-ref/source/godwrath.cc
parent072c9d39bcef533811a0c5248ba983e292bed6dd (diff)
downloadcrawl-ref-175aae5ce83897128d9269ff0f4a69c9be28be7b.tar.gz
crawl-ref-175aae5ce83897128d9269ff0f4a69c9be28be7b.zip
Treat Dith's shadow creature wrath like Weave Shadows.
That is, the summons are picked from D:<XL + 5>, similar to the scaling of the rod of shadows with XL (only out-of-depth like a 9).
Diffstat (limited to 'crawl-ref/source/godwrath.cc')
-rw-r--r--crawl-ref/source/godwrath.cc10
1 files changed, 7 insertions, 3 deletions
diff --git a/crawl-ref/source/godwrath.cc b/crawl-ref/source/godwrath.cc
index ff7f37558c..5f9a7de77e 100644
--- a/crawl-ref/source/godwrath.cc
+++ b/crawl-ref/source/godwrath.cc
@@ -1407,9 +1407,13 @@ static bool _dithmenos_retribution()
for (int i = 0; i < how_many; ++i)
{
if (create_monster(
- mgen_data::hostile_at(
- RANDOM_MOBILE_MONSTER, "the darkness of Dithmenos",
- true, 4, MON_SUMM_WRATH, you.pos(), 0, god)))
+ mgen_data(
+ RANDOM_MOBILE_MONSTER, BEH_HOSTILE, 0,
+ 4, MON_SUMM_WRATH, you.pos(), MHITYOU, 0, god,
+ MONS_NO_MONSTER, 0, BLACK, PROX_ANYWHERE,
+ level_id(BRANCH_DUNGEON,
+ min(27, you.experience_level + 5)),
+ 0, 0, 0, "", "the darkness of Dithmenos")))
{
count++;
}