# File lib/plugins/yhara.rb, line 24
    def talk(context)
      n = 7
      words = (0..rand(n)).map { %w[y hara].choice }.
        inject {|r, e| r + (rand < 0.97 ? ' ' : ', ') + e }
      eos = %w(? ? . . . . . . . . !).choice
      [Remark.new(self,words, eos)]
    end