summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dat/hells.des
diff options
context:
space:
mode:
authorMatthew Cline <zelgadis@sourceforge.net>2009-11-08 23:43:22 -0800
committerMatthew Cline <zelgadis@sourceforge.net>2009-11-08 23:44:52 -0800
commitb06c289636354686e9bd6b60024f4526af3bb118 (patch)
tree37f3471268ffa6cf1f3864a1d345119c179290ea /crawl-ref/source/dat/hells.des
parentdce267d966c2a6466ebc57f84dccda7fa5012a75 (diff)
downloadcrawl-ref-b06c289636354686e9bd6b60024f4526af3bb118.tar.gz
crawl-ref-b06c289636354686e9bd6b60024f4526af3bb118.zip
item_pickup_change_flags: "auto" item name
item_pickup_change_flags (and the underlying DgnTriggerable) can take the item name "auto", in which case it automatically picks the item placed on top of the marker.
Diffstat (limited to 'crawl-ref/source/dat/hells.des')
-rw-r--r--crawl-ref/source/dat/hells.des8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/dat/hells.des b/crawl-ref/source/dat/hells.des
index 1ff9800efa..ebe246c828 100644
--- a/crawl-ref/source/dat/hells.des
+++ b/crawl-ref/source/dat/hells.des
@@ -10,7 +10,7 @@ function dis_setup(e)
e.tags(no_rotate)
e.lflags("no_tele_control")
e.lua_marker('O', item_pickup_change_flags {
- level_flags="!no_tele_control", item="iron rune of Zot" } )
+ level_flags="!no_tele_control", item="auto" } )
-- turn granite statues into iron statues
-- you still have to colour the statues, if desired
dgn.set_feature_desc_short("granite statue", "iron statue")
@@ -23,7 +23,7 @@ function geh_setup(e)
e.tags(no_rotate)
e.lflags("no_tele_control")
e.lua_marker('O', item_pickup_change_flags {
- level_flags="!no_tele_control", item="obsidian rune of Zot" } )
+ level_flags="!no_tele_control", item="auto" } )
e.lrockcol("brown")
e.lfloorcol("darkgrey")
-- e.lrocktile("???")
@@ -42,7 +42,7 @@ function coc_setup(e)
e.tags(no_rotate)
e.lflags("no_tele_control")
e.lua_marker('O', item_pickup_change_flags {
- level_flags="!no_tele_control", item="icy rune of Zot" } )
+ level_flags="!no_tele_control", item="auto" } )
e.lrockcol("lightgrey")
e.lfloorcol("white")
-- e.lrocktile("???")
@@ -62,7 +62,7 @@ function tar_setup(e)
e.tags(no_rotate)
e.lflags("no_tele_control")
e.lua_marker('O', item_pickup_change_flags {
- level_flags="!no_tele_control", item="bone rune of Zot" } )
+ level_flags="!no_tele_control", item="auto" } )
end
}}