summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monplace.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monplace.cc')
-rw-r--r--crawl-ref/source/monplace.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/crawl-ref/source/monplace.cc b/crawl-ref/source/monplace.cc
index 1759dea158..f15b363918 100644
--- a/crawl-ref/source/monplace.cc
+++ b/crawl-ref/source/monplace.cc
@@ -1799,6 +1799,11 @@ static band_type _choose_band(int mon_type, int power, int &band_size)
band = BAND_AZRAEL;
band_size = 4 + random2(5);
break;
+
+ case MONS_DUVESSA:
+ band = BAND_DUVESSA;
+ band_size = 1;
+ break;
} // end switch
if (band != BAND_NO_BAND && band_size == 0)
@@ -2097,6 +2102,10 @@ static monster_type _band_member(band_type band, int power)
mon_type = coinflip()? MONS_FIRE_ELEMENTAL : MONS_HELL_HOUND;
break;
+ case BAND_DUVESSA:
+ mon_type = MONS_DOWAN;
+ break;
+
default:
break;
}