You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.5 KiB
61 lines
1.5 KiB
-- NetHack Monk Mon-filb.lua $NHDT-Date: 1652196006 2022/05/10 15:20:06 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.1 $
|
|
-- 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({ class = "X", peaceful=0 })
|
|
end
|
|
})
|
|
|
|
des.room({ type = "ordinary",
|
|
contents = function()
|
|
des.object()
|
|
des.object()
|
|
des.monster({ class = "X", peaceful=0 })
|
|
end
|
|
})
|
|
|
|
des.room({ type = "ordinary",
|
|
contents = function()
|
|
des.object()
|
|
des.trap()
|
|
des.object()
|
|
des.monster({ class = "E", peaceful=0 })
|
|
end
|
|
})
|
|
|
|
des.room({ type = "ordinary",
|
|
contents = function()
|
|
des.stair("down")
|
|
des.object()
|
|
des.trap()
|
|
des.monster({ class = "E", peaceful=0 })
|
|
des.monster("earth elemental")
|
|
end
|
|
})
|
|
|
|
des.room({ type = "ordinary",
|
|
contents = function()
|
|
des.object()
|
|
des.object()
|
|
des.trap()
|
|
des.monster({ class = "X", peaceful=0 })
|
|
end
|
|
})
|
|
|
|
des.room({ type = "ordinary",
|
|
contents = function()
|
|
des.object()
|
|
des.trap()
|
|
des.monster("earth elemental")
|
|
end
|
|
})
|
|
|
|
des.random_corridors()
|