mud/lib/domains/default/obj/9mmround.c
2020-09-06 05:43:07 -07:00

17 lines
442 B
C

#include <lib.h>
#include <vendor_types.h>
inherit "/lib/round";
void create(){
::create();
SetKeyName("9mmround");
SetId(({"round","bullet"}));
SetAdjectives(({"9 millimeter","9mm","pistol"}));
SetShort("a 9 millimeter pistol round");
SetLong("This is a 9 millimeter pistol bullet. It has not been fired.");
SetMillimeter(9);
SetFirearmType("auto");
SetAmmoType("acp");
SetVendorType(VT_TREASURE);
}