summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-place.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2009-12-22 15:18:16 +0100
committerAdam Borowski <kilobyte@angband.pl>2009-12-22 15:18:16 +0100
commitb0c8e0751e6798c6686f3a62867aee7fbfef5797 (patch)
tree82cbf2d71a1ae7d40a0632b05ac0340b558c41ad /crawl-ref/source/mon-place.cc
parentbc3529421a5b0713eb2c4966b244a93542b62c18 (diff)
downloadcrawl-ref-b0c8e0751e6798c6686f3a62867aee7fbfef5797.tar.gz
crawl-ref-b0c8e0751e6798c6686f3a62867aee7fbfef5797.zip
Add sixfirhies to summon_any_demon(), with a 3% chance in the middle tier.
Diffstat (limited to 'crawl-ref/source/mon-place.cc')
-rw-r--r--crawl-ref/source/mon-place.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/mon-place.cc b/crawl-ref/source/mon-place.cc
index a4273c6a7c..9faa371cb8 100644
--- a/crawl-ref/source/mon-place.cc
+++ b/crawl-ref/source/mon-place.cc
@@ -2927,8 +2927,9 @@ monster_type summon_any_demon(demon_class_type dct)
break;
case DEMON_COMMON:
- temp_rand = random2(3948);
- mon = ((temp_rand > 3367) ? MONS_NEQOXEC : // 14.69%
+ temp_rand = random2(4066);
+ mon = ((temp_rand > 3947) ? MONS_SIXFIRHY : // 3.00%
+ (temp_rand > 3367) ? MONS_NEQOXEC : // 14.69%
(temp_rand > 2787) ? MONS_ORANGE_DEMON : // 14.69%
(temp_rand > 2207) ? MONS_HELLWING : // 14.69%
(temp_rand > 1627) ? MONS_SMOKE_DEMON : // 14.69%