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, 8 insertions, 0 deletions
diff --git a/crawl-ref/source/mstuff2.cc b/crawl-ref/source/mstuff2.cc
index 20e87d6951..3ee102096f 100644
--- a/crawl-ref/source/mstuff2.cc
+++ b/crawl-ref/source/mstuff2.cc
@@ -1070,6 +1070,14 @@ void setup_dragon(struct monsters *monster, struct bolt &pbolt)
pbolt.aux_source = "blast of chilling breath";
scaling = 65;
break;
+
+ case MONS_PLAYER_GHOST: // draconians only
+ pbolt.name += "blast of negative energy";
+ pbolt.flavour = BEAM_NEG;
+ pbolt.colour = DARKGREY;
+ pbolt.aux_source = "blast of draining breath";
+ scaling = 65;
+ break;
default:
DEBUGSTR("Bad monster class in setup_dragon()");