31 lines
900 B
C
31 lines
900 B
C
#include <lib.h>
|
|
#include <damage_types.h>
|
|
#include <vendor_types.h>
|
|
|
|
inherit LIB_ITEM;
|
|
|
|
static void create() {
|
|
item::create();
|
|
SetKeyName("carving knife");
|
|
SetAdjectives( ({"8-inch", "serrated", "sharp", "razor-sharp", "razor", "steel", "hefty", "stainless", "carving"}) );
|
|
SetId( ({ "knife"}));
|
|
SetShort("a serrated 8-inch carving knife");
|
|
SetLong("This is a serrated, 8-inch carving knife. This razor sharp "+
|
|
"knife has been forged from molded and hammered high-carbon "+
|
|
"stainless steel. It is solid, hefty, and well-balanced. "+
|
|
"This is a dangerous knife, and can be considered a very "+
|
|
"deadly weapon.");
|
|
SetMass(50);
|
|
SetBaseCost("silver",120);
|
|
SetVendorType(VT_WEAPON);
|
|
SetClass(20);
|
|
SetDamageType(KNIFE);
|
|
SetWeaponType("knife");
|
|
}
|
|
int GetFancy(){
|
|
return 1;
|
|
}
|
|
void init(){
|
|
::init();
|
|
}
|