Files
nethack/dat/Pri-filb.lua
T
2026-06-20 18:35:38 -04:00

63 lines
1.5 KiB
Lua

-- NetHack Priest Pri-filb.lua $NHDT-Date: 1781994870 2026/06/20 22:34:30 $ $NHDT-Branch: NetHack-5.0 $:$NHDT-Revision: 1.2 $
-- Copyright (c) 1989 by Jean-Christophe Collet
-- Copyright (c) 1991-2 by M. Stephenson
-- NetHack may be freely redistributed. See license for details.
--
--
des.room({ type = "ordinary",
contents = function()
des.stair("up")
des.object()
des.monster("human zombie")
des.monster("wraith")
end
})
des.room({ type = "morgue",
contents = function()
des.object()
des.object()
des.object()
end
})
des.room({ type = "ordinary",
contents = function()
des.object()
des.trap()
des.object()
des.monster("human zombie")
des.monster("wraith")
end
})
des.room({ type = "morgue",
contents = function()
des.stair("down")
des.object()
des.object()
des.trap()
end
})
des.room({ type = "ordinary",
contents = function()
des.object()
des.object()
des.trap()
des.monster("human zombie")
des.monster("wraith")
end
})
des.room({ type = "morgue",
contents = function()
des.object()
des.trap()
end
})
des.random_corridors()