/* This is a simple monster, doesn't do much */
/* Author: Goosestep */
inherit "inherit/monster";
void reset(status arg) {
::reset(arg); /* Don't forget to call the inherited reset function */
if(arg) return;
set_name("bart");
set_alt_name("bartender");
set_level(10);
set_gender(1); /* 1 == male, 2 == female */
set_short("Bart the Bartender");
set_long("This is Bart.\n"+
"He owns and operates the establishment that you are standing in.\n");
set_race("human");
}