/
lib/banish/
lib/d/
lib/doc/
lib/doc/domains/
lib/doc/efun/
lib/doc/examples/
lib/doc/examples/armour/
lib/doc/examples/contain/
lib/doc/examples/food/
lib/doc/examples/magic/
lib/doc/examples/monster/
lib/doc/examples/room/
lib/doc/examples/weapons/
lib/function/
lib/include/
lib/include/fn_specs/
lib/include/skills/
lib/info/
lib/inherit/base/
lib/log/
lib/manuals/312/
lib/news/
lib/obj/party/
lib/objects/components/
lib/open/
lib/open/library/
lib/open/party/
lib/players/
lib/players/zilanthius/
lib/room/
lib/room/city/arena/
lib/room/city/creator/
lib/room/city/garden/monst/
lib/room/city/obj/
lib/room/city/shop/
lib/room/death/
lib/room/registry/
lib/secure/
lib/secure/UDP_CMD_DIR/
lib/skills/
lib/skills/fighter/
lib/skills/thief/
lib/usr/
lib/usr/creators/
lib/usr/players/
/* Cleric of the All-God
 * Angel, October 1993.
 */

object robe, symb;

inherit "inherit/monster";

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

  set_name("cleric");
  set_short("A cleric of the All-God");
  set_long("This is a devout follower of the All-God.\n");
  set_gender(random(2) + 1);
  set_level(5);
  set_wc(9);
  set_ac(5);
  set_hp(100);
  set_al(300 + random(200));
  load_chat(9, ({ "Cleric asks: Do you know the one true way, my friend?\n",
     "Cleric asks: Who do you seek, my child?\n",
     "Cleric smiles peacefully.\n",
     "Cleric prays a silent prayer.\n",
     "Cleric looks toward the heavens for spiritual guidance.\n"
  }));
  load_a_chat(10, ({ "Cleric exclaims: How dare you!\n",
     "Cleric says: This is blasphemy.\n",
     "Cleric prays a silent prayer.\n",
     "Cleric cries out in pain.\n",
     "Cleric calls for divine aid.\n",
  }));

  load_spells(2, ({ "clw"}));
  set_race("human");

  robe = clone_object("inherit/clothing");
  robe -> set_name("robe");
  robe -> set_alias("robes");
  robe -> set_short("white clerical robes");
  robe -> set_long("The bear the symbol of the All-God upon them.\n");
  robe -> set_value(50);
  robe -> set_sell_destruct(1);
  robe -> set_weight(1);
  move_object(robe, this_object());
  init_command("wear robe");

  symb = clone_object("inherit/clothing");
  symb -> set_name("holy symbol");
  symb -> set_alias("symbol");
  symb -> set_short("A platinum holy symbol");
  symb -> set_weight(1);
  symb -> set_sell_destruct(1);
  symb -> set_value(20 + random(100));
  symb -> set_long(
     "This holy symbol bears silver dragons looped in a figure eight, each\n"+
     "chasing the others tail. This is the symbol of the All-God that his \n"+
     "clerical follers wear. It appears to be made of platinum.\n");
  move_object(symb, this_object());
  init_command("wear symbol");
}