#include <lib.h>

inherit LIB_STORAGE;

void create() {
    ::create();
    SetKeyName("can");
    SetId( ({"tin","container","bait","b8"}) );
    SetAdjectives( ({"tin","bait","small","master","master brand","great","gr8"}) );
    SetShort("a small can");
    SetLong("A small can that is designed to hold small things. There is a label "+
            "on it you can read.");
    SetMass(5);
    SetBaseCost("silver",1);
    SetMaxCarry(20);
    SetInventory( ([
                "/domains/town/meals/worm" : 15,
                ]) );
    SetRead( ([ "label" : "MASTER Brand fish bait (TM): \"Oi m8, this b8 is gr8!" ]) );
}

void init(){
    ::init();
}
