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

24 lines
509 B
C

#include <position.h>
#include <lib.h>
inherit LIB_SENTIENT;
static void create() {
sentient::create();
SetKeyName("slug");
SetId( ({"gastropod"}) );
SetAdjectives( ({"big", "thick", "slimy", "garden", "gross"}) );
SetShort("a slimy slug");
SetLong("A big, thick, slimy garden slug. Gross!");
SetAutoStand(0);
SetPosition(POSITION_LYING);
SetLevel(1);
SetMelee(1);
SetRace("slug");
SetMaxHealthPoints(5);
SetGender("male");
}
void init(){
::init();
}