// Petrarch
// Merentha Lib 1.0
// sword
#include <std.h>
inherit WEAPON;
void create() {
::create();
set_name("sword");
set_short("a sword");
set_long("This sword is of average quality. It is cast from a single piece of steal and has a wooden handle.");
set_id(({"sword"}));
set_wc(5);
set_type("sword");
set_mass(8);
set_value(8);
}