summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordploog <dploog@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-24 23:19:28 +0000
committerdploog <dploog@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-24 23:19:28 +0000
commitbe49ad27a08b4d5a5e347e6d8a2e6852f81c4a8b (patch)
tree32027d3cba7851aefba7775da34270bea2aff2a7 /crawl-ref
parent4f44b6cf91696e0a5a1e294b95e2275030ec6460 (diff)
downloadcrawl-ref-be49ad27a08b4d5a5e347e6d8a2e6852f81c4a8b.tar.gz
crawl-ref-be49ad27a08b4d5a5e347e6d8a2e6852f81c4a8b.zip
Ice Cave feature description, dstorigin and dstovermap.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7597 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/dat/descript/features.txt5
-rw-r--r--crawl-ref/source/dat/icecave.des8
2 files changed, 10 insertions, 3 deletions
diff --git a/crawl-ref/source/dat/descript/features.txt b/crawl-ref/source/dat/descript/features.txt
index a8e8e3e304..0f8a009b12 100644
--- a/crawl-ref/source/dat/descript/features.txt
+++ b/crawl-ref/source/dat/descript/features.txt
@@ -28,6 +28,11 @@ Also be warned that their nomadic lifestyle has taught these sellers to
appropriate any items an adventurer might leave behind, and then leave
quickly, probably to sell them elsewhere.
%%%%
+A frozen archway
+
+A permanent cold front seems to surround this portal. Whatever lives on the
+other side, they will be full of grim and arctic fury.
+%%%%
A fountain of clear blue water
'q'uaff to drink from this fountain. But it's far more pretty than useful, unless you're trying to fetch the Orb without eating, I guess.
diff --git a/crawl-ref/source/dat/icecave.des b/crawl-ref/source/dat/icecave.des
index 09152cad9b..f2f1016643 100644
--- a/crawl-ref/source/dat/icecave.des
+++ b/crawl-ref/source/dat/icecave.des
@@ -25,16 +25,18 @@
{{
function ice_cave_portal(e)
- e.marker([[O = lua:one_way_stair { desc = "A frozen archway",
- dst = "ice_cave",
+ e.marker([[O = lua:one_way_stair { desc = "A frozen archway",
+ dst = "ice_cave",
dstname = "Ice Cave",
+ dstovermap = "frozen archway",
+ dstorigin = "in an ice cave",
floor = "stone_arch" }]])
e.kfeat("O = enter_portal_vault")
e.colour("O = white")
end
}}
-# For destination (not entry) vaults, use the following line after all
+# For destination (not entry) vaults, use the following line after all
# substitutions have been performed:
# : ice_cave_colours(_G)
{{