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

25 lines
610 B
C

#include <lib.h>
inherit LIB_SENTIENT;
static void create() {
sentient::create();
SetKeyName("volunteer handler");
SetId(({"ancap","handler","voluntaryist","crew member"}));
SetAdjectives(({"non player"}));
SetShort("voluntaryist volunteer handler");
SetLong("This crew member is in charge of wrangling the oogas who have volunteered for a term of service by entering the airlock.
");
SetInventory(([
"/domains/default/armor/breather" : "wear",
]));
SetWanderSpeed(10);
SetLevel(1);
SetMelee(1);
SetRace("ancap");
SetGender("male");
}
void init(){
::init();
}