inherit"room/newroom";

object book,board;

reset(ar)
{
  if(ar) return;
  book=clone_object("players/auronthas/spells/book1");
/*  board=clone_object("players/auronthas/obj/black_board");*/
  move_object(book,this_object());
/*  move_object(board,this_object());*/
  short_desc="a lecture hall";
  long_desc=
    "You have come to a lecture hall for novice magicians.\n"+
    "There is a window high up on the wall, with fresh air blowing\n"+
    "in, making this a place you can clear your thoughts. :)\n"+
    "This is where for novices come to study and learn spells.\n";
  no_castle_flag=1;
  add_property("indoors");
  set_light(1);
  items=({
    "walls",
    "They look like being made of marble",
    "rocks",
    "The rocks are glowing with a magical light",
    "rock",
    "Several rocks are glowing",
  });
  dest_dir=({ 
    "east","players/auronthas/rooms/lyceum/corridor2",0,
    });
/*  distances=({ 1 });*/
}