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

22 lines
477 B
C

#include <lib.h>
inherit LIB_SENTIENT;
static void create() {
sentient::create();
SetKeyName("balrog");
SetId(({"npc","mob","character","mobile"}));
SetAdjectives(({"non-player", "non player"}));
SetShort("a fierce balrog");
SetLong("This is the terrifying demon of your worst Nightmare!");
SetWanderSpeed(5);
SetClass("fighter");
SetMelee(1);
SetLevel(50);
SetRace("balrog");
SetGender("male");
}
void init(){
::init();
}