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

20 lines
518 B
C

#include <lib.h>
#include <armor_types.h>
#include <damage_types.h>
inherit LIB_ARMOR;
static void create(){
armor::create();
SetKeyName("lab coat");
SetId(({"coat","labcoat"}));
SetAdjectives(({"lab","science","white","long"}));
SetShort("a lab coat");
SetLong("This is a long white lab coat of the type used by scientists "+
"to avoid getting experimental results on themselves.");
SetMass(75);
SetDollarCost(20);
SetArmorType(A_CLOAK);
}
void init(){
::init();
}