21 lines
432 B
C
21 lines
432 B
C
#include <lib.h>
|
|
#include <armor_types.h>
|
|
#include <damage_types.h>
|
|
inherit LIB_ARMOR;
|
|
|
|
static void create(){
|
|
armor::create();
|
|
SetKeyName("gold necklace");
|
|
SetId(({"necklace"}));
|
|
SetAdjectives( ({"gold","beautiful"}) );
|
|
SetShort("a gold necklace");
|
|
SetLong("This is a simple and beautiful gold necklace.");
|
|
SetMass(1);
|
|
SetDollarCost(400);
|
|
SetArmorType(A_COLLAR);
|
|
}
|
|
|
|
void init(){
|
|
::init();
|
|
}
|