inherit "/std/room"; object board; void setup() { set_short( "The ideas room of New Moon" ); set_light( 100 ); set_long( "Burst of creativity splash the walls of this room. A "+ "notice board here is the site of discussion for all those "+ "'could be' ideas floating around out there.\n"); add_item( "wall", "The walls are fairly uninteresting, covered with off-white "+ "wallpaper." ); add_item( ({ "carpet", "carpeting", "red carpet", "red carpeting" }), "The carpet feels soft underfoot." ); add_item( "furniture", "You see nothing special about the various bits of furniture." ); add_exit("common", "/w/common", "corridor"); } /* setup() */ void reset() { if( !board ) { board = clone_object( "/obj/misc/board" ); board->move( this_object() ); board->set_datafile( "ideas" ); } } /* reset() */