gurba-0.40/
gurba-0.40/bin/
gurba-0.40/lib/
gurba-0.40/lib/cmds/guild/fighter/
gurba-0.40/lib/cmds/monster/
gurba-0.40/lib/cmds/race/catfolk/
gurba-0.40/lib/cmds/race/dwarf/
gurba-0.40/lib/cmds/verb/
gurba-0.40/lib/daemons/data/
gurba-0.40/lib/data/boards/
gurba-0.40/lib/data/messages/
gurba-0.40/lib/data/players/
gurba-0.40/lib/design/
gurba-0.40/lib/domains/gurba/
gurba-0.40/lib/domains/gurba/guilds/fighter/
gurba-0.40/lib/domains/gurba/monsters/
gurba-0.40/lib/domains/gurba/objects/armor/
gurba-0.40/lib/domains/gurba/objects/clothing/
gurba-0.40/lib/domains/gurba/objects/weapons/
gurba-0.40/lib/domains/gurba/vendors/
gurba-0.40/lib/kernel/cmds/admin/
gurba-0.40/lib/kernel/daemons/
gurba-0.40/lib/kernel/include/
gurba-0.40/lib/kernel/lib/
gurba-0.40/lib/kernel/net/
gurba-0.40/lib/kernel/sys/
gurba-0.40/lib/logs/
gurba-0.40/lib/pub/
gurba-0.40/lib/std/modules/languages/
gurba-0.40/lib/std/races/
gurba-0.40/lib/std/races/monsters/
gurba-0.40/lib/wiz/fudge/
gurba-0.40/lib/wiz/spud/
gurba-0.40/src/host/beos/
gurba-0.40/src/host/pc/res/
gurba-0.40/src/kfun/
gurba-0.40/src/lpc/
gurba-0.40/src/parser/
gurba-0.40/tmp/
inherit ROOM;

void setup( void ) {
   set_area("Gurba");
   set_brief( "%^GREEN%^Gurba Town Square%^RESET%^" );
   set_long( "This is the natural meeting place in the town of Gurba. In the center of the square is a large statue of the citys founder. It's a breathtaking sight." );
   set_exits( ([ 
		  "north" : "/domains/gurba/rooms/north",
		  "west" : "/domains/gurba/rooms/market1", 
		  "east" : "/domains/gurba/rooms/gelmir1",
		  "south" : "/domains/gurba/rooms/south"
		  ]) );
   
   add_item( "statue", "A pretty large and well crafted statue of a small dwarf. It is decorated with fine jewels and gold, and at the base is a small plaque." );
   add_item( "jewels", "jewel", "Upon closer inspection you see that all of the jewels are cheap glass imitations of the real thing." );
   add_item( "gold", "The gold isn't especially impressive. It's just painted onto the solid rock the statue is crafted from." );
   add_item( "plaque", "The plaque says: Fudge, where are you now?" );
   
   set_objects( ([ "/domains/gurba/objects/main_board" : 1,
		   ]) );
   
}