summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monplace.cc
diff options
context:
space:
mode:
authorevktalo <evktalo@c06c8d41-db1a-0410-9941-cceddc491573>2009-08-19 14:55:09 +0000
committerevktalo <evktalo@c06c8d41-db1a-0410-9941-cceddc491573>2009-08-19 14:55:09 +0000
commit309425214082f560faa1d32b1d834644e0d4464d (patch)
treee51b9fcaf095c8d03309db6d713836c4c7a6959c /crawl-ref/source/monplace.cc
parenta0ac735b25ccb42e5576c610527724bf7a17e090 (diff)
downloadcrawl-ref-309425214082f560faa1d32b1d834644e0d4464d.tar.gz
crawl-ref-309425214082f560faa1d32b1d834644e0d4464d.zip
Apply patch #2838024 by bookofjude: new Elven twins uniques, Duvessa and Dowan. I'll do the tiles later.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10578 c06c8d41-db1a-0410-9941-cceddc491573
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;
}