summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-cast.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-04-06 14:44:13 +0100
committerChris Campbell <chriscampbell89@gmail.com>2014-04-06 15:15:55 +0100
commitf05f59790becf1029830414ba3b4c40d8ff296a1 (patch)
treeeb0fe00611a33dbccaa579ad8c3266f83ba66cb3 /crawl-ref/source/mon-cast.cc
parent7799525b80145bd2a7b65cb7c7d2b5068f0ebdbf (diff)
downloadcrawl-ref-f05f59790becf1029830414ba3b4c40d8ff296a1.tar.gz
crawl-ref-f05f59790becf1029830414ba3b4c40d8ff296a1.zip
Improve some spellcasting messages
Use normal beam messages for flame tongue, adjust Arachne messages (PleasingFungus), make Rupert's targeted spells more generic so that they are still accurate when resisted.
Diffstat (limited to 'crawl-ref/source/mon-cast.cc')
-rw-r--r--crawl-ref/source/mon-cast.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/mon-cast.cc b/crawl-ref/source/mon-cast.cc
index 01989b8728..364238c9eb 100644
--- a/crawl-ref/source/mon-cast.cc
+++ b/crawl-ref/source/mon-cast.cc
@@ -431,7 +431,7 @@ bolt mons_spell_beam(monster* mons, spell_type spell_cast, int power,
break;
case SPELL_FLAME_TONGUE:
- beam.name = "flame";
+ beam.name = "flame tongue";
beam.damage = dice_def(3, 3 + power / 12);
beam.colour = RED;
beam.flavour = BEAM_FIRE;
@@ -931,7 +931,7 @@ bolt mons_spell_beam(monster* mons, spell_type spell_cast, int power,
break;
case SPELL_ENSNARE:
- beam.name = "ensnaring beam";
+ beam.name = "stream of webbing";
beam.colour = WHITE;
beam.glyph = dchar_glyph(DCHAR_FIRED_MISSILE);
beam.flavour = BEAM_ENSNARE;