/* -*- LPC -*- */
/*
* $Locker: ringo $
* $Id: shopping_bag.c,v 1.1 2000/01/02 10:24:55 ringo Exp ringo $
*
*
*/
/**
* This is the standard player-shop shopping bag. They are intended to
* hold a maximum of 10 items.
*
* @author Ringo
* @started 15th September 1999
*/
inherit "/obj/baggage";
void setup() {
set_name( "bag" );
set_short( "shopping bag" );
add_adjective( "shopping" );
set_main_plural( "shopping bags" );
set_long( "This is a small paper shopping bag, designed to "
"hold a number of small items.\n" );
set_value( 5 );
set_transparent();
}
/* setup() */