/**
* The first flower in Delsance - The Calarien Rose :)
* Liceas - 19/03/02
*/
inherit FLOWER_OBJ;
void setup() {
set_name("rose");
set_short("red Calarien rose");
add_adjective("calarien Calarien red");
set_value( 750 );
set_decay( 100 + random( 20 ) );
set_weight( 1 );
set_long("Surrounding a beautiful centre are many curved petals, each one "
"huddling tightly to the other. It is a red Calarien rose, as "
"suggested by its contained shape which hints it did not grow in the "
"wild. The blood red petals are tinged with a lighter red at the "
"top.\n");
set_withered_long("Once blood red, the brownish petals surrounding the "
"centre of this flower have started to wither inwards on themselves. "
"It can only be barely identified as a rose grown in Calarien due to "
"its nurtured shape.\n");
set_smell_message( ({
"You inhale the sweet scent of $D and the pollen makes your nostrils "
"tingle.\n", "$N raise$s $D to $p nose and inhale$s.\n"}) );
} /* setup() */