public static void Introduction()
        {
            Console.WriteLine("The Warp - Alpha (Learning project, focused more on learning C# than on writing an interesting story)");
            Console.WriteLine("Welcome to The Warp. You wake up one day and reality seems more distorted with each day that passes.");
            Console.WriteLine("Type in your character's name: ");
            string CharacterName = Console.ReadLine();

            while (GeneralChecker.NameChecker(CharacterName))
            {
                Errors.NameContainsNumbers();
                Console.WriteLine("Type in character's name: ");
                CharacterName = Console.ReadLine();
            }
            Console.WriteLine("Type in your character's age: ");
            uint CharacterAge = Convert.ToUInt32(Console.ReadLine());

            while (GeneralChecker.AgeChecker(CharacterAge))
            {
                Errors.AgeIsTooOld();
                Console.WriteLine("Type in your character's age: ");
                CharacterAge = Convert.ToUInt32(Console.ReadLine());
            }
            Console.WriteLine("Greetings, " + CharacterName);
            player = new Player(CharacterName, CharacterAge);
            Console.WriteLine("Press any key to continue, ESC ends the game.");
            Console.WriteLine("Enemies are more susceptible to different types of attacks. Damage can be of differing types, such as Physical, Shadow or Light. To see a description of the current enemy, press D");
        }