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

21 lines
502 B
C

#include <lib.h>
#include <armor_types.h>
#include <damage_types.h>
inherit LIB_ARMOR;
static void create(){
armor::create();
SetKeyName("blue jeans");
SetId(({"jeans","pants","blue jeans","bluejeans","denim"}));
SetAdjectives(({"blue","denim","comfortable","broken in","broken-in"}));
SetShort("a pair of blue jeans");
SetLong("A comfortable pair of denim blue jeans.");
SetMass(20);
SetBaseCost("silver",1);
SetArmorType(A_PANTS);
}
void init(){
::init();
}