inherit "/std/races/ruminant";
void setup() {
   set_name( "sheep" );
   set_long( "The sheep is a wooly mammal.  It is possibly the most stupid "
      "animal in the universe, with the possible exception of the duck.\n" );
   set_height( 50 );
   set_weight( 800 );
   set_skin( "fleece" );
   set_desc( "a wooly sheep" );
   add_ac( "blunt", "blunt", 50 );
   add_ac( "pierce", "pierce", 20 );
   add_ac( "sharp", "sharp", 20 );
   set_stats( ({ 0, 0, -8, 2, -8 }) );
} /* setup() */
void set_unarmed_attacks( object thing ) {
   thing->remove_attack( "hands" );
   thing->remove_attack( "feet" );
   thing->remove_attack( "standard" );
   thing->remove_attack( "chew" );
   thing->remove_attack( "hoof" );
   thing->add_attack( "chew", 50, ({ 40, 8, 10 }), 
      "sharp", "unarmed", 0 );
   thing->add_attack( "hoof", 50, ({ 60, 10, 40 }), 
      "blunt", "unarmed", 0 );
   thing->set_combat_response("dodge");
} /* set_unarmed_attacks() */