20 lines
432 B
C
20 lines
432 B
C
#include <lib.h>
|
|
#include <vendor_types.h>
|
|
inherit LIB_ITEM;
|
|
|
|
void create(){
|
|
::create();
|
|
SetKeyName("lab key");
|
|
SetAdjectives( ({"engineering", "lab", "probability lab"}) );
|
|
SetId( ({"prob_door_key", "key", "labkey"}) );
|
|
SetShort("a key");
|
|
SetLong("This is a key labeled 'engineering and lab'.");
|
|
SetMass(20);
|
|
SetBaseCost("silver",10);
|
|
SetVendorType(VT_TREASURE);
|
|
}
|
|
|
|
void init(){
|
|
::init();
|
|
}
|