22 lines
496 B
C
22 lines
496 B
C
#include <lib.h>
|
|
#include <vendor_types.h>
|
|
inherit LIB_SHELL;
|
|
|
|
void create(){
|
|
::create();
|
|
SetKeyName("357shell");
|
|
SetId(({"shell","casing","spent bullet"}));
|
|
SetAdjectives(({".357",".357","spent","magnum","shell"}));
|
|
SetShort("a .357 shell casing");
|
|
SetLong("This is the spent casing of a .357 magnum bullet.");
|
|
SetCaliber(357);
|
|
SetFirearmType("revolver");
|
|
SetAmmoType("magnum");
|
|
SetVendorType(VT_TREASURE);
|
|
SetMass(1);
|
|
}
|
|
|
|
void init(){
|
|
::init();
|
|
}
|