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

25 lines
465 B
C

#include <lib.h>
#include <damage_types.h>
#include <vendor_types.h>
inherit LIB_ITEM;
static void create() {
item::create();
SetKeyName("small knife");
SetId( ({ "knife"}));
SetAdjectives( ({ "small","fine"}));
SetShort("a small knife");
SetLong("A knife.");
SetMass(50);
SetBaseCost("silver",5);
SetVendorType(VT_WEAPON);
SetClass(5);
SetDamageType(KNIFE);
SetWeaponType("knife");
}
void init(){
::init();
}