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

20 lines
344 B
C

#include <lib.h>
inherit LIB_NPC;
static void create() {
npc::create();
SetKeyName("Edmund");
SetId(({"edmund"}));
SetShort("Edmund");
SetLong("Edmund is a foreign exchange student from the United Kingdom.");
SetLevel(5);
SetRace("human");
SetGender("male");
SetNoClean(1);
}
void init(){
::init();
}