mud/lib/domains/town/obj/bait_can.c
2020-09-06 05:43:07 -07:00

25 lines
655 B
C

#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();
}