mud/lib/domains/default/npc/halfling.c
2020-09-06 05:43:07 -07:00

20 lines
719 B
C

#include <lib.h>
inherit LIB_SENTIENT;
static void create() {
sentient::create();
SetKeyName("halfling");
SetId(({"npc","mob","character","mobile"}));
SetAdjectives(({"non-player", "non player"}));
SetShort("a halfling");
SetLong("This creature is almost identical in appearance to a hobbit with its short stature, hairy feet, and evidently fun-loving disposition. It typically takes a hobbit or a halfling to tell them apart, but halflings tend to be shunned and disregarded for reasons lost to history, so if it looks a bit poor and underfed, like this one, it's a halfling.");
SetLevel(1);
SetMelee(1);
SetRace("halfling");
SetGender("male");
}
void init(){
::init();
}