#include <std.h>
inherit WEAPON;

void create() {
::create();
set_name("blade");
set_short("a short, small blade");
set_long("this is a small blade used for assassins, and other persons of the dark side");
set_id("blade");
set_mass(1);
set_value(50000);
set_type("blade");
set_wc(6);
set_ac(6);
}
