// /clone/shop/yangzhou_shop.c
// Last modified by winder 2003.10.20

inherit SHOP;

void create()
{
	if (!restore())
	{
	set("short", "");
	set("long", @LONG
ݳĵ̣װ޵൱£
ʮݷ󷽵ɡĻȴһ
ܾûˡ
LONG);
        set("open_long", @LONG
ݳֵĵ̣Ϣװ
޵þ£Գʮݷ󷽵ɡĻк
ˣæͷ󺹡
LONG);
	set("no_fight", 1);
	set("no_beg", 1);
	set("owner", "VOID_SHOP");
	set("exits", ([
                "down" : "/d/city/majiu",
        ]));
	set("objects", ([
                __DIR__"waiter" : 1,
        ]));
	set("shop_type", 0);

	setup();
	}
}
string query_save_file()
{
        return DATA_DIR"shop/"+this_object()->query("short");
}
void init()
{
	object ob=this_object();

	if (ob->query("owner") != "VOID_SHOP")
	{
		ob->save();
	}
}
