summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/viewmap.cc
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2013-11-02 20:31:31 -0600
committerAdam Borowski <kilobyte@angband.pl>2013-11-12 06:41:06 +0100
commit1b62a5d5613b076a70117541fb9b0aa831dcf122 (patch)
treeb11ad58c0f1b8af3f10987b2c5846560cfe54e0a /crawl-ref/source/viewmap.cc
parentc7c129ded1e36e56fc4b992bc773c2d77c90be18 (diff)
downloadcrawl-ref-1b62a5d5613b076a70117541fb9b0aa831dcf122.tar.gz
crawl-ref-1b62a5d5613b076a70117541fb9b0aa831dcf122.zip
Transform the lower half of D into a new branch: the Depths.
D is now 16 levels (the unsealed part was 14 levels previously), and the Depths are six levels. Vaults is enterable from Depths:2-5; Abyss, Hell, and Pan portals are available for the entire length of the branch. Right now the monster set is identical to Vaults except for the absence of Vaults-specific humans. D's monster set has also been truncated, mainly on the out-of-depth front. It's my intent that this serve as a starting point for figuring out what monsters we want to split between the two branches.
Diffstat (limited to 'crawl-ref/source/viewmap.cc')
-rw-r--r--crawl-ref/source/viewmap.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/viewmap.cc b/crawl-ref/source/viewmap.cc
index ec70ce0d76..21bd6ac29f 100644
--- a/crawl-ref/source/viewmap.cc
+++ b/crawl-ref/source/viewmap.cc
@@ -202,6 +202,8 @@ bool is_feature(ucs_t feature, const coord_def& where)
case DNGN_ENTER_PANDEMONIUM:
case DNGN_EXIT_PANDEMONIUM:
case DNGN_TRANSIT_PANDEMONIUM:
+ case DNGN_ENTER_DEPTHS:
+ case DNGN_RETURN_FROM_DEPTHS:
case DNGN_ENTER_ZOT:
case DNGN_RETURN_FROM_ZOT:
return true;
@@ -302,6 +304,7 @@ static bool _is_feature_fudged(ucs_t feature, const coord_def& where)
case DNGN_EXIT_PORTAL_VAULT:
case DNGN_EXIT_ABYSS:
case DNGN_EXIT_PANDEMONIUM:
+ case DNGN_RETURN_FROM_DEPTHS:
case DNGN_RETURN_FROM_ZOT:
return true;
default:
@@ -317,6 +320,7 @@ static bool _is_feature_fudged(ucs_t feature, const coord_def& where)
case DNGN_ENTER_COCYTUS:
case DNGN_ENTER_TARTARUS:
case DNGN_TRANSIT_PANDEMONIUM:
+ case DNGN_ENTER_DEPTHS:
case DNGN_ENTER_ZOT:
return true;
default: