summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mstuff2.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/mstuff2.cc')
-rw-r--r--crawl-ref/source/mstuff2.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/mstuff2.cc b/crawl-ref/source/mstuff2.cc
index d336af52f2..7d16255e7f 100644
--- a/crawl-ref/source/mstuff2.cc
+++ b/crawl-ref/source/mstuff2.cc
@@ -1959,8 +1959,8 @@ bolt mons_spells( monsters *mons, spell_type spell_cast, int power )
beam.is_beam = true;
break;
- case SPELL_ICE_BOLT:
- beam.name = "bolt of ice";
+ case SPELL_FLING_ICICLE:
+ beam.name = "shard of ice";
beam.damage = dice_def( 3, 8 + power / 11 );
beam.colour = WHITE;
beam.flavour = BEAM_ICE;
@@ -2147,9 +2147,9 @@ bolt mons_spells( monsters *mons, spell_type spell_cast, int power )
beam.flavour = BEAM_POISON;
break;
- case SPELL_BOLT_OF_IRON:
+ case SPELL_IRON_SHOT:
beam.colour = LIGHTCYAN;
- beam.name = "iron bolt";
+ beam.name = "iron shot";
beam.damage = dice_def( 3, 8 + (power / 9) );
beam.hit = 20 + (power / 25);
beam.type = dchar_glyph(DCHAR_FIRED_MISSILE);