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>2008-06-22 18:47:22 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-22 18:47:22 +0000
commit1b88ae75470d9067b240b5c6f7114228118e4ca7 (patch)
tree51acbf4798c81e346e859ef31497e069c88c0100 /crawl-ref/source/mon-pick.cc
parentb55ce56cc053eb98b9f187c3d9111ffb4db81edb (diff)
downloadcrawl-ref-1b88ae75470d9067b240b5c6f7114228118e4ca7.tar.gz
crawl-ref-1b88ae75470d9067b240b5c6f7114228118e4ca7.zip
Abolish item sacrifices for all gods except Nemelex, Zin and TSO. The
descriptions will have to be updated. If special cases are seen as invaluable part of that god's design, they should be reworked to not to ressemble grinding anymore and/or gain flavour. (Compare with Ely's weapon destruction or Trog's book burning.) Disallow merfolk monsters in the Swamp and reduce their "rare" probability in the main dungeon to that of flying skulls. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6046 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/mon-pick.cc')
-rw-r--r--crawl-ref/source/mon-pick.cc9
1 files changed, 2 insertions, 7 deletions
diff --git a/crawl-ref/source/mon-pick.cc b/crawl-ref/source/mon-pick.cc
index 381491fae1..2c28233d78 100644
--- a/crawl-ref/source/mon-pick.cc
+++ b/crawl-ref/source/mon-pick.cc
@@ -2123,8 +2123,6 @@ int mons_swamp_level(int mcls)
case MONS_SWAMP_DRAKE:
case MONS_WORM:
case MONS_SWAMP_WORM:
- case MONS_MERFOLK:
- case MONS_MERMAID:
mlev++;
break;
@@ -2202,7 +2200,6 @@ int mons_swamp_rare(int mcls)
return 61;
case MONS_SLIME_CREATURE:
- case MONS_MERFOLK:
return 54;
case MONS_SNAKE:
@@ -2684,8 +2681,6 @@ int mons_standard_level(int mcls)
case MONS_DEEP_ELF_MASTER_ARCHER:
return 33;
- case MONS_MERFOLK:
- case MONS_MERMAID:
case MONS_BIG_FISH:
case MONS_ELECTRICAL_EEL:
case MONS_GIANT_GOLDFISH:
@@ -2706,8 +2701,6 @@ int mons_standard_rare(int mcls)
{
switch (mcls)
{
- case MONS_MERFOLK:
- case MONS_MERMAID:
case MONS_BIG_FISH:
case MONS_ELECTRICAL_EEL:
case MONS_GIANT_GOLDFISH:
@@ -2742,6 +2735,8 @@ int mons_standard_rare(int mcls)
case MONS_SNAKE:
return 80;
+ case MONS_MERFOLK:
+ case MONS_MERMAID:
case MONS_FLYING_SKULL:
case MONS_SLIME_CREATURE:
return 75;