/
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/
#include <mudlib.h>
inherit ROOM;

void reset(status arg) {
  reset_doors(arg);
  load_door(({
     "file", "room/city/alchemist",
     "direction", "west door",
     "key id", "city key",
     "long",
          "A tall red door with a tiny peek hole in the center.\n",
  }));

  if(arg) return;
  set_short("Market Street");
  set_long(
     "\tMarket Street\n"+
     "Fine grey cobblestones line the way up and down the long \n"+
     "busy market street; a place where all kinds of business  \n"+
     "takes place. There is a large sign above the door of the \n"+
     "shop to the west of the street; a fine house with a red  \n"+
     "roof. ");
  set_items(({
     "cobblestones",
          "A strange grey cobblestone, possibly worked from the \n"+
          "dwarvish mines to the far north",
     "sign",
          "Perhaps you could read it?",
     "house",
          "A tall, cousy, two story house",
     "roof",
          "The roof is painted a bright red colour!",
  }));
  set_weather(1,1,0);
  set_exits(({
     "room/city/main_st3", "north",
     "room/city/market3",  "south",
  }));
}

void init() {
  ::init();
  add_action("read", "read");
}

status read(string str) {
  string tmp1, tmp2;
  if(sscanf(str, "%ssign%s", tmp1, tmp2)) {
     write(
     "                        ******    \n"+
     "    The              **********   \n"+
     " A L C H E M I S T  **    ****    \n"+
     "                  -+-+-           \n"+
     " Potions brewed    | |            \n"+
     "                   |_|            \n");
    say(this_player()->query_name()+" reads the sign above the door.\n",
     this_player());
    return 1;
  }
  return 0;
}