Esempio n. 1
0
        public static Response Thanks()
        {
            string reply = Rng.PickRandom(new[] { "np", "don't mention it", "anytime", "sure thing", "ye whateva" });

            return(new Response(reply));
        }
Esempio n. 2
0
        public static Response CoinFlip()
        {
            string result = Rng.PickRandom(new[] { "Heads.", "Tails." });

            return(new Response(result));
        }
Esempio n. 3
0
        public static Response Kuma()
        {
            string reply = Rng.PickRandom(new[] { "Kuma?", "Kuma~!", "Kuma...", "Kuma!!", "Kuma.", "Kuma...?" });

            return(new Response(reply));
        }