// Alligator...
inherit "/obj/monster";
void setup() {
set_name("alligator");
set_al(0);
set_short("alligator");
add_alias("reptile");
add_adjective("aggressive");
set_random_stats(6, 18);
set_main_plural("alligator");
set_long("Huge ripping teeth are set in a long mouth. This beast "
"is allmost 8 feet long and is not the biggest in any way. It has "
"been said that an alligator will get ahold of you and role you "
"on the bottom of some swamp somewhere. His thick surface looks "
"impervious to attacks.\n");
set_race("reptile");
set_str(22);
set_con(22);
set_level(10+random(4));
} /* setup */