#include "path.h" inherit "/std/room.c"; setup() { set_short("The captains cabin"); set_long("You are in the captains private quarters aboard ship, this " +"is where the captain comes to relax and recuperate. All his " +"charts and maps are strewn apparently randomly around the " +"room, there is a small closet in the far corner. \n"); add_item("closet", "The closet is empty, very empty.\n"); add_item( ({"deck", "floor" }), "The deck is made of close fitting wooden planks, worn " +"smooth by the feet of many sailors. You only wish it was a " +"bit less creaky. \n"); add_exit("exit", HOMECITY+"bigshipdeck4", "door"); add_monster(MONSTERS+"ship_captain", 1); set_zone("docks"); set_light(40); }