// 
// Summary: Kutharin Shrine
// Created by Rhakz - Angel Cazares
// For Baria
// Date: 10/16/98
//
#include <lib.h>
#include "../jungle.h"
inherit LIB_CHAPEL;

static void create() {
  chapel::create();
  SetShort("the Shrine of Kuthar");
  SetLong("This is an enormous, circular-shaped hut that serves as "
          "a shrine for the "
          "Kutharians. Several half-destroyed paintings of dragons "
          "fill the wall of the hut, which is decorated with a large "
          "and worn rug covering the ground that seems to be made out "
          "of dragon scales. "
          "There is a wooden ladder attached to a hatch above "
          "to climb to the second level of this huge hut, it also "
          "goes down to the draconian lair.");
  SetClimate("indoors");
  SetAmbientLight(50);
  SetTown("Baria");
  SetReligion("Kuthar");
  SetClasses( ({ "cleric", "shaman" }) );
  SetItems( ([
              ({"wall"}) : "The circular wall is made of wood and tree "
                           "leaves. From it, several paintings and "
                           "drawings of dragons hang.",
              ({"painting","paintings",
                "drawing","drawings"}) : "These are hand-made "
                                         "paintings and drawings of "
                                         "dragons. Some of them are "
                                         "in a really bad shape.",
              ({"rug"}) : "This is a very strange and worn down rug "
                          "made out of "
                          "skin of some animal, and it is covered "
                          "with what appears to be dragon scales.",
              ({"ground"}) : "The ground is covered by a large rug.",
              ({"hatch"}) : "This hatch leads into the second level "
                            "of the hut.",
              ({"candles","candle"}) : "Several green candles are "
                                       "placed around the statue.",
              ({"altar"}) : "A beautiful altar made from the purest "
                            "green jade.",
              ({"hut"}) : (: GetLong:)
           ]) );
  SetItemAdjectives( ([
                       "wall" : ({"circular"}),
                       "painting" : ({"hand-made"}),
                       "rug" : ({"strange","large"}),
                       "ladder" : ({"wooden"}),
                       "candles" : ({"green"}),
                       "hut" : ({"circular","enormous","huge"}),
                       "altar" : ({"jade","green"})
                   ]) );
  SetInventory( ([
                  BARIA_NPC + "creb" : 1,
                  BARIA_NPC + "sardaukar" : 1,
                  BARIA_OBJ + "lair_ladder2" : 1,
                  BARIA_NPC + "kanek" : 1,
              ]) );
  SetExits( ([
              "out" : BARIA_ROOM + "path12",
              "south" : BARIA_ROOM + "cemetery"
          ]) );
  SetNewsgroups( ({ "religion.kuthar" }) );
  SetListen( ([ "default" : "There is a faint humming in the air." ]) );
  SetSmell( ([ "default" : "A strange fragrance perfumes the hut." ]) );
}



