/**
* A ceramic vase by Sandoz, 2001.
*/
inherit VASE_OBJ;
void setup() {
set_name("vase");
set_short("mountain stream ceramic vase");
add_adjective("mountain stream ceramic");
set_long("This is a beautiful vase modelled from fine clay with an "
"intricate pattern of a trickling mountain stream painted on it. "
"It is wider at the base and has a long neck that tapers to a half "
"an inch wide mouth at the top.\n");
add_property("fragile", 20 );
set_max_volume( 6000 );
set_max_weight( 30 );
set_value( 15000 );
set_weight( 20 );
} /* setup() */