mud/lib/domains/town/obj/50round.c
2020-09-06 05:43:07 -07:00

20 lines
535 B
C

#include <lib.h>
#include <vendor_types.h>
inherit LIB_ROUND;
void create(){
round::create();
SetKeyName(".50 round");
SetId(({"round","bullet"}));
SetAdjectives(({".50","caliber","rifle"}));
SetShort("a .50 caliber rifle bullet");
SetLong("This mammoth bullet is nearly five inches long. Anything this bad "+
"boy hits is in for a rough time.");
SetCaliber(50);
SetFirearmType("bolt");
SetFirearmType("bolt");
SetAmmoType("bolt");
SetVendorType(VT_TREASURE);
SetMass(1);
}