summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
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)
{{