#include #include #include inherit LIB_ITEM; static void create() { item::create(); SetKeyName("short sword"); SetId( ({ "sword", "short sword" }) ); SetAdjectives( ({ "short" }) ); SetShort("a short sword"); SetLong("A cheap and rather dull short sword."); SetMass(300); SetBaseCost("silver",800); SetVendorType(VT_WEAPON); SetClass(15); SetDamageType(BLADE); SetWeaponType("blade"); } void init(){ ::init(); }