예제 #1
0
        public void ShowTrainerDialogue()
        {
            Console.WriteLine("Hello, trainer, and welcome to the new Pokemon League.");
            Console.WriteLine("It takes a lot of courage to be here, and you must keep going strong to face the challenges up ahead.");
            ConsoleUtils.WaitFourSeconds();

            ConsoleUtils.EnemyPhraseBeforeBattle("Do you think you can handle me and my Pokemon?");
            ConsoleBattleInfoTrainer.EnemyTrainerWantsToBattle(this);
        }
예제 #2
0
        public void ShowTrainerDialogue()
        {
            Console.WriteLine("Hey, welcome to the All-Stars Pokemon League!");
            Console.WriteLine("My name's Brock. I'm the pewter city's gym leader, and your first challenge.");
            ConsoleUtils.WaitFourSeconds();

            ConsoleUtils.EnemyPhraseBeforeBattle("I hope you give me a good challenge and we both have a lot of fun.");
            ConsoleBattleInfoTrainer.EnemyTrainerWantsToBattle(this);
        }
예제 #3
0
        public void ShowTrainerDialogue()
        {
            Console.WriteLine("Congratulations on getting all the way here, trainer.");
            Console.WriteLine("You look strong and like someone who has faced a lot of tough battles.");
            Console.WriteLine("And with that said...");
            ConsoleUtils.WaitFourSeconds();

            ConsoleUtils.EnemyPhraseBeforeBattle("May you who have come to challenge me, fulfill my desire for a good battle!");
            ConsoleBattleInfoTrainer.EnemyTrainerWantsToBattle(this);
        }
예제 #4
0
        public void ShowTrainerDialogue()
        {
            Console.WriteLine("Hi, welcome to the new Pokemon League. Congratulations on beating Brock and Bruno.");
            Console.WriteLine("But I can guarantee that I won't be that much of a pushover like those two.");
            ConsoleUtils.WaitFourSeconds();

            ConsoleUtils.EnemyPhraseBeforeBattle("Are you ready to take a beating?");
            ConsoleUtils.EnemyPhraseBeforeBattle("By the way, have you seen my cat?");
            ConsoleBattleInfoTrainer.EnemyTrainerWantsToBattle(this);
        }
예제 #5
0
        public void ShowTrainerDialogue()
        {
            Console.WriteLine("Hey, I'm Blue, former Pokemon League Champion. Since you got here, I hope you give me a good battle");
            Console.WriteLine("because the last trainers that got here were really disapointing...");
            Console.WriteLine("And you're ugly.");
            ConsoleUtils.WaitTwoSeconds();

            ConsoleUtils.TrainerAction <EnemyAction>("I hope you're ready to have your butt handed over to you.");
            ConsoleUtils.WaitTwoSeconds();
            ConsoleUtils.ClearScreen();
            ConsoleBattleInfoTrainer.EnemyTrainerWantsToBattle(this);
        }
예제 #6
0
 public void ShowTrainerDialogue()
 {
     RedsDialogue();
     ConsoleBattleInfoTrainer.EnemyTrainerWantsToBattle(this);
 }