Пример #1
0
        public static void PreTrenchChoice(Whale Player)
        {
            Typewrite($"\n{Player.Name}", "yellow");
            Typewrite("do you want to visit the shop?", "dialog");
            Console.WriteLine("\nY) Yes" +
                              "\nN) No");
            string input = Console.ReadLine();

            input = input.ToUpper();
            if (input == "Y")
            {
                ConsoleInterface.Cousin(Player);
                ConsoleInterface.Shop4(Player);
            }
            else
            {
                trenchDialog1(Player);
            }
        }