summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-06-18 08:29:55 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-06-18 08:29:55 +0000
commit5233dde1ad2b6c28cf9fd04735b4d2d37ce9af57 (patch)
tree909eac2bb019b18b83a8873f5112d09eeb37734b /crawl-ref/source
parent202497a639549dce3ca76c6c50a3f579fb450b26 (diff)
downloadcrawl-ref-5233dde1ad2b6c28cf9fd04735b4d2d37ce9af57.tar.gz
crawl-ref-5233dde1ad2b6c28cf9fd04735b4d2d37ce9af57.zip
reordering Beogh band difficulty
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1597 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/religion.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 52b1c4a215..cc817cf726 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -1985,17 +1985,17 @@ void divine_retribution( god_type god )
default: // send orcs after you (5/8)
{
- int points = you.experience_level * 2 + 3
+ int points = you.experience_level + 3
+ random2(you.experience_level * 3);
// "natural" bands
- if (points >= 30) // min: lvl 6, always: lvl 15
+ if (points >= 30) // min: lvl 7, always: lvl 27
+ punisher = MONS_ORC_WARLORD;
+ else if (points >= 24) // min: lvl 6, always: lvl 21
punisher = MONS_ORC_HIGH_PRIEST;
- else if (points >= 24) // min: lvl 5, always: lvl 11
+ else if (points >= 18) // min: lvl 4, always: lvl 15
punisher = MONS_ORC_KNIGHT;
- else if (points >= 18) // min: lvl 4, always: lvl 8
- punisher = MONS_ORC_WARLORD;
- else if (points >= 12) // min: lvl 2, always: lvl 5
+ else if (points > 10) // min: lvl 3, always: lvl 8
punisher = MONS_ORC_WARRIOR;
else
punisher = MONS_ORC;