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 "/std/room";

void setup( void ) {
  set_brief( "%^RED%^Fudge's workroom%^RESET%^" );
  set_long( "The room is splashed with gore. Piles of limbs in one corner"
	    + " and piles of guts in another corner. In the middle of the room"
	    + " is a desk. On the desk are some grotesque looking tools." );
  set_exits( ([ "out"  : "/domains/gurba/town_square",
	        "east" : "/domains/gurba/bug_room",
	      ]) );

  add_item( "desk", "The desk is a huge and made of mahogny. It's the central piece of furniture of the room, and it is clear that Fudge spends a lot of time behind it." );

  add_item( "tools", "They are used by grand master Fudge to dissect monsters while trying to figure out how strong they are and where to place them." );

  add_item( "gore", "Youck!" );

  add_item( "limbs", "The ankle bone is connected to the leg bone. It's disgusting." );

  set_objects ( ([
		  "/domains/gurba/objects/chest" : 1,
		  "/domains/gurba/monsters/rat" : 1,
		  "/domains/gurba/objects/weapons/short_sword" : 1,
		  "/domains/gurba/objects/armor/buckler" : 1,
  ]));

}