Automatic.Apathy.InitInsults C# (CSharp) Method

InitInsults() private method

private InitInsults ( ) : void
return void
        void InitInsults()
        {
            AddInsult("I'm a bit busy at the moment NICK, can it wait?", ResponseType.Say);
            AddInsult("I don't feel like it right now, NICK", ResponseType.Say);
            AddInsult("It's always 'do this', 'do that' with you NICK :|", ResponseType.Say);
            AddInsult("That command NICK? Really?", ResponseType.Say);
            AddInsult("There's a time and place for everything, NICK, but not now.", ResponseType.Say);
            AddInsult("Why don't you go do it yourself, NICK?", ResponseType.Say);
            AddInsult("I really want to do that, NICK, but I don't take orders from idiots", ResponseType.Say); // XelaReko
            AddInsult("I'm in the middle of some calibrations, NICK, can it wait?", ResponseType.Say); // XelaReko
            AddInsult("Sometimes I wonder if my life would be better if I was the bot for a channel of more interesting things. Like snails. That is correct. I would rather talk to snails than you, NICK", ResponseType.Say); // XelaReko
            AddInsult("Ugh, what now NICK? Can't you wait a little bit longer? I have things to do, you know!", ResponseType.Say); // Dragoon

            AddInsult(new List<Response>() // XelaReko
            {
                new Response("yawns", ResponseType.Do),
                new Response("Call me when you have something worthwhile to say, NICK", ResponseType.Say)
            });
        }