mud/
mud/2.4.5/dgd/include/
mud/2.4.5/dgd/std/
mud/2.4.5/dgd/sys/
mud/2.4.5/doc/
mud/2.4.5/doc/examples/
mud/2.4.5/log/
mud/2.4.5/obj/Go/
mud/2.4.5/players/
mud/2.4.5/players/lars/
mud/2.4.5/room/death/
mud/2.4.5/room/maze1/
mud/2.4.5/room/post_dir/
mud/2.4.5/room/sub/
#include "room.h"
object wolf;

#undef EXTRA_RESET
#define EXTRA_RESET\
    if (!wolf) {\
	wolf = clone_object("obj/monster");\
	call_other(wolf, "set_name", "wolf");\
	call_other(wolf, "set_level", 3);\
	call_other(wolf, "set_short", "A wolf");\
	call_other(wolf, "set_long", "A grey wolf running around. It has\n" +\
		   "some big dangerous teeth.\n");\
	call_other(wolf, "set_wc", 7);\
	call_other(wolf, "set_move_at_reset");\
	call_other(wolf, "set_whimpy");\
	move_object(wolf, "room/ruin");\
    }

TWO_EXIT("room/clearing", "south",
	 "room/plane2", "north",
	 "A large open plain",
	 "A large open plain, extending to north and south.\n", 1)