summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-pick.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-09-13 10:50:38 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-09-13 10:50:38 +0000
commitdf1ad0a3b4c71a9273461aca8abd29fc30be544a (patch)
tree35e16747eaf39b7c70cd2bf490cafef46b11d0e4 /crawl-ref/source/mon-pick.cc
parentbfa4a6fb7aba3802a11730797319ac11dcdb9aa0 (diff)
downloadcrawl-ref-df1ad0a3b4c71a9273461aca8abd29fc30be544a.tar.gz
crawl-ref-df1ad0a3b4c71a9273461aca8abd29fc30be544a.zip
Shorten Lair to 8 levels.
In monster generation I collapsed monsters of Lair:1-2 to Lair:1 and Lair:3-4 to Lair:2, with the rest following as usual. Monster weights have *not* been changed. The subbranch entrances are now as follows: Swamp/Shoals: 2-5 Snake : 3-6 Slime Pits : 5-8 git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10666 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/mon-pick.cc')
-rw-r--r--crawl-ref/source/mon-pick.cc22
1 files changed, 8 insertions, 14 deletions
diff --git a/crawl-ref/source/mon-pick.cc b/crawl-ref/source/mon-pick.cc
index 592a62f99b..b7f339abf3 100644
--- a/crawl-ref/source/mon-pick.cc
+++ b/crawl-ref/source/mon-pick.cc
@@ -1329,12 +1329,9 @@ int mons_lair_level(int mcls)
case MONS_GIANT_NEWT:
case MONS_RAT:
case MONS_QUOKKA:
- mlev += 0;
- break;
-
case MONS_GIANT_CENTIPEDE:
case MONS_GIANT_IGUANA:
- mlev++;
+ mlev += 0;
break;
case MONS_GIANT_FROG:
@@ -1342,12 +1339,9 @@ int mons_lair_level(int mcls)
case MONS_GREY_RAT:
case MONS_HOUND:
case MONS_BLACK_BEAR:
- mlev += 2;
- break;
-
case MONS_WORM:
case MONS_WOLF:
- mlev += 3;
+ mlev++;
break;
case MONS_FUNGUS:
@@ -1357,7 +1351,7 @@ int mons_lair_level(int mcls)
case MONS_GREEN_RAT:
case MONS_SCORPION:
case MONS_SNAKE:
- mlev += 4;
+ mlev += 2;
break;
case MONS_WATER_MOCCASIN:
@@ -1370,7 +1364,7 @@ int mons_lair_level(int mcls)
case MONS_WAR_DOG:
case MONS_YELLOW_WASP:
case MONS_BEAR:
- mlev += 5;
+ mlev += 3;
break;
case MONS_BLINK_FROG:
@@ -1383,7 +1377,7 @@ int mons_lair_level(int mcls)
case MONS_WOLF_SPIDER:
case MONS_YAK:
case MONS_GRIZZLY_BEAR:
- mlev += 6;
+ mlev += 4;
break;
case MONS_BLACK_MAMBA:
@@ -1395,7 +1389,7 @@ int mons_lair_level(int mcls)
case MONS_WYVERN:
case MONS_TRAPDOOR_SPIDER:
case MONS_ROCK_WORM:
- mlev += 7;
+ mlev += 5;
break;
case MONS_ELEPHANT_SLUG:
@@ -1404,14 +1398,14 @@ int mons_lair_level(int mcls)
case MONS_LINDWURM:
case MONS_REDBACK:
case MONS_WANDERING_MUSHROOM:
- mlev += 8;
+ mlev += 6;
break;
case MONS_BORING_BEETLE:
case MONS_BOULDER_BEETLE:
case MONS_DEATH_YAK:
case MONS_SPINY_WORM:
- mlev += 9;
+ mlev += 7;
break;
default: