summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-stuff.cc
diff options
context:
space:
mode:
authorJude Brown <bookofjude@users.sourceforge.net>2010-01-08 18:11:56 +1000
committerJude Brown <bookofjude@users.sourceforge.net>2010-01-08 18:26:54 +1000
commit10cf7d676b89f57422dac9d90c4464b66f95cff1 (patch)
tree4ad11727d2f91de869d10ee1d017db66a3a0c363 /crawl-ref/source/mon-stuff.cc
parent05f50c3e652ca97ad5602bd4b2dbc7ae016842eb (diff)
downloadcrawl-ref-10cf7d676b89f57422dac9d90c4464b66f95cff1.tar.gz
crawl-ref-10cf7d676b89f57422dac9d90c4464b66f95cff1.zip
Give Dowan Throw Icicle/Stone Arrow instead.
Fireball is an XL6 spell, and with HD3, that means 3d10 damage per hit. With haste, this makes it slightly overpowered. It's a great theme and I like the idea, but unfortunately Fireball is just too deadly in this context.
Diffstat (limited to 'crawl-ref/source/mon-stuff.cc')
-rw-r--r--crawl-ref/source/mon-stuff.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/mon-stuff.cc b/crawl-ref/source/mon-stuff.cc
index b278dbb736..bd8b520ed4 100644
--- a/crawl-ref/source/mon-stuff.cc
+++ b/crawl-ref/source/mon-stuff.cc
@@ -1162,9 +1162,9 @@ static void _elven_twin_died(monsters* twin, bool in_transit)
else
monster->props["dowan_upgrade"] = bool(true);
- monster->spells[0] = SPELL_FIREBALL;
+ monster->spells[0] = SPELL_THROW_ICICLE;
monster->spells[1] = SPELL_BLINK;
- monster->spells[3] = SPELL_FIREBALL;
+ monster->spells[3] = SPELL_STONE_ARROW;
monster->spells[4] = SPELL_HASTE;
// Nothing with 6.
}