/* /domains/Examples/weapon/sword.c * from the Dead Souls LPC Library * a simple sword example, nothing fancy * created by Descartes of Borg 950402 */ #include #include #include inherit LIB_ITEM; static void create() { item::create(); SetKeyName("sharp sword"); SetId( ({ "sword", "short sword", "shortsword"})); SetAdjectives( ({ "short","sharp","fine"})); SetShort("a sharp sword"); SetLong("A fine, sharp, short sword."); SetMass(150); SetDollarCost(50); SetVendorType(VT_WEAPON); SetClass(20); SetDamageType(BLADE); SetWeaponType("blade"); }