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

19 lines
456 B
C

#include <lib.h>
#include <vendor_types.h>
inherit LIB_ITEM;
void create(){
::create();
SetKeyName("captains key");
SetId( ({"captain key","key","thang","dingus"}) );
SetAdjectives( ({"royal","commanding","template"}) );
SetShort("the captains key");
SetLong("This is a key, belonging to the captain of the USS Profit");
SetMass(20);
SetBaseCost("silver",10);
SetVendorType(VT_TREASURE);
}
void init(){
::init();
}