mud/lib/domains/town/armor/newbie_ring.c
2020-09-06 05:43:07 -07:00

22 lines
497 B
C

#include <lib.h>
#include <armor_types.h>
#include <damage_types.h>
inherit LIB_ARMOR;
static void create(){
armor::create();
SetKeyName("gold ring");
SetId(({"ring","gold ring"}));
SetAdjectives( ({"beautiful"}) );
SetShort("a beautiful gold ring");
SetLong("This is a simple but beautiful ring made of "+
"gold, suitable for wearing on one's finger.");
SetMass(1);
SetBaseCost("silver",500);
SetArmorType(A_RING);
}
void init(){
::init();
}