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

22 lines
608 B
C

#include <lib.h>
#include <armor_types.h>
#include <damage_types.h>
inherit LIB_ARMOR;
static void create(){
armor::create();
SetKeyName("pillbox hat");
SetId(({"hat"}));
SetAdjectives(({"pillbox"}));
SetShort("a light blue pillbox hat");
SetLong("A cute little pillbox hat, light blue in "+
"color. The inside appears to be lined with leopard "+
"skin. Looks uncomfortable.");
SetMass(50);
SetDollarCost(50);
SetDamagePoints(10);
SetArmorType(A_HELMET);
SetProtection(BLUNT, 2);
SetProtection(BLADE, 2);
SetProtection(KNIFE, 2);
}