60 lines
1.4 KiB
Lua
60 lines
1.4 KiB
Lua
-- NetHack 3.7 Arch.des $NHDT-Date: 1432512784 2015/05/25 00:13:04 $ $NHDT-Branch: master $:$NHDT-Revision: 1.10 $
|
|
-- Copyright (c) 1989 by Jean-Christophe Collet
|
|
-- Copyright (c) 1991 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("M")
|
|
end
|
|
})
|
|
|
|
des.room({ type = "ordinary",
|
|
contents = function()
|
|
des.object()
|
|
des.object()
|
|
des.monster("M")
|
|
end
|
|
})
|
|
|
|
des.room({ type = "ordinary",
|
|
contents = function()
|
|
des.object()
|
|
des.trap()
|
|
des.object()
|
|
des.monster("M")
|
|
end
|
|
})
|
|
|
|
des.room({ type = "ordinary",
|
|
contents = function()
|
|
des.stair("down")
|
|
des.object()
|
|
des.trap()
|
|
des.monster("S")
|
|
des.monster("human mummy")
|
|
end
|
|
})
|
|
|
|
des.room({ type = "ordinary",
|
|
contents = function()
|
|
des.object()
|
|
des.object()
|
|
des.trap()
|
|
des.monster("S")
|
|
end
|
|
})
|
|
|
|
des.room({ type = "ordinary",
|
|
contents = function()
|
|
des.object()
|
|
des.trap()
|
|
des.monster("S")
|
|
end
|
|
})
|
|
|
|
des.random_corridors()
|