mud/lib/realms/babylon/tmp/crapitalistjamaicfc1599276515.c
2020-09-06 05:43:07 -07:00

23 lines
504 B
C

#include <lib.h>
inherit LIB_SENTIENT;
static void create() {
sentient::create();
SetKeyName("generic npc");
SetId(({"npc","mob","character","mobile"}));
SetAdjectives(({"non player"}));
SetShort("a generic npc");
SetLong("Other than being human, this npc is entirely unremarkable.");
SetInventory(([
"/domains/default/armor/breather" : "wear",
]));
SetLevel(1);
SetMelee(1);
SetRace("ancap");
SetGender("male");
}
void init(){
::init();
}