mud/lib/lib/cylinder.c
2020-09-06 05:43:07 -07:00

15 lines
358 B
C

#include <lib.h>
#include <vendor_types.h>
inherit LIB_STORAGE;
void create(){
::create();
SetKeyName("revolver cylinder");
SetId(({"cylinder"}));
SetShort("a revolver cylinder");
SetLong("This is the round barrel the holds a revolver's bullets.");
SetMass(5);
SetValue(10);
SetMaxCarry(10);
SetVendorType(VT_TREASURE);
}