#include <std.h>
inherit ROOM;
void create() {
::create();
set_property("light", 3);
set_property("night light", 1);
set_property("no castle", 1);
set_short( "West Boc La in Praxis");
set_day_long("The local pub on the southwest corner of the square "
"east of here gets little business at the height of "
"the day. As twilight fall into dusk, however, you "
"will notice more people making their way into the pub "
"to cap off a day of adventure. The road you are on, "
"West Boc La, leads into the western districts of "
"Praxis and east to the centre of town.");
set_night_long("The street lamps provide you with barely enough "
"light to see, but can you can just see Krasna Square east and "
"Lars' Pub to the south. You can also make out a chapel to "
"the north, but you see no entrance.");
set_listen_string("default", "Cheers of local adventurers "
"resonate from inside the pub.");
set_exits(
(["east" : "/domains/Praxis/square",
"west" : "/domains/Praxis/w_boc_la2",
"south" : "/domains/Praxis/pub"]) );
set_items(
(["church" : "It looks like the entrance might be on the "
"road leading north from Monument Square.",
({"lamps", "lamp", "street lamp"}) : "All of the street "
"lamps along the road provide minimal light at night.",
({"pub", "lars pub", "lars' pub"}) : "Local adventurers "
"wind down their day in Lars' Pub.",
({"road", "west boc la", "boc la"}) : "It goes beyond the "
"western districts of Praxis into the mountains.",
"square" : "At the centre of Praxis, it is where "
"Boc La and Centre Path meet."]) );
}