inherit "room/room";
#include "../asgard.h"

#ifndef WAYS
#define WAYS ({ }) 
#endif
#ifndef LONG_DESC
#define LONG_DESC ""
#endif


reset (int arg)
{ ::reset(arg);
  if(arg) return 0;

  set_light(1);
  short_desc="Mountains of Asgard.",
  long_desc="Mountains of Asgard.\n"+
            "You are in the high mountains of Asgard. Surrounded\n"+
            "by high cliffs and deep canyons you do not feel very\n"+
            "happy. To the west you recognize a small hut placed in\n"+
            "the entrance of a small cave.\n";


  items=({
           "mountains","They are really high",
           "hut","It's far in the west",
         });

   smell="The air smells fresh in here";

   dest_dir=WAYS;
}
